|
|
@@ -1156,6 +1156,14 @@
|
|
|
align: 'center',
|
|
|
headerSlot: 'headerBatchNo'
|
|
|
},
|
|
|
+ {
|
|
|
+ label: '系统内部批次号',
|
|
|
+ showOverflowTooltip: true,
|
|
|
+ prop: 'systemBatchNo',
|
|
|
+ minWidth: 180,
|
|
|
+ align: 'center',
|
|
|
+ formatter: (row) => row.systemBatchNo || '-'
|
|
|
+ },
|
|
|
{
|
|
|
label: '数量',
|
|
|
showOverflowTooltip: true,
|
|
|
@@ -1437,6 +1445,7 @@
|
|
|
specification: item.specification, // 规格
|
|
|
brandNum: item.brandNum, // 牌号
|
|
|
batchNo: item.batchNo || batchNo, // 批次号
|
|
|
+ systemBatchNo: item.systemBatchNo || '', // 系统内部批次号
|
|
|
minPackingQuantity: item.quantity, // 最小包装单元数量
|
|
|
packingQuantity: 1, // 包装数量
|
|
|
packingUnit: item.packingUnit, // 单位
|
|
|
@@ -1514,6 +1523,7 @@
|
|
|
packingSpecificationLabel:
|
|
|
productItem.extField?.packingSpecification?.split(','),
|
|
|
batchNo: productItem.batchNo || batchNo, // 批次号
|
|
|
+ systemBatchNo: productItem.systemBatchNo || '', // 系统内部批次号
|
|
|
warehouseIds: [productItem.warehouseId], // 仓库Id
|
|
|
warehouseNames: [productItem.warehouseName], // 仓库名称
|
|
|
outInDetailRecordRequestList:
|
|
|
@@ -1528,6 +1538,7 @@
|
|
|
'-' +
|
|
|
packingIndex, // 包装索引
|
|
|
batchNo: productItem.batchNo || batchNo, // 批次号
|
|
|
+ systemBatchNo: productItem.systemBatchNo || '', // 系统内部批次号
|
|
|
parentIndex:
|
|
|
this.productList.length + productIndex, // 物品索引
|
|
|
categoryName: productItem.categoryName,
|
|
|
@@ -1759,6 +1770,8 @@
|
|
|
builders: res.map((item) => {
|
|
|
return {
|
|
|
categoryId: item.categoryId,
|
|
|
+ batchNo: item.batchNo,
|
|
|
+ systemBatchNo: item.systemBatchNo || '',
|
|
|
num: item.measureQuantity
|
|
|
};
|
|
|
})
|
|
|
@@ -1879,6 +1892,7 @@
|
|
|
'-' +
|
|
|
packingIndex, // 包装索引
|
|
|
batchNo: productItem.batchNo || batchNo, // 批次号
|
|
|
+ systemBatchNo: productItem.systemBatchNo || '', // 系统内部批次号
|
|
|
parentIndex: this.productList.length + productIndex, // 物品索引
|
|
|
categoryName: productItem.categoryName,
|
|
|
categoryCode: productItem.categoryCode,
|
|
|
@@ -2322,6 +2336,7 @@
|
|
|
specification: item.specification, // 规格
|
|
|
brandNum: item.brandNum, // 牌号
|
|
|
batchNo: item.batchNo || batchNo, // 批次号
|
|
|
+ systemBatchNo: item.systemBatchNo || '', // 系统内部批次号
|
|
|
minPackingQuantity: 1, // 最小包装单元数量
|
|
|
packingQuantity: filterArray[0]['数量'], // 包装数量
|
|
|
packingUnit: item.packingUnit, // 单位
|
|
|
@@ -2789,6 +2804,7 @@
|
|
|
color: item.color,
|
|
|
brandNum: item.brandNum, // 牌号
|
|
|
batchNo: item.batchNo || batchNo, // 批次号
|
|
|
+ systemBatchNo: item.systemBatchNo || '', // 系统内部批次号
|
|
|
supplierListOptions: supplierList[item.id], // 供应商列表
|
|
|
supplierId: '', // 供应商id
|
|
|
supplierName: '', // 供应商名称
|
|
|
@@ -3204,6 +3220,7 @@
|
|
|
brandNum: row.brandNum, // 牌号
|
|
|
parentIndex: row.index, // 产品索引
|
|
|
batchNo: row.batchNo, // 批次号
|
|
|
+ systemBatchNo: row.systemBatchNo, // 系统内部批次号
|
|
|
packageNo: packingCodeList[index]?.onlyCode, // 包装编码
|
|
|
packingQuantity: packingQuantity, // 包装数量
|
|
|
packingUnit: packingUnit, //包装单位
|
|
|
@@ -3337,6 +3354,7 @@
|
|
|
modelKey: row.modelKey, // 机型
|
|
|
colorKey: row.colorKey, //颜色
|
|
|
batchNo: row.batchNo, // 批次号
|
|
|
+ systemBatchNo: row.systemBatchNo, // 系统内部批次号
|
|
|
packageNo: packingCodeList[index]?.onlyCode, // 包装编码
|
|
|
packingQuantity: packingQuantity, // 包装数量
|
|
|
measureQuantity: measureQuantity, // 计量数量
|
|
|
@@ -3697,6 +3715,7 @@
|
|
|
categoryCode: row.categoryCode, // 产品编码
|
|
|
parentIndex: row.index, // 产品索引
|
|
|
batchNo: row.batchNo, // 批次号
|
|
|
+ systemBatchNo: row.systemBatchNo, // 系统内部批次号
|
|
|
packageNo: row.packageNo, // 包装编码
|
|
|
measureQuantity: 1, // 计量数量
|
|
|
measureUnit: row.measureUnit, // 计量单位
|