BUG
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
"manifest_version": 3,
|
||||
"name": "TEMU助手",
|
||||
"description": "TEMU助手 - 自动化提高生产效率",
|
||||
"version": "2.2.0",
|
||||
"version": "2.2.1",
|
||||
"background": {
|
||||
"service_worker": "/background.js"
|
||||
},
|
||||
|
||||
@@ -297,6 +297,7 @@ import { Message } from 'element-ui'
|
||||
align: 'center',
|
||||
sortable: true,
|
||||
'sort-method': (a, b) => {
|
||||
console.log('1、' + a[dateStr] + ' 2、' + b[dateStr])
|
||||
return new Number(a[dateStr]) - new Number(b[dateStr])
|
||||
}})
|
||||
}
|
||||
|
||||
@@ -575,7 +575,7 @@
|
||||
}
|
||||
}*/
|
||||
}
|
||||
if (!res.errorCode && res.error_code) {
|
||||
if (!res.errorCode && res.error_code && (res.error_code == 40001)) {
|
||||
this.networkErrorCount ++
|
||||
}
|
||||
if (0 == this.robMode) {
|
||||
@@ -618,21 +618,23 @@
|
||||
}
|
||||
}
|
||||
})
|
||||
let packageDetailSaveInfos = data.orderDetailVOList.map(item => {
|
||||
let packageInfos = []
|
||||
data.orderDetailVOList.map(item => {
|
||||
let packageDetailSaveInfos = []
|
||||
if (this.robForm.isModifyMaxNum) {
|
||||
return {
|
||||
packageDetailSaveInfos.push({
|
||||
productSkuId: item.productSkuId,
|
||||
skuNum: item.skuDeliveryQuantityMaxLimit
|
||||
}
|
||||
})
|
||||
|
||||
} else {
|
||||
return {
|
||||
packageDetailSaveInfos.push({
|
||||
productSkuId: item.productSkuId,
|
||||
skuNum: item.productSkuPurchaseQuantity
|
||||
}
|
||||
})
|
||||
}
|
||||
packageInfos.push({packageDetailSaveInfos: packageDetailSaveInfos})
|
||||
})
|
||||
let packageInfos = []
|
||||
packageInfos.push({packageDetailSaveInfos: packageDetailSaveInfos})
|
||||
|
||||
let deliveryOrderCreateInfos = []
|
||||
deliveryOrderCreateInfos.push({
|
||||
|
||||
Reference in New Issue
Block a user