添加出入库供应商

This commit is contained in:
魏啾
2024-11-06 17:51:12 +08:00
parent 1b0747ca91
commit 883a6ffa1a
3 changed files with 90 additions and 6 deletions

View File

@@ -178,7 +178,7 @@ export function unittbConsInfo(params) {
return request({
url: `/api/tbConsInfo`,
method: "put",
data:params
data: params
});
}
/**
@@ -411,3 +411,15 @@ export function tbConsInfoinputStock(file) {
}
});
}
/**
* 供应商出入库记录
* @returns
*/
export function tbProductStockOperatepage(data) {
return request({
url: `/api/tbProductStockOperate/page`,
method: "post",
data
});
}