需求修改

This commit is contained in:
2024-06-06 18:26:25 +08:00
parent 371736a109
commit 1493f62889
7 changed files with 344 additions and 115 deletions

View File

@@ -24,13 +24,13 @@ export const getBillsCount = (area) => request({
* 出入库
*/
// 1.分页查询出入库单据
export const easOutInBillPage = (fuzzy, djlx, djzt, ckbm, page, size) => request({
export const easOutInBillPage = (fuzzy, djlx, ckbm, cgybm, page, size) => request({
url:'api/easOutInBill/page',
data: {
fuzzy: fuzzy,
djlx: djlx,
djzt: djzt,
ckbm: ckbm,
cgybm: cgybm,
page: page,
size: size
}
@@ -59,6 +59,16 @@ export const easOutInBillDetailUpdate = (arr) => request({
url:'api/easOutInBillDetail/update',
data: arr
})
// 6.获取仓管员信息 ------ 下拉框带搜索功能
export const getUserInfo = () => request({
url:'api/easOutInBill/getUserInfo',
data: {}
})
// 7.获取组织机构信息 ------ 下拉框带搜索功能
export const getOrganizationInfo = () => request({
url:'api/easOutInBill/getOrganizationInfo',
data: {}
})
/**
* 调拨维护
@@ -69,11 +79,12 @@ export const getWarehouseInfo = () => request({
data: {}
})
// 2.查询调拨单据
export const allocationPage = (fuzzy, ckbm, page, size) => request({
export const allocationPage = (fuzzy, kczzbm, cgybm, page, size) => request({
url:'api/allocationBill/allocationPage',
data: {
fuzzy: fuzzy,
ckbm: ckbm,
kczzbm: kczzbm,
cgybm: cgybm,
page: page,
size: size
}
@@ -97,16 +108,21 @@ export const allocationBillConfirm = (arr) => request({
url:'api/allocationBill/confirm',
data: arr
})
// 6.根据跟踪号查询库存列表
export const allocationBillInventoryInfo = (arr) => request({
url:'api/allocationBill/queryInventoryInfo',
data: arr
})
/**
* 收货确认
*/
// 1.收货单据分页
export const receiptPage = (fuzzy, ckbm, page, size) => request({
export const receiptPage = (fuzzy, kczzbm, page, size) => request({
url:'api/receiptBill/receiptPage',
data: {
fuzzy: fuzzy,
ckbm: ckbm,
kczzbm: kczzbm,
page: page,
size: size
}