|
|
@@ -803,7 +803,7 @@
|
|
|
return {
|
|
|
...item,
|
|
|
packingCountBase:
|
|
|
- dimension == 4 || dimension == 3 ? 1 : item.packingCountBase,
|
|
|
+ dimension == 4 || dimension == 3 ? 1 : item.packingCountBase
|
|
|
// weight: 0
|
|
|
};
|
|
|
});
|
|
|
@@ -849,7 +849,7 @@
|
|
|
this.batchDetailsVOList = packArr.map((item) => {
|
|
|
return {
|
|
|
...item,
|
|
|
- packingCountBase: dimension == 3 ? 1 : item.packingCountBase,
|
|
|
+ packingCountBase: dimension == 3 ? 1 : item.packingCountBase
|
|
|
// weight: 0
|
|
|
};
|
|
|
});
|
|
|
@@ -930,12 +930,12 @@
|
|
|
},
|
|
|
eomSuccess(row) {
|
|
|
console.log(row);
|
|
|
- this.formData.extInfo.assetType = row.categoryLevelTopId||'9';
|
|
|
+ this.formData.extInfo.assetType = row.categoryLevelTopId || '9';
|
|
|
this.formData.bizType = '3';
|
|
|
this.isTask = true;
|
|
|
this.$refs.trees.valueTitle = '产品';
|
|
|
this.title = '产品';
|
|
|
- this.formData.sourceBizNo = row.docNo||row.returnNo;
|
|
|
+ this.formData.sourceBizNo = row.docNo || row.returnNo;
|
|
|
this.formData.sid = row.id;
|
|
|
this.formData.fromId = row.id;
|
|
|
this.formData.clientName = row.contactName;
|
|
|
@@ -1208,7 +1208,6 @@
|
|
|
|
|
|
handleSave() {
|
|
|
this.$refs.formName.validate(async (valid) => {
|
|
|
-
|
|
|
if (valid) {
|
|
|
if (!this.warehousingMaterialList?.length) {
|
|
|
return this.$message.error('请添加出库明细!');
|