This commit is contained in:
2026-01-12 11:25:07 +08:00
parent f2231c9329
commit 6138ee3d95
8 changed files with 169 additions and 73 deletions

View File

@@ -15,7 +15,11 @@ export const queryRegionDropdown = (rcode) => request({
url:'api/pda/publicInterface/queryRegionDropdown',
data: {region_code: rcode}
})
// 查询供应商
export const querySupp = (supcode) => request({
url:'api/pda/publicInterface/querySupp',
data: {supp_code: supcode}
})
/**
* 外包材收货(外包材管理)
@@ -297,7 +301,7 @@ export const getBucketGroupInfo = (mid, pcsn) => request({
})
// 确认叫料
export const confirmCallBucketMaterial = (pcode, rows) => request({
url:'/api/pdaProduction/confirmCallBucketMaterial',
url:'api/pdaProduction/confirmCallBucketMaterial',
data: {point_code: pcode, rows: rows}
})
@@ -357,12 +361,12 @@ export const forceConfirmTask = (obj) => request({
// 库存查询(通用功能)共 (2) 个
// 查询物料维护信息
export const queryMaterial = (search) => request({
url:'/api/queryIvt/queryMaterial',
url:'api/queryIvt/queryMaterial',
data: {search: search}
})
// 主页面库存查询
export const queryIvt = (scode, pcode, mcode, pcsn) => request({
url:'/api/queryIvt/queryIvt',
url:'api/queryIvt/queryIvt',
data: {sect_code: scode, point_code: pcode, material_code: mcode, pcsn: pcsn}
})
@@ -399,4 +403,4 @@ export const waiting = () => request({
export const back = () => request({
url:'api/notCar/back',
data: {}
})
})