This commit is contained in:
2026-03-04 17:19:15 +08:00
parent 65ee8864d6
commit 960fbe11fa
4 changed files with 164 additions and 1 deletions

View File

@@ -249,6 +249,18 @@ export const confirmInside = (qty, scode, stcode, rows) => request({
data: {total_qty: qty, storagevehicle_code: scode, struct_code: stcode, rows: rows}
})
// 损益管理 (仓储管理) 共(2) 个
// 查询库存信息
export const queryMoreIvt = (vcode) => request({
url:'api/pdaWarehouse/queryMoreIvt',
data: {vehicle_code: vcode}
})
// 确认损益
export const confirmMore = (rows) => request({
url:'api/pdaWarehouse/confirmMore',
data: {rows: rows}
})
/**
* 生产管理
*/

View File

@@ -22,7 +22,8 @@ export const allAuthority = () => {
{menu_id: '1', title: '收货入库', path: '/pages/hdyy/ccgl/sh-instore'},
{menu_id: '2', title: '直接入库', path: '/pages/hdyy/ccgl/zj-instore'},
{menu_id: '3', title: '直接出库', path: '/pages/hdyy/ccgl/zj-outstore'},
{menu_id: '4', title: '库内合盘', path: '/pages/hdyy/ccgl/kn-hepan'}
{menu_id: '4', title: '库内合盘', path: '/pages/hdyy/ccgl/kn-hepan'},
{menu_id: '5', title: '损益管理', path: '/pages/hdyy/ccgl/sy-manage'}
]},
{menu_id: '5', path: 'RF05', title: '生产管理', sonTree: [
{menu_id: '1', title: '成品出料', path: '/pages/hdyy/scgl/cp-chuliao'},