diff --git a/src/config/getData2.js b/src/config/getData2.js
index b2ed306..a5608ef 100644
--- a/src/config/getData2.js
+++ b/src/config/getData2.js
@@ -128,6 +128,12 @@ export const getBillDtl = (page, size, pcsn) => post('api/pda/st/in/getBillDtl',
size: size,
pcsn: pcsn
})
+// 1.3获取单据信息-新料其他入库组盘
+export const getBillDtl2 = (page, size, pcsn) => post('api/pda/st/in/getBillDtl2', {
+ page: page,
+ size: size,
+ pcsn: pcsn
+})
// 1.4 确认组盘
export const confirmVehicle = (option, vehicle, rows, point, bill, level) => post('api/pda/st/in/confirmVehicle', {
accountId: accountId,
@@ -138,6 +144,16 @@ export const confirmVehicle = (option, vehicle, rows, point, bill, level) => pos
bill: bill,
ivt_level: level
})
+// 1.4 确认组盘-新料其他入库组盘
+export const confirmVehicleOther = (option, vehicle, rows, point, bill, level) => post('api/pda/st/in/confirmVehicle2', {
+ accountId: accountId,
+ option: option,
+ vehicle: vehicle,
+ bucket_rows: rows,
+ point: point,
+ bill: bill,
+ ivt_level: level
+})
/** 工序返工入库 */
// 1.1查询站点
export const queryPoint = (code, carr) => post('api/pda/st/in/queryPoint', {
diff --git a/src/config/mork.js b/src/config/mork.js
index 2370c6d..d35bbca 100644
--- a/src/config/mork.js
+++ b/src/config/mork.js
@@ -125,6 +125,14 @@ export const authority = () => {
"menu_id": "290",
"username": "admin"
},
+ {
+ "accountid": "1",
+ "path": "RFNewMaterOtherInStoreGroup",
+ "component": "2",
+ "name": "新料其他入库组盘",
+ "menu_id": "2902",
+ "username": "admin"
+ },
{
"accountid": "1",
"path": "RFFinishMaterInStoreGroup",
diff --git a/src/pages/login/Home.vue b/src/pages/login/Home.vue
index 9e0e517..e136f11 100644
--- a/src/pages/login/Home.vue
+++ b/src/pages/login/Home.vue
@@ -49,6 +49,7 @@
+
diff --git a/src/pages/xinrui/storage/instorage/NewMaterOtherInStoreGroup.vue b/src/pages/xinrui/storage/instorage/NewMaterOtherInStoreGroup.vue
new file mode 100644
index 0000000..086fdcc
--- /dev/null
+++ b/src/pages/xinrui/storage/instorage/NewMaterOtherInStoreGroup.vue
@@ -0,0 +1,211 @@
+
+
+
+
+
+
+
+
+
+ | 桶码 |
+
+
+ | {{e.bucketunique}} |
+
+
+
+
+
+
+ | 物料编码 |
+ 物料名称 |
+ 批次 |
+ 重量kg |
+
+
+ | {{e.material_code}} |
+ {{e.material_name}} |
+ {{e.pcsn}} |
+ {{e.storage_qty | numeric(3)}} |
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/pages/xinrui/storage/instorage/SearchRelatedBill2.vue b/src/pages/xinrui/storage/instorage/SearchRelatedBill2.vue
new file mode 100644
index 0000000..3da3ede
--- /dev/null
+++ b/src/pages/xinrui/storage/instorage/SearchRelatedBill2.vue
@@ -0,0 +1,143 @@
+
+
+
+
+
+
+
+
+
+ | 物料编码 |
+
+
+ | {{e.material_code}} |
+
+
+
+
+
+
+ | 物料名称 |
+ 批次 |
+ 重量kg |
+ 待组重量kg |
+ 单据号 |
+ 单据日期 |
+
+
+ | {{e.material_name}} |
+ {{e.pcsn}} |
+ {{e.receive_qty | numeric(3)}} |
+ {{e.need_qty | numeric(3)}} |
+ {{e.source_bill_code}} |
+ {{e.receive_date}} |
+
+
+
+
+ {{desc}}
+
+
+
+
+
+
+
+
diff --git a/src/router/index.js b/src/router/index.js
index 538dbdb..89a2c28 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -21,7 +21,9 @@ const BarrelBagUpdate = r => require.ensure([], () => r(require('../pages/xinrui
const PeifenBarrelPrint = r => require.ensure([], () => r(require('../pages/xinrui/storage/settings/PeifenBarrelPrint')), 'settings')
const AbnormalBarrelPrint = r => require.ensure([], () => r(require('../pages/xinrui/storage/settings/AbnormalBarrelPrint')), 'settings')
const NewMaterInStoreGroup = r => require.ensure([], () => r(require('../pages/xinrui/storage/instorage/NewMaterInStoreGroup')), 'instorage')
+const NewMaterOtherInStoreGroup = r => require.ensure([], () => r(require('../pages/xinrui/storage/instorage/NewMaterOtherInStoreGroup')), 'instorage')
const SearchRelatedBill = r => require.ensure([], () => r(require('../pages/xinrui/storage/instorage/SearchRelatedBill')), 'instorage')
+const SearchRelatedBill2 = r => require.ensure([], () => r(require('../pages/xinrui/storage/instorage/SearchRelatedBill2')), 'instorage')
const FinishMaterInStoreGroup = r => require.ensure([], () => r(require('../pages/xinrui/storage/instorage/FinishMaterInStoreGroup')), 'instorage')
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')
@@ -216,10 +218,18 @@ export default new Router({
path: '/NewMaterInStoreGroup', // 新料入库组盘
component: NewMaterInStoreGroup
},
+ {
+ path: '/NewMaterOtherInStoreGroup', // 新料其他入库组盘
+ component: NewMaterOtherInStoreGroup
+ },
{
path: '/SearchRelatedBill', // 查找关联单据
component: SearchRelatedBill
},
+ {
+ path: '/SearchRelatedBill2', // 查找关联单据(新料入库组盘)
+ component: SearchRelatedBill2
+ },
{
path: '/FinishMaterInStoreGroup', // 产成品入库组盘
component: FinishMaterInStoreGroup