|
|
|
@ -1261,16 +1261,14 @@ const handleBatchBarcode = async () => {
|
|
|
|
|
try { |
|
|
|
|
details.loadingObj.pageLoading = true; |
|
|
|
|
|
|
|
|
|
let qr = { |
|
|
|
|
orderPackageCodes: _arr.map(val => val.scanCode).join(','), |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
details.html = ''; |
|
|
|
|
const _promiseArr = []; |
|
|
|
|
|
|
|
|
|
_arr.length > 0 && |
|
|
|
|
_promiseArr.push( |
|
|
|
|
getShowAdvancePackgeCode(qr).then(res => { |
|
|
|
|
getShowAdvancePackgeCode({ |
|
|
|
|
orderPackageCodes: _arr.map(val => val.scanCode).join(','), |
|
|
|
|
}).then(res => { |
|
|
|
|
const { code, data } = res.data; |
|
|
|
|
if (code !== 200) return; |
|
|
|
|
|
|
|
|
@ -1279,7 +1277,9 @@ const handleBatchBarcode = async () => {
|
|
|
|
|
); |
|
|
|
|
_zeroArr.length > 0 && |
|
|
|
|
_promiseArr.push( |
|
|
|
|
postShowOrderCode(qr).then(res => { |
|
|
|
|
postShowOrderCode({ |
|
|
|
|
orderCodes: _zeroArr.map(val => val.orderCode).join(','), |
|
|
|
|
}).then(res => { |
|
|
|
|
const { code, data } = res.data; |
|
|
|
|
if (code !== 200) return; |
|
|
|
|
|
|
|
|
|