新增耗材盘点

This commit is contained in:
gyq
2024-07-06 16:12:05 +08:00
parent 065d159b49
commit f1eda32158
5 changed files with 263 additions and 43 deletions

View File

@@ -330,3 +330,33 @@ export function stockInOut(data) {
}
});
}
/**
* 新增盘点耗材
* @returns
*/
export function tbConCheck(data) {
return request({
url: `/api/tbConCheck`,
method: "post",
data: {
shopId: localStorage.getItem("shopId"),
...data
}
});
}
/**
* 查询盘点耗材
* @returns
*/
export function tbConCheckGet(data) {
return request({
url: `/api/tbConCheck`,
method: "get",
params: {
shopId: localStorage.getItem("shopId"),
...data
}
});
}