|
|
|
@ -1868,12 +1868,13 @@
|
|
|
|
|
} else { |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
return false; |
|
|
|
|
}, |
|
|
|
|
handleAddInventory() { |
|
|
|
|
let page = this.page; |
|
|
|
|
let params = {}; |
|
|
|
|
this.query.serviceType = '2'; |
|
|
|
|
params.marketName = this.marketName |
|
|
|
|
console.log('params :>> ', params); |
|
|
|
|
getInventoryList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then( |
|
|
|
|
res => { |
|
|
|
|
const inventoryList = res.data.data; |
|
|
|
@ -1883,10 +1884,11 @@
|
|
|
|
|
}); |
|
|
|
|
this.page.total = inventoryList.total; |
|
|
|
|
console.log('res :>> ', res); |
|
|
|
|
this.inventoryInfo = inventoryList.records.filter(value=>{ |
|
|
|
|
if(this.marketName === '')return value |
|
|
|
|
return value.marketName === this.marketName |
|
|
|
|
}); |
|
|
|
|
// this.inventoryInfo = inventoryList.records.filter(value=>{ |
|
|
|
|
// if(this.marketName === '')return value |
|
|
|
|
// return value.marketName === this.marketName |
|
|
|
|
// }); |
|
|
|
|
this.inventoryInfo = inventoryList.records |
|
|
|
|
//存在库存品,需要将库存品进行回显勾选 |
|
|
|
|
if (this.inventoryData) { |
|
|
|
|
this.inventoryInfo.forEach((item, index) => { |
|
|
|
@ -2251,6 +2253,7 @@
|
|
|
|
|
}, |
|
|
|
|
selectionChange(list) { |
|
|
|
|
this.orderList = list; |
|
|
|
|
console.log('list :>> ', list); |
|
|
|
|
}, |
|
|
|
|
selectionPackageChange(list) { |
|
|
|
|
console.log('-----------<>', list); |
|
|
|
@ -2339,46 +2342,34 @@
|
|
|
|
|
*/ |
|
|
|
|
onSubmitOrder() { |
|
|
|
|
console.log('-------------》', this.orderList); |
|
|
|
|
if (this.orderList.length === 0) return this.$message.warning('最少选择一条数据!!!') |
|
|
|
|
const list = this.orderList; |
|
|
|
|
let name = list[0].customerName; |
|
|
|
|
let address = list[0].customerAddress; |
|
|
|
|
let phone = list[0].customerTelephone; |
|
|
|
|
if (!!this.form.consignee) { |
|
|
|
|
if (this.form.consignee !== name) { |
|
|
|
|
this.$message.warning('请选择统一顾客订单!!!'); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if (!!this.form.customerAddress) { |
|
|
|
|
if (this.form.customerAddress !== address) { |
|
|
|
|
this.$message.warning('请选择统一顾客订单!!!'); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if (!!this.form.customerTelephone) { |
|
|
|
|
if (this.form.customerTelephone !== phone) { |
|
|
|
|
this.$message.warning('请选择统一顾客订单!!!'); |
|
|
|
|
return; |
|
|
|
|
let _name = list[0].customerName; |
|
|
|
|
let _address = list[0].customerAddress; |
|
|
|
|
let _phone = list[0].customerTelephone; |
|
|
|
|
let _marketName = list[0].mallName |
|
|
|
|
|
|
|
|
|
// 循环查看数据是否符合要求 |
|
|
|
|
const isRturn = list.every((item)=>{ |
|
|
|
|
if (item.mallName !== _marketName) { |
|
|
|
|
this.$message.warning('请选择统一商场!!!') |
|
|
|
|
return false |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
//市配 --- 最终客户校验 |
|
|
|
|
for (let i = 1; i < list.length; i++) { |
|
|
|
|
if ( |
|
|
|
|
list[i].customerName !== name || |
|
|
|
|
list[i].customerAddress !== address || |
|
|
|
|
list[i].customerTelephone !== phone |
|
|
|
|
) { |
|
|
|
|
this.$message.warning('请选择统一顾客订单!!!'); |
|
|
|
|
return; |
|
|
|
|
if (item.customerName !== _name || item.customerAddress !== _address || item.customerTelephone !== _phone) { |
|
|
|
|
this.$message.warning('请选择统一顾客订单!!!') |
|
|
|
|
return false |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
return true |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
if (!isRturn) return |
|
|
|
|
|
|
|
|
|
// 设置商场名称 |
|
|
|
|
this.marketName = list[0].marketName |
|
|
|
|
if (this.marketName === '') this.marketName = _marketName |
|
|
|
|
|
|
|
|
|
this.form.consignee = name; |
|
|
|
|
this.form.deliveryAddress = address; |
|
|
|
|
this.form.deliveryPhone = phone; |
|
|
|
|
this.form.consignee = _name; |
|
|
|
|
this.form.deliveryAddress = _address; |
|
|
|
|
this.form.deliveryPhone = _phone; |
|
|
|
|
//这里需要对选择的订单进行筛选 |
|
|
|
|
const info = []; |
|
|
|
|
this.stockArticleInfo.forEach((item, index) => { |
|
|
|
@ -2543,6 +2534,7 @@
|
|
|
|
|
onLoadOrder(page, params = {}) { |
|
|
|
|
this.query.typeService = 2; |
|
|
|
|
this.query.genre = '1'; |
|
|
|
|
this.query.marketName = this.marketName |
|
|
|
|
// const page = this.page; |
|
|
|
|
let a = []; |
|
|
|
|
if (this.orderData) { |
|
|
|
@ -2551,7 +2543,7 @@
|
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
this.query.orderIds = a.join(','); |
|
|
|
|
console.log('-------------->', this.query); |
|
|
|
|
console.log('--------------query>', this.query); |
|
|
|
|
selectStockArticleInfoList( |
|
|
|
|
page.currentPage, |
|
|
|
|
page.pageSize, |
|
|
|
@ -2559,13 +2551,7 @@
|
|
|
|
|
).then(res => { |
|
|
|
|
console.log('res123------------>', res); |
|
|
|
|
const {records, total} = res.data.data; |
|
|
|
|
this.stockArticleInfo = records.filter(value => { |
|
|
|
|
if(this.marketName === '') return value |
|
|
|
|
if(this.marketName) { |
|
|
|
|
console.log('value.marketName :>> ', value.marketName); |
|
|
|
|
return value.mallName === this.marketName |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
this.stockArticleInfo = records |
|
|
|
|
console.log('this.stockArticleInfo :>> ', this.stockArticleInfo); |
|
|
|
|
this.stockArticleInfo.forEach((item, index) => { |
|
|
|
|
//检查订单是否冻结 |
|
|
|
|