1.新增商品库存库存盘点

2.操作出入库新增耗材操作
This commit is contained in:
gyq
2024-07-04 10:05:17 +08:00
parent 06101c6ed2
commit 7a3fd61550
7 changed files with 410 additions and 37 deletions

View File

@@ -300,3 +300,33 @@ export function tbShopPurveyorTransacttransactPayInfos(params) {
params
});
}
/**
* 查询耗材信息
* @returns
*/
export function tbConsInfoGet(data) {
return request({
url: `/api/tbConsInfo`,
method: "get",
params: {
shopId: localStorage.getItem("shopId"),
...data
}
});
}
/**
* 耗材出入库
* @returns
*/
export function stockInOut(data) {
return request({
url: `/api/tbConsInfo/stockInOut`,
method: "post",
data: {
shopId: localStorage.getItem("shopId"),
...data
}
});
}