zhangwencui
11 小时以前 6ca03cc8ac229c13702ce699bab4db6e93f3f172
src/api/inventoryManagement/stockInventory.js
@@ -17,6 +17,14 @@
  });
};
export const getStockInventoryBatchNoQty = params => {
  return request({
    url: "/stockInventory/getBatchNoQty",
    method: "get",
    params,
  });
};
// 创建库存记录
export const createStockInventory = params => {
  return request({
@@ -26,6 +34,22 @@
  });
};
export const addStockInRecordOnly = params => {
  return request({
    url: "/stockInventory/addStockInRecordOnly",
    method: "post",
    data: params,
  });
};
export const addStockOutRecordOnly = params => {
  return request({
    url: "/stockInventory/addStockOutRecordOnly",
    method: "post",
    data: params,
  });
};
// 减少库存记录
export const subtractStockInventory = params => {
  return request({