半成品盘点

This commit is contained in:
2023-07-03 20:28:43 +08:00
parent 9f0996824c
commit 05d682abb6
5 changed files with 264 additions and 145 deletions

View File

@@ -253,3 +253,22 @@ export const checkConfirmOffer = (row) => post('api/pda/bcp/check/confirmOffer',
export const checkConfirmFinance = (row) => post('api/pda/bcp/check/confirmFinance', {
row: row
})
/**
* 半成品拼盘
*/
// 1.1仓库下拉框
export const bcpShutGetBcpStor = () => post('api/pda/bcp/shut/getBcpStor', {})
// 1.2单据类型下拉框
export const bcpShutGetBillType = () => post('api/pda/bcp/shut/getBillType', {})
// 1.3半成品拼盘页面
export const bcpShutGetdtl = (id, btime, etime, code, scode, stcode) => post('api/pda/bcp/shut/getdtl', {
stor_id: id,
begin_time: btime,
end_time: etime,
material_code: code,
bill_type: scode,
storagevehicle_id_in: stcode
})
// 1.4拼盘完成(按钮)
export const bcpShutConfirm = () => post('api/pda/bcp/shut/confirm', {})