diff --git a/src/pages/xinrui/storage/settings/SoftWasteBarrelPrintNobag.vue b/src/pages/xinrui/storage/settings/SoftWasteBarrelPrintNobag.vue new file mode 100644 index 0000000..e4260f7 --- /dev/null +++ b/src/pages/xinrui/storage/settings/SoftWasteBarrelPrintNobag.vue @@ -0,0 +1,527 @@ + + + + + + + + 物料编码 + + + + + 查询 + + + + 批次 + + + + + + 是否可用 + + + + + + + 等级 + + + + + + + + + + + + 桶码 + + + {{e.bucketunique}} + + + + + + + 袋码 + 物料编码 + 批次 + 重量kg + 是否新加 + + + {{e.bag_id}} + {{e.material_code}} + {{e.pcsn}} + {{e.storage_qty | numeric(3)}} + {{e.is_new_name}} + + + + + + + + 总重量 + + + + KG + + + + 清空 + 删除行 + 组桶 + 组桶并打印 + 打印 + + + 是否打印重量 + + + + + + + + + diff --git a/src/router/index.js b/src/router/index.js index 1e21a93..8d64523 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -10,6 +10,7 @@ const Setup = r => require.ensure([], () => r(require('../pages/login/Setup')), const PwdManage = r => require.ensure([], () => r(require('../pages/login/PwdManage')), 'PwdManage') // xinrui const SoftWasteBarrelPrint = r => require.ensure([], () => r(require('../pages/xinrui/storage/settings/SoftWasteBarrelPrint')), 'settings') +const SoftWasteBarrelPrintNobag = r => require.ensure([], () => r(require('../pages/xinrui/storage/settings/SoftWasteBarrelPrintNobag')), 'settings') const SoftWasteBagPrint = r => require.ensure([], () => r(require('../pages/xinrui/storage/settings/SoftWasteBagPrint')), 'settings') const ReworkBarrelPrint = r => require.ensure([], () => r(require('../pages/xinrui/storage/settings/ReworkBarrelPrint')), 'settings') const FinishProdBarrelPrint = r => require.ensure([], () => r(require('../pages/xinrui/storage/settings/FinishProdBarrelPrint')), 'settings') @@ -163,6 +164,10 @@ export default new Router({ path: '/SoftWasteBarrelPrint', // 软废组桶标签打印 component: SoftWasteBarrelPrint }, + { + path: '/SoftWasteBarrelPrintNobag', // 软废无袋组桶标签打印 + component: SoftWasteBarrelPrintNobag + }, { path: '/SoftWasteBagPrint', // 软废袋标签打印 component: SoftWasteBagPrint