payne
2024-04-24 0609ad2318e9d20dfa1d1eebe3c24242717cd112
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
import { axios } from '@/utils/request'
 
/**
 * 查询盘点计划
 *
 * @author li
 */
export function InventoryPlanPage (parameter) {
  return axios({
    url: '/InventoryPlan/page',
    method: 'get',
    params: parameter
  })
}
 
/**
 * 报告页面查询盘点计划
 *
 * @author yhh
 */
export function InventoryPlanRecordPage (parameter) {
  return axios({
    url: '/InventoryPlan/InventoryComplete',
    method: 'get',
    params: parameter
  })
}
 
/**
 * 盘点计划列表
 *
 * @author li
 */
export function InventoryPlanList (parameter) {
  return axios({
    url: '/InventoryPlan/list',
    method: 'get',
    params: parameter
  })
}
 
/**
 * 添加盘点计划
 *
 * @author yhh
 */
export function InventoryPlanAdd (parameter) {
  return axios({
    url: '/InventoryPlan/AddInventoryPlan',
    method: 'post',
    data: parameter
  })
}
 
/**
 * 编辑盘点计划
 *
 * @author yhh
 */
export function InventoryPlanEdit (parameter) {
  return axios({
    url: '/InventoryPlan/UpdateInventoryPlan',
    method: 'post',
    data: parameter
  })
}
 
/**
 * 删除盘点计划
 *
 * @author li
 */
export function InventoryPlanDelete (parameter) {
  return axios({
    url: '/InventoryPlan/delete',
    method: 'post',
    data: parameter
  })
}
 
 
/**
 * 导出盘点计划的Excel文件
 *
 * @author li
 */
export function InventoryPlanToExcel (parameter) {
  return axios({
    url: '/InventoryPlan/toExcel',
    method: 'get',
    params: parameter,
    responseType: 'blob'
  })
}
 
/**
 * 导入盘点计划的Excel文件
 *
 * @author li
 */
export function InventoryPlanFromExcel (data, parameter) {
  return axios({
    url: '/InventoryPlan/fromExcel',
    method: 'post',
    data: data,
    params: parameter
 
  })
}
 
 
/**
 * 下载盘点计划的Excel导入模板
 *
 * @author li
 */
export function InventoryPlanDownloadExcelTemplate(parameter) {
  return axios({
    url: '/InventoryPlan/downloadExcelTemplate',
    method: 'get',
    params: parameter,
    responseType: 'blob'
  })
}
 
 
 
 
/**
* 获取InventoryRule列表
* @author li
*/
export function InventoryPlanFkInventoryRuleList() {
  return axios({
    url: '/InventoryPlan/fkInventoryRule',
    method: 'get'
  })
}
 
/**
* 获取仓库下拉列表
* @author yhh
*/
export function InventoryPlanGetAreas() {
  return axios({
    url: '/InventoryPlan/InventoryArea',
    method: 'get'
  })
}
 
/**
* 获取盘点规则下拉列表
* @author yhh
*/
export function InventoryPlanGetCheckRules() {
  return axios({
    url: '/InventoryPlan/InventoryRule',
    method: 'get'
  })
}
 
/**
 * 获取计划号
 *
 * @author yhh
 */
export function GetBillNumber () {
  return axios({
    url: '/InventoryPlan/CreatePlanNo',
    method: 'get'
  })
}
 
/**
 * 获取可加入计划的明细列表
 *
 * @author yhh
 */
export function GetCouldOuts(params) {
  return axios({
    url: '/InventoryPlan/SelectStock',
    method: 'get',
    params: params
  })
}
 
/**
 * 盘点计划详情
 *
 * @author yhh
 */
export function InventoryPlanDetailPage (parameter) {
  return axios({
    url: '/InventoryPlan/DetailPage',
    method: 'get',
    params: parameter
  })
}
 
/**
 * 盘点审核
 *
 * @author yhh
 */
export function InventoryReview (parameter) {
  return axios({
    url: '/InventoryPlan/UpdateExamine',
    method: 'post',
    data: parameter
  })
}
 
/**
 * 改变库存数
 *
 * @author yhh
 */
export function InventoryChangeStockNumber (parameter) {
  return axios({
    url: '/InventoryPlan/UpdateInventoryStock',
    method: 'post',
    data: parameter
  })
}