diff --git a/klp-ui/src/utils/enum.js b/klp-ui/src/utils/enum.js index 5d5a1a05..c0ed12a4 100644 --- a/klp-ui/src/utils/enum.js +++ b/klp-ui/src/utils/enum.js @@ -6,4 +6,8 @@ export const MemoInputStorageKey = { surfaceTreatmentDesc: 'surfaceTreatmentDesc', // 钢卷表面处理 zincLayer: 'zincLayer', // 钢卷锌层 licensePlate: 'licensePlate', // 车牌号 + qualityStatus: 'qualityStatus', // 质量状态 + trimmingRequirement: 'trimmingRequirement', // 钢卷修剪要求 + packingStatus: 'packingStatus', // 打包状态 + packagingRequirement: 'packagingRequirement', // 打包要求 } \ No newline at end of file diff --git a/klp-ui/src/views/wms/coil/actflow.vue b/klp-ui/src/views/wms/coil/actflow.vue index 5b292ee2..1b2e6627 100644 --- a/klp-ui/src/views/wms/coil/actflow.vue +++ b/klp-ui/src/views/wms/coil/actflow.vue @@ -52,10 +52,11 @@ 移库操作已在移动端完成 发货操作已在移动端完成 - 入库操作 + 入库/收货操作 发货操作 移库操作 通过库区编辑钢卷 + 钢卷打包 diff --git a/klp-ui/src/views/wms/coil/do/packing.vue b/klp-ui/src/views/wms/coil/do/packing.vue new file mode 100644 index 00000000..cbb69c12 --- /dev/null +++ b/klp-ui/src/views/wms/coil/do/packing.vue @@ -0,0 +1,739 @@ + + + + + + + 钢卷打包 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 请先选择材料类型 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 打 包 + 重 置 + + + + + + + + + 打包记录 + 刷新 + + + + + + + 查询 + + + + + + + + 暂无打包记录 + + + + {{ item.currentCoilNo }} + + + + + + 创建人: + {{ item.createBy || '—' }} + + + 创建时间: + {{ parseTime(item.createTime, '{m}-{d} {h}:{i}') || '—' }} + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/klp-ui/src/views/wms/receive/components/Printer.vue b/klp-ui/src/views/wms/receive/components/Printer.vue index 0aad11cf..9c2082bb 100644 --- a/klp-ui/src/views/wms/receive/components/Printer.vue +++ b/klp-ui/src/views/wms/receive/components/Printer.vue @@ -167,7 +167,7 @@ export default { ...results[index].data, ...results[index].data.rawMaterial, ...results[index].data.product, - itemName: results[index].data.rawMaterial.rawMaterialName || results[index].data.product.productName || '' + itemName: results[index].data.rawMaterial?.rawMaterialName || results[index].data.product?.productName || '' })); console.log(this.localWaybillDetails); this.loading = false;
暂无打包记录