过滤条件

This commit is contained in:
2024-06-05 18:44:15 +08:00
parent 337f940344
commit 371736a109
5 changed files with 34 additions and 13 deletions

View File

@@ -69,10 +69,11 @@ export const getWarehouseInfo = () => request({
data: {}
})
// 2.查询调拨单据
export const allocationPage = (fuzzy, page, size) => request({
export const allocationPage = (fuzzy, ckbm, page, size) => request({
url:'api/allocationBill/allocationPage',
data: {
fuzzy: fuzzy,
ckbm: ckbm,
page: page,
size: size
}
@@ -101,10 +102,11 @@ export const allocationBillConfirm = (arr) => request({
* 收货确认
*/
// 1.收货单据分页
export const receiptPage = (fuzzy, page, size) => request({
export const receiptPage = (fuzzy, ckbm, page, size) => request({
url:'api/receiptBill/receiptPage',
data: {
fuzzy: fuzzy,
ckbm: ckbm,
page: page,
size: size
}