1.新增商品库存库存盘点
2.操作出入库新增耗材操作
This commit is contained in:
@@ -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
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user