查看耗材记录

This commit is contained in:
duan
2024-10-23 17:26:33 +08:00
parent 51d273314e
commit 9f3ef067df
3 changed files with 227 additions and 16 deletions

View File

@@ -10,6 +10,13 @@ export function summaryTrade(data) {
}
})
}
export function tbConsInfoFlowcount(data) {
return request({
url: '/api/tbConsInfoFlow/count',
method: 'post',
data
})
}
// 供应商列表
export function tbShopPurveyorTransact(params) {
return request({
@@ -250,6 +257,12 @@ export function getroles() {
method: "get"
});
}
export function tbConsTypes() {
return request({
url: `/api/tbConsType`,
method: "get"
});
}
export function tbPlussShopStaff(data) {
return request({
url: `/api/tbPlussShopStaff`,
@@ -264,4 +277,12 @@ export function viewConInfoFlowget(data) {
method: 'post',
data
});
}
// 耗材记录
export function tbConsInfoFlowstock(data) {
return request({
url: `/api/tbConsInfoFlow/stock`,
method: 'post',
data
});
}