Blame view

antis-ncc-admin/src/api/extend/lqInventory.js 2.09 KB
f86c9c69   “wangming”   添加库存管理和学习班级管理功能
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
  import request from '@/utils/request'
  
  // ========== 库存管理接口 ==========
  
  // 创建库存
  export function createInventory(data) {
    return request({
      url: '/api/Extend/LqInventory/Create',
      method: 'post',
      data
    })
  }
  
  // 更新库存
  export function updateInventory(data) {
    return request({
      url: '/api/Extend/LqInventory/Update',
      method: 'put',
      data
    })
  }
  
  // 获取库存列表
  export function getInventoryList(params) {
    return request({
      url: '/api/Extend/LqInventory/GetList',
      method: 'get',
      data: params
    })
  }
  
  // 获取库存详情
  export function getInventoryInfo(id) {
    return request({
      url: '/api/Extend/LqInventory/GetInfo',
      method: 'get',
      data: { id }
    })
  }
  
  // ========== 库存使用记录接口 ==========
  
  // 添加库存使用记录
  export function createInventoryUsage(data) {
    return request({
      url: '/api/Extend/LqInventoryUsage/Create',
      method: 'post',
      data
    })
  }
  
  // 作废库存使用记录
  export function cancelInventoryUsage(id, remarks) {
    return request({
      url: '/api/Extend/LqInventoryUsage/Cancel',
      method: 'put',
      data: { id, remarks }
    })
  }
  
  // 获取使用记录列表
  export function getInventoryUsageList(params) {
    return request({
      url: '/api/Extend/LqInventoryUsage/GetList',
      method: 'get',
      data: params
    })
  }
  
  // 获取产品使用统计
  export function getProductUsageStatistics(data) {
    return request({
      url: '/api/Extend/LqInventoryUsage/GetProductUsageStatistics',
      method: 'post',
      data
    })
  }
  
  // 获取门店使用统计
  export function getStoreUsageStatistics(data) {
    return request({
      url: '/api/Extend/LqInventoryUsage/GetStoreUsageStatistics',
      method: 'post',
      data
    })
  }
  
  // 获取使用趋势统计
  export function getUsageTrendStatistics(data) {
    return request({
      url: '/api/Extend/LqInventoryUsage/GetUsageTrendStatistics',
      method: 'post',
      data
    })
  }
  
  // 获取产品使用排行榜
  export function getProductUsageRanking(data) {
    return request({
      url: '/api/Extend/LqInventoryUsage/GetProductUsageRanking',
      method: 'post',
      data
    })
  }
cc202318   “wangming”   优化库存管理功能