This commit is contained in:
2022-12-01 21:59:36 +08:00
parent f5d78a980a
commit 77d849739a
2 changed files with 28 additions and 4 deletions

View File

@@ -187,10 +187,11 @@ export const emptyVehiclepointStatusQuery = (pcode) => request({
* 盘点管理
*/
// 1.1盘点单查询
export const checkQuery = (ccode) => request({
export const checkQuery = (ccode, sid) => request({
url: 'api/pda/check/checkQuery',
data: {
check_code: ccode
check_code: ccode,
stor_id: sid
}
})
// 1.2盘点单明细查询
@@ -215,4 +216,9 @@ export const confirmCheck = (crows, ccode) => request({
check_rows: crows,
check_code: ccode
}
})
// 1.5仓库下拉框
export const checkgetStor = (crows, ccode) => request({
url: 'api/pda/check/getStor',
data: {}
})