新增库存盘点

This commit is contained in:
gyq
2024-07-01 18:10:04 +08:00
parent c05707e6f0
commit d5e400d0cb
4 changed files with 253 additions and 11 deletions

View File

@@ -261,4 +261,34 @@ export function stockStateChanges(params) {
...params
}
});
}
}
/**
* 新增盘点
* @returns
*/
export function tbProductStocktakin(data) {
return request({
url: `/api/tbProductStocktakin`,
method: "post",
data: {
shopId: localStorage.getItem("shopId"),
...data
}
});
}
/**
* 盘点记录查询
* @returns
*/
export function tbProductStocktakinGet(data) {
return request({
url: `/api/tbProductStocktakin`,
method: "get",
params: {
shopId: localStorage.getItem("shopId"),
...data
}
});
}