|
@@ -124,7 +124,9 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
async onSetOrderReturnChild() {
|
|
|
+ let total = 0
|
|
|
const list = this.list.map(({ id, can_sell_num, defective_num, loss_num }) => {
|
|
|
+ total += (can_sell_num + defective_num + loss_num)
|
|
|
return ({
|
|
|
id,
|
|
|
loss_num,
|
|
@@ -133,8 +135,14 @@ export default {
|
|
|
})
|
|
|
})
|
|
|
|
|
|
+ if (Number(this.sitem.out_num) !== total) {
|
|
|
+ this.$message.warning('销售仓入库数量、次品仓入库数量、丢失数量相加必须等于发货数量')
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
this.subLoading = true
|
|
|
const { code, message } = await asyncRequest.deliveryOrderReturnChild({ list, returnCode: this.sitem.returnCode })
|
|
|
+
|
|
|
this.subLoading = false
|
|
|
|
|
|
switch (code) {
|