From 2982ff878661711da07d91ad75fc535ef60c9d2c Mon Sep 17 00:00:00 2001 From: xzg <4727863@qq.com> Date: Fri, 6 Sep 2024 17:57:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=B7=B2=E7=9F=A5bug?= =?UTF-8?q?=EF=BC=8C=E4=BC=98=E5=8C=96=E4=BB=A3=E7=A0=81=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/option/distribution/createTask.js | 334 ++++++++++++++++++ src/page/login/userlogin.vue | 2 +- .../checkInventoryTask/createTaskTemp.vue | 232 +++++++++++- 3 files changed, 559 insertions(+), 9 deletions(-) diff --git a/src/option/distribution/createTask.js b/src/option/distribution/createTask.js index c61619d7..14224f91 100644 --- a/src/option/distribution/createTask.js +++ b/src/option/distribution/createTask.js @@ -170,3 +170,337 @@ export const columnList = [ sortable: false, }, ]; +// 盘点明细 +export const columnListInventory = [ + { + prop: '', + label: '复选框', + type: 0, + width: 55, + fixed: true, + }, + { + prop: '', + label: '序号', + type: 12, + values: '', + width: 55, + fixed: true, + }, + + { + prop: 'orderCode', + label: '订单自编号', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + + { + prop: 'orderPackageCode', + label: '包条', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + + { + prop: 'questTarget', + label: '品类', + type: 3, + values: '', + width: '150', + checkarr: [ + { + value: 1, + label: '定制品', + }, + { + value: 2, + label: '零担', + }, + { + value: 3, + label: '库存品', + }, + ], + fixed: false, + sortable: true, + head: false, + }, + + { + prop: 'questStatus', + label: '盘点状态', + type: 1, + values: '', + width: '150', + checkarr: [ + { + value: 0, + label: '待盘点', + }, + { + value: 1, + label: '已盘', + }, + { + value: 2, + label: '未盘点', + }, + { + value: 3, + label: '已排除', + }, + ], + fixed: false, + sortable: true, + head: false, + }, + + { + prop: 'positionCode', + label: '货位', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + + { + prop: 'materialName', + label: '物料名称', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + + { + prop: 'stockNum', + label: '数量', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + + { + prop: 'trayCode', + label: '托盘码', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + + { + prop: 'trayName', + label: '托盘名称', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + + { + prop: 'isNew', + label: '是否新增', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + + { + prop: 'groundingPositionCode', + label: '上架后库位', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + + { + prop: 'newTrayCode', + label: '移动托盘', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + + { + prop: 'newTrayName', + label: '移动托盘名称', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + + { + prop: 'isChange', + label: '是否数量变更', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + + { + prop: 'isChangeAt', + label: '是否库位或托盘变更', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + + { + prop: 'inventoryPerson', + label: '盘点人', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + + { + prop: 'inventoryDate', + label: '盘点时间', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + + { + prop: 'firsts', + label: '一级品类', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + + { + prop: 'second', + label: '二级品类', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + + { + prop: 'thirdProduct', + label: '三级品类', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + + { + prop: 'categoryName', + label: '产品名称', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + + { + prop: 'materialCode', + label: '物料编码', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'brandName', + label: '品牌', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + + { + prop: '', + label: '操作', + type: 6, + values: '', + width: '120', + checkarr: [], + fixed: 'right', + sortable: false, + }, +]; diff --git a/src/page/login/userlogin.vue b/src/page/login/userlogin.vue index 4887dcd1..a7fa7847 100644 --- a/src/page/login/userlogin.vue +++ b/src/page/login/userlogin.vue @@ -61,7 +61,7 @@ - 记住密码 + 记住密码 diff --git a/src/views/distribution/checkInventoryTask/createTaskTemp.vue b/src/views/distribution/checkInventoryTask/createTaskTemp.vue index 962f7d97..d40c0106 100644 --- a/src/views/distribution/checkInventoryTask/createTaskTemp.vue +++ b/src/views/distribution/checkInventoryTask/createTaskTemp.vue @@ -25,6 +25,7 @@ 废弃盘点任务 + 延期盘点任务
@@ -52,7 +53,7 @@