|
|
@@ -379,7 +379,6 @@
|
|
|
filterable
|
|
|
allow-create
|
|
|
default-first-option
|
|
|
- multiple
|
|
|
>
|
|
|
</DictSelection>
|
|
|
</el-form-item>
|
|
|
@@ -395,7 +394,6 @@
|
|
|
filterable
|
|
|
allow-create
|
|
|
default-first-option
|
|
|
- multiple
|
|
|
>
|
|
|
</DictSelection>
|
|
|
</el-form-item>
|
|
|
@@ -1105,7 +1103,7 @@
|
|
|
warehouseId: data.warehouseId,
|
|
|
code: row.productCode,
|
|
|
batchNo: row.batchNo,
|
|
|
- colorKey: row.colorKey.join(','),
|
|
|
+ colorKey: row.colorKey,
|
|
|
modelType: row.modelType
|
|
|
});
|
|
|
this.$set(
|
|
|
@@ -1156,7 +1154,7 @@
|
|
|
warehouseId: row.warehouseId,
|
|
|
code: row.productCode,
|
|
|
batchNo: row.batchNo,
|
|
|
- colorKey: row.colorKey.join(','),
|
|
|
+ colorKey: row.colorKey,
|
|
|
modelType: row.modelType
|
|
|
})
|
|
|
: ''
|
|
|
@@ -1382,10 +1380,10 @@
|
|
|
this.$set(parasm, 'goodsLevel', item.goodsLevel);
|
|
|
this.$set(parasm, 'orderNo', this.orderNoList[0]?.value || '');
|
|
|
if (item.modelKey) {
|
|
|
- this.$set(parasm, 'modelKey', item.modelKey.split(','));
|
|
|
+ this.$set(parasm, 'modelKey', item.modelKey);
|
|
|
}
|
|
|
if (item.colorKey) {
|
|
|
- this.$set(parasm, 'colorKey', item.colorKey.split(','));
|
|
|
+ this.$set(parasm, 'colorKey', item.colorKey);
|
|
|
}
|
|
|
this.$set(parasm, 'receiveTotalWeight', 0);
|
|
|
this.$set(parasm, 'sendTotalWeight', 0);
|
|
|
@@ -1467,10 +1465,10 @@
|
|
|
if (comitDatasource.length === 0) return [];
|
|
|
comitDatasource.forEach(async (v) => {
|
|
|
if (v.modelKey) {
|
|
|
- v.modelKey = v.modelKey.toString();
|
|
|
+ v.modelKey = v.modelKey;
|
|
|
}
|
|
|
if (v.colorKey) {
|
|
|
- v.colorKey = v.colorKey.toString();
|
|
|
+ v.colorKey = v.colorKey;
|
|
|
}
|
|
|
v.totalCount = Number(v.totalCount);
|
|
|
v.technicalDrawings = Array.isArray(v.technicalDrawings)
|
|
|
@@ -1502,10 +1500,10 @@
|
|
|
let indexS = [];
|
|
|
data.forEach((item, index) => {
|
|
|
if (item.modelKey) {
|
|
|
- this.$set(data[index], 'modelKey', item.modelKey.split(','));
|
|
|
+ this.$set(data[index], 'modelKey', item.modelKey);
|
|
|
}
|
|
|
if (item.colorKey) {
|
|
|
- this.$set(data[index], 'colorKey', item.colorKey.split(','));
|
|
|
+ this.$set(data[index], 'colorKey', item.colorKey);
|
|
|
}
|
|
|
item.receiveTotalWeight = item.receiveTotalWeight || 0;
|
|
|
|
|
|
@@ -1555,7 +1553,7 @@
|
|
|
warehouseId: item.warehouseId,
|
|
|
code: item.productCode,
|
|
|
batchNo: item.batchNo,
|
|
|
- colorKey: item.colorKey.join(','),
|
|
|
+ colorKey: item.colorKey,
|
|
|
modelType: item.modelType
|
|
|
})
|
|
|
);
|
|
|
@@ -1611,7 +1609,7 @@
|
|
|
warehouseId: item.warehouseId,
|
|
|
code: item.productCode,
|
|
|
batchNo: item.batchNo,
|
|
|
- colorKey: item.colorKey.join(','),
|
|
|
+ colorKey: item.colorKey,
|
|
|
modelType: item.modelType
|
|
|
})
|
|
|
);
|