yangfeng
2023-09-27 ecd4e0f81c47fcb4ae41e7b4377f49b8a326c0d9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import request from "@/common/untils/request.js"
// import axios from "axios"
 
// 库存调整列表
export function getInventoryAdjustmentList(data) {
  return request({
    url: "/api-wms/v1/locationProductAmount/list",
    method: "post",
    data
  })
}
// 添加库存调整
export function addInventoryAdjustment(data) {
  return request({
    url: "/api-wms/v1/locationProductAmount/add",
    method: "post",
    data
  })
}
// 库存调整/历史
export function historyInventoryAdjustment(data) {
  return request({
    url: "/api-wms/v1/product/listHistory",
    method: "post",
    data
  })
}