diff --git a/src/pages/xinrui/storage/instorage/SoftWasteProfileInStore.vue b/src/pages/xinrui/storage/instorage/SoftWasteProfileInStore.vue new file mode 100644 index 0000000..a50b669 --- /dev/null +++ b/src/pages/xinrui/storage/instorage/SoftWasteProfileInStore.vue @@ -0,0 +1,297 @@ + + + + + + + + + + + 查找托盘 + + + + 采购订单 + + + + + 查找单据 + + + + + 软废等级 + + + + + + + + + + + 桶码 + + + {{e.bucketunique}} + + + + + + + 软废编码 + 批次 + 重量kg + 是否新加 + 订单号 + + + {{e.material_code}} + {{e.pcsn}} + {{e.storage_qty | numeric(3)}} + {{['否', '是'][Number(e.is_new)]}} + {{e.bill_code}} + + + + + + + + 总重量 + + + + KG + + + + 删除行 + 确认组盘 + + + + + + + diff --git a/src/router/index.js b/src/router/index.js index 4c99bb2..538dbdb 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -26,6 +26,7 @@ const FinishMaterInStoreGroup = r => require.ensure([], () => r(require('../page const ProcedureReworkInStoreGroup = r => require.ensure([], () => r(require('../pages/xinrui/storage/instorage/ProcedureReworkInStoreGroup')), 'instorage') const LikuReworkInStoreGroup = r => require.ensure([], () => r(require('../pages/xinrui/storage/instorage/LikuReworkInStoreGroup')), 'instorage') const SoftWasteInStoreGroup = r => require.ensure([], () => r(require('../pages/xinrui/storage/instorage/SoftWasteInStoreGroup')), 'instorage') +const SoftWasteProfileInStore = r => require.ensure([], () => r(require('../pages/xinrui/storage/instorage/SoftWasteProfileInStore')), 'instorage') const SearchPallet = r => require.ensure([], () => r(require('../pages/xinrui/storage/instorage/SearchPallet')), 'instorage') const SearchSoftWasteBill = r => require.ensure([], () => r(require('../pages/xinrui/storage/instorage/SearchSoftWasteBill')), 'instorage') const RemnantInStoreGroup = r => require.ensure([], () => r(require('../pages/xinrui/storage/instorage/RemnantInStoreGroup')), 'instorage') @@ -235,6 +236,10 @@ export default new Router({ path: '/SoftWasteInStoreGroup', // 软废入库组盘 component: SoftWasteInStoreGroup }, + { + path: '/SoftWasteProfileInStore', // 软废型材入库 + component: SoftWasteProfileInStore + }, { path: '/SearchPallet', // 查找托盘 component: SearchPallet