haoyahui
2023-11-20 a6acf1f8924a8fabaa4b74f6771ddbe41ab6b204
admin-web/src/api/stock/inventory.js
@@ -32,6 +32,24 @@
  });
}
// 编辑
export function inventoryDetail(params) {
  return request({
    url: '/pc/l/wh/form/inventory/detail',
    method: 'get',
    params,
  });
}
// 盘点暂存
export function inventoryTemporaryStorage(data) {
  return request({
    url: '/pc/l/wh/form/inventory/temporaryStorage',
    method: 'post',
    data,
  });
}
// 完成盘点
export function inventoryFinish(data) {
  return request({
@@ -40,3 +58,21 @@
    data,
  });
}
// 异常明细列表查询
export function inventoryListPdDetail(params) {
  return request({
    url: '/pc/l/wh/form/inventory/list/PdDetail',
    method: 'get',
    params,
  });
}
// 盘点
export function inventorySelectPdList(params) {
  return request({
    url: '/pc/l/wh/form/inventory/select/pdList',
    method: 'get',
    params,
  });
}