Blame view

ant-design-vue-jeecg/src/api/api.js 23.1 KB
pengyongcheng authored
1
import { deleteAction, getAction, httpAction, postAction, putAction } from '@/api/manage'
肖超群 authored
2
import Vue from 'vue'
pengyongcheng authored
3
import { UI_CACHE_DB_DICT_DATA } from '@/store/mutation-types'
肖超群 authored
4
5

//角色管理
pengyongcheng authored
6
7
8
9
const addRole = (params) => postAction('/sys/role/add', params)
const editRole = (params) => putAction('/sys/role/edit', params)
const checkRoleCode = (params) => getAction('/sys/role/checkRoleCode', params)
const queryall = (params) => getAction('/sys/role/queryall', params)
肖超群 authored
10
11

//用户管理
pengyongcheng authored
12
13
14
15
16
const addUser = (params) => postAction('/sys/user/add', params)
const editUser = (params) => putAction('/sys/user/edit', params)
const queryUserRole = (params) => getAction('/sys/user/queryUserRole', params)
const getUserList = (params) => getAction('/sys/user/list', params)
const frozenBatch = (params) => putAction('/sys/user/frozenBatch', params)
肖超群 authored
17
//验证用户是否存在
pengyongcheng authored
18
const checkOnlyUser = (params) => getAction('/sys/user/checkOnlyUser', params)
肖超群 authored
19
//改变密码
pengyongcheng authored
20
const changePassword = (params) => putAction('/sys/user/changePassword', params)
21
//系统激活API
pengyongcheng authored
22
const systemActivation = (params) => postAction('/sys/systemActivation', params)
肖超群 authored
23
24

//权限管理
pengyongcheng authored
25
26
27
28
29
const addPermission = (params) => postAction('/sys/permission/add', params)
const editPermission = (params) => putAction('/sys/permission/edit', params)
const getPermissionList = (params) => getAction('/sys/permission/list', params)
const getSystemMenuList = (params) => getAction('/sys/permission/getSystemMenuList', params)
const getSystemSubmenu = (params) => getAction('/sys/permission/getSystemSubmenu', params)
肖超群 authored
30
const getSystemSubmenuBatch = (params) => getAction('/sys/permission/getSystemSubmenuBatch', params)
pengyongcheng authored
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
const queryTreeList = (params) => getAction('/sys/permission/queryTreeList', params)
const queryTreeListForRole = (params) => getAction('/sys/role/queryTreeList', params)
const queryListAsync = (params) => getAction('/sys/permission/queryListAsync', params)
const queryRolePermission = (params) => getAction('/sys/permission/queryRolePermission', params)
const saveRolePermission = (params) => postAction('/sys/permission/saveRolePermission', params)
const queryPermissionsByUser = () => getAction('/sys/permission/getUserPermissionByToken')
const loadAllRoleIds = (params) => getAction('/sys/permission/loadAllRoleIds', params)
const getPermissionRuleList = (params) => getAction('/sys/permission/getPermRuleListByPermId', params)
const queryPermissionRule = (params) => getAction('/sys/permission/queryPermissionRule', params)
// 数据权限
const addDataPermission = (params) => postAction('/sys/dataPermission/add', params)
const editDataPermission = (params) => putAction('/sys/dataPermission/edit', params)
const getDataPermissionList = (params) => getAction('/sys/dataPermission/list', params)
const queryDataTreeList = (params) => getAction('/sys/dataPermission/queryDataTreeList', params)
const queryRoleDataPermission = (params) => getAction('/sys/dataPermission/queryRoleDataPermission', params)
肖超群 authored
46
47

// 部门管理
pengyongcheng authored
48
49
50
51
52
53
const queryDepartTreeList = (params) => getAction('/sys/sysDepart/queryTreeList', params)
const queryDepartTreeSync = (params) => getAction('/sys/sysDepart/queryDepartTreeSync', params)
const queryIdTree = (params) => getAction('/sys/sysDepart/queryIdTree', params)
const queryParentName = (params) => getAction('/sys/sysDepart/queryParentName', params)
const searchByKeywords = (params) => getAction('/sys/sysDepart/searchBy', params)
const deleteByDepartId = (params) => deleteAction('/sys/sysDepart/delete', params)
李泰瑜 authored
54
55
肖超群 authored
56
//二级部门管理
pengyongcheng authored
57
58
59
60
61
62
const queryDepartPermission = (params) => getAction('/sys/permission/queryDepartPermission', params)
const saveDepartPermission = (params) => postAction('/sys/permission/saveDepartPermission', params)
const queryTreeListForDeptRole = (params) => getAction('/sys/sysDepartPermission/queryTreeListForDeptRole', params)
const queryDeptRolePermission = (params) => getAction('/sys/sysDepartPermission/queryDeptRolePermission', params)
const saveDeptRolePermission = (params) => postAction('/sys/sysDepartPermission/saveDeptRolePermission', params)
const queryMyDepartTreeList = (params) => getAction('/sys/sysDepart/queryMyDeptTreeList', params)
肖超群 authored
63
64

//日志管理
pengyongcheng authored
65
66
const deleteLog = (params) => deleteAction('/sys/log/delete', params)
const deleteLogList = (params) => deleteAction('/sys/log/deleteBatch', params)
67
//获得所有接口日志名称
pengyongcheng authored
68
const getApiNameList = (params) => deleteAction('/monitor/apiLog/getApiNameList', params)
肖超群 authored
69
70

//数据字典
pengyongcheng authored
71
72
73
74
75
const addDict = (params) => postAction('/sys/dict/add', params)
const editDict = (params) => putAction('/sys/dict/edit', params)
const treeList = (params) => getAction('/sys/dict/treeList', params)
const addDictItem = (params) => postAction('/sys/dictItem/add', params)
const editDictItem = (params) => putAction('/sys/dictItem/edit', params)
肖超群 authored
76
77

//字典标签专用(通过code获取字典数组)
pengyongcheng authored
78
export const ajaxGetDictItems = (code, params) => getAction(`/sys/dict/getDictItems/${code}`, params)
肖超群 authored
79
肖超群 authored
80
81
82
//从缓存中获取字典配置
function getDictItemsFromCache(dictCode) {
  if (Vue.ls.get(UI_CACHE_DB_DICT_DATA) && Vue.ls.get(UI_CACHE_DB_DICT_DATA)[dictCode]) {
pengyongcheng authored
83
    let dictItems = Vue.ls.get(UI_CACHE_DB_DICT_DATA)[dictCode]
肖超群 authored
84
    //console.log("-----------getDictItemsFromCache----------dictCode="+dictCode+"---- dictItems=",dictItems)
pengyongcheng authored
85
    return dictItems
肖超群 authored
86
87
88
89
  }
}

//系统通告
pengyongcheng authored
90
91
const doReleaseData = (params) => getAction('/sys/annountCement/doReleaseData', params)
const doReovkeData = (params) => getAction('/sys/annountCement/doReovkeData', params)
肖超群 authored
92
//获取系统访问量
pengyongcheng authored
93
94
const getLoginfo = (params) => getAction('/sys/loginfo', params)
const getVisitInfo = (params) => getAction('/sys/visitInfo', params)
肖超群 authored
95
96

// 根据部门主键查询用户信息
pengyongcheng authored
97
const queryUserByDepId = (params) => getAction('/sys/user/queryUserByDepId', params)
肖超群 authored
98
99

// 重复校验
pengyongcheng authored
100
const duplicateCheck = (params) => getAction('/sys/duplicate/check', params)
肖超群 authored
101
// 加载分类字典
pengyongcheng authored
102
const loadCategoryData = (params) => getAction('/sys/category/loadAllData', params)
肖超群 authored
103
104
const checkRuleByCode = (params) => getAction('/sys/checkRule/checkByCode', params)
//加载我的通告信息
pengyongcheng authored
105
const getUserNoticeInfo = (params) => getAction('/sys/sysAnnouncementSend/getMyAnnouncementSend', params)
肖超群 authored
106
const getTransitURL = url => `/sys/common/transitRESTful?url=${encodeURIComponent(url)}`
107
肖超群 authored
108
//根据用户编码,获取仓库信息
pengyongcheng authored
109
export const getWarehouseByUserCode = (params) => postAction('/sys/getWarehouseByUserCode', params)
肖超群 authored
110
//获取库区列表
pengyongcheng authored
111
export const getZoneList = (params) => getAction('/config/zone/getZoneList', params)
肖超群 authored
112
//获取容器类型列表
pengyongcheng authored
113
export const getContainerTypeList = (params) => getAction('/config/containerType/getContainerTypeList', params)
肖超群 authored
114
//获取库位类型列表
pengyongcheng authored
115
export const getLocationTypeList = (params) => getAction('/config/locationType/getLocationTypeList', params)
肖超群 authored
116
//获取库位类高度列表
pengyongcheng authored
117
export const getLocationHighList = (params) => postAction('/config/locationHigh/getLocationHighList', params)
肖超群 authored
118
//获取货主列表
pengyongcheng authored
119
export const getCompanyList = (params) => getAction('/config/company/getCompanyList', params)
120
//系统激活信息查询
pengyongcheng authored
121
export const querySystemActivationInfo = (params) => getAction('/sys/querySystemActivationInfo', params)
122
//获取盘点类型列表
pengyongcheng authored
123
export const getCountTypeList = (params) => getAction('/config/cycleCountPreference/getCountTypeList', params)
肖超群 authored
124
//获取承运商列表
pengyongcheng authored
125
export const getCarrierList = (params) => getAction('/config/carrier/getCarrierList', params)
肖超群 authored
126
//获取客户列表
pengyongcheng authored
127
export const getCustomerList = (params) => getAction('/config/customer/getCustomerList', params)
肖超群 authored
128
//获取供应商列表
pengyongcheng authored
129
export const getSupplierList = (params) => getAction('/config/supplier/getSupplierList', params)
肖超群 authored
130
//获取入库类型列表
pengyongcheng authored
131
export const getReceiptTypeList = (params) => getAction('/config/receiptType/getReceiptTypeList', params)
肖超群 authored
132
//获取出库类型列表
pengyongcheng authored
133
export const getShipmentTypeList = (params) => getAction('/config/shipmentType/getShipmentTypeList', params)
肖超群 authored
134
//根据物料编码查询物料信息
pengyongcheng authored
135
export const searchMaterialByCode = (params) => postAction('/config/material/searchMaterialByCode', params)
肖超群 authored
136
//根据入库单头ID查询入库单详情
pengyongcheng authored
137
export const listReceiveByReceiptId = (params) => postAction('/receipt/receiveHeader/listReceiveByReceiptId', params)
肖超群 authored
138
//创建入库任务
pengyongcheng authored
139
export const createReceiptTask = (params) => postAction('/receipt/receiptContainerHeader/createReceiptTask', params)
140
//批量创建入库任务
pengyongcheng authored
141
export const createReceiptBatchTask = (params) => postAction('/receipt/receiptContainerHeader/createReceiptBatchTask', params)
肖超群 authored
142
//完成WMS任务
pengyongcheng authored
143
export const completeTaskByWMS = (params) => postAction('/task/taskHeader/completeTaskByWMS', params)
肖超群 authored
144
//下发任务给WCS
pengyongcheng authored
145
export const execute = (params) => postAction('/task/taskHeader/execute', params)
肖超群 authored
146
//取消任务
pengyongcheng authored
147
export const cancelTask = (params) => postAction('/task/taskHeader/cancelTask?ids=' + params, params)
谭毅彬 authored
148
149

//盘点任务创建
pengyongcheng authored
150
export const createCycleCountDetailByInventory = (params) => postAction('/cycleCountDetail/cycleCountDetail/createCycleCountDetailByInventory', params)
谭毅彬 authored
151
152
//切换任务
pengyongcheng authored
153
export const switchTask = (params) => postAction('/task/taskHeader/switchTask?ids=' + params, params)
肖超群 authored
154
//自动配盘
pengyongcheng authored
155
export const autoCombination = (params) => postAction('/shipment/shipmentCombination/autoCombination', params)
肖超群 authored
156
//自动出库
pengyongcheng authored
157
export const autoShipment = (params) => postAction('/shipment/shipmentHeader/autoShipment', params)
158
//自动预配盘出库
pengyongcheng authored
159
export const autoShipmentAdvice = (params) => postAction('/shipment/shipmentHeader/autoShipmentAdvice', params)
160
//备货
pengyongcheng authored
161
export const stockUp = (params) => postAction('/shipment/shipmentHeader/stockUp', params)
肖超群 authored
162
//平库路径指引
pengyongcheng authored
163
export const autoFlatShipmentAdvice = (params) => postAction('/shipment/shipmentHeader/autoFlatShipmentAdvice', params)
164
//根据序列号扣减预配盘的库存
pengyongcheng authored
165
export const reduceInventoryDetailBySn = (params) => postAction('/shipment/shipmentCombination/reduceInventoryDetailBySn?snList=' + params, params)
肖超群 authored
166
//创建出库任务
pengyongcheng authored
167
export const createShipmentTask = (params) => postAction('/shipment/shipmentCombination/createShipmentTask', params)
肖超群 authored
168
//批量创建出库任务
pengyongcheng authored
169
export const createShipmentBatchTask = (params) => postAction('/shipment/shipmentCombination/createShipmentBatchTask', params)
肖超群 authored
170
//选择出库分拣口
pengyongcheng authored
171
export const selectSortingPort = (params) => postAction('/shipment/shipmentCombination/selectSortingPort', params)
肖超群 authored
172
//选择入库分拣口
pengyongcheng authored
173
export const selectSupplePort = (params) => postAction('/receipt/receiptContainerHeader/selectSupplePort', params)
174
//选择盘点分拣口
pengyongcheng authored
175
export const inventoryPort = (params) => postAction('/cycleCountDetail/cycleCountDetail/inventoryPort', params)
176
//创建空托盘入库任务
pengyongcheng authored
177
export const createEmptyIn = (params) => postAction('/task/taskHeader/createEmptyIn', params)
zengxiangping authored
178
//修改优先级
pengyongcheng authored
179
export const updatePriority = (params, priority) => postAction('/task/taskHeader/updatePriority?id=' + params + '&priority=' + priority, params)
180
//创建空托盘出库任务
pengyongcheng authored
181
export const createEmptyOut = (params) => postAction('/task/taskHeader/createEmptyOut', params)
肖超群 authored
182
//选择空托盘出库整出口
pengyongcheng authored
183
export const selectEmptyOutPort = (params) => postAction('/task/taskHeader/selectEmptyOutPort', params)
184
//选择空托盘组出库整出口
pengyongcheng authored
185
export const selectManyEmptyOutPort = (params) => postAction('/task/taskHeader/selectManyEmptyOutPort', params)
186
//选择出库整出口
pengyongcheng authored
187
export const selectOutPort = (params) => postAction('/task/taskHeader/selectOutPort', params)
188
//选择出库分拣口
pengyongcheng authored
189
export const selectPickPort = (params) => postAction('/task/taskHeader/selectPickPort', params)
190
//创建移库任务
pengyongcheng authored
191
export const createTransferTask = (params) => postAction('/task/taskHeader/createTransferTask', params)
192
//创建出库查看任务
pengyongcheng authored
193
export const createCheckOutTask = (params) => postAction('/task/taskHeader/createCheckOutTask', params)
194
//选择站台
pengyongcheng authored
195
export const selectPort = (params) => postAction('/task/taskHeader/selectPort', params)
196
//创建跨站任务
pengyongcheng authored
197
export const createOverStationTask = (params) => postAction('/task/taskHeader/createOverStationTask', params)
198
//盘点任务创建
pengyongcheng authored
199
export const stockTakeTask = (params, headerId, code) => postAction('/cycleCountDetail/cycleCountDetail/stockTakeTask?ids=' + params + '&headerId=' + headerId + '&code=' + code, code)
200
//盘盈添加
pengyongcheng authored
201
export const increaseInInventoryGain = (params) => postAction('/cycleCountDetail/cycleCountDetail/increaseInInventoryGain', params)
李泰瑜 authored
202
//盘点任务生成
pengyongcheng authored
203
export const createCycleCoutTaskByDetailId = (params, toPort) => postAction('/cycleCountDetail/cycleCountDetail/createCycleCoutTaskByDetailId?cycleId=' + params + '&toPort=' + toPort, params)
肖超群 authored
204
//盘点登记
pengyongcheng authored
205
export const confirmGapQty = (params) => postAction('/cycleCountDetail/cycleCountDetail/confirmGapQty', params)
206
//创建空托盘组入库任务
pengyongcheng authored
207
export const createManyEmptyIn = (params) => postAction('/task/taskHeader/createManyEmptyIn', params)
208
//创建空托盘组出库任务
pengyongcheng authored
209
export const createManyEmptyOut = (params) => postAction('/task/taskHeader/createManyEmptyOut', params)
肖超群 authored
210
//批量创建空托盘组出库任务
pengyongcheng authored
211
export const batchCreateEmptyOut = (params) => postAction('/task/taskHeader/batchCreateEmptyOut', params)
212
//获取容器打印数据
pengyongcheng authored
213
export const getPrintContainer = (params) => postAction('/config/container/getPrintContent?ids=' + params, params)
214
//获取容器打印数据
pengyongcheng authored
215
export const setPrintTimes = (params) => postAction('/config/container/setPrintTimes?ids=' + params, params)
216
//获取库位打印数据
pengyongcheng authored
217
export const getPrintLocation = (params) => postAction('/config/location/getPrintContent?ids=' + params, params)
218
//获取物料打印数据
pengyongcheng authored
219
export const getMaterialLocation = (params) => postAction('/config/material/getPrintContent?ids=' + params, params)
220
//获取物料类别列表
pengyongcheng authored
221
export const getMaterialTypeList = (params) => getAction('/config/materialType/getMaterialTypeList', params)
肖超群 authored
222
//根据出库单头ID查询出库单详情
pengyongcheng authored
223
export const listShipmentByShipmentDetailId = (params) => postAction('/shipment/shipmentCombination/listShipmentByShipmentDetailId', params)
肖超群 authored
224
//根据出库单详情选取库存
pengyongcheng authored
225
export const getInventoryFromShipmentDetail = (params) => getAction('/shipment/shipmentCombination/getInventoryFromShipmentDetail', params)
肖超群 authored
226
//配盘
pengyongcheng authored
227
export const combination = (params) => postAction('/shipment/shipmentCombination/combination', params)
228
//回传入库单
pengyongcheng authored
229
export const backErpReceipt = (params) => postAction('/receipt/receiptHeader/backErpReceipt', params)
230
//回传出库单
pengyongcheng authored
231
export const backErpShipment = (params) => postAction('/shipment/shipmentHeader/backErpShipment', params)
232
//合并出库单
pengyongcheng authored
233
export const mergeShipment = (params) => postAction('/shipment/shipmentHeader/mergeShipment', params)
李泰瑜 authored
234
//首页取值
pengyongcheng authored
235
236
237
238
239
export const deliveringAmount = (params) => postAction('/sys/home/deliveringAmount', params)
export const inventoryUtilization = (params) => postAction('/sys/home/inventoryUtilization', params)
export const inventoryStatus = (params) => postAction('/sys/home/inventoryStatus', params)
export const inventoryOverview = (params) => postAction('/sys/home/inventoryOverview', params)
export const getCommonData = (params) => postAction('/sys/home/getCommonData', params)
肖超群 authored
240
//执行AGV任务
pengyongcheng authored
241
export const executeAgv = (params) => postAction('/task/agvTask/execute?ids=' + params, params)
肖超群 authored
242
//完成AGV任务
pengyongcheng authored
243
export const completeAgv = (params) => postAction('/task/agvTask/complete?ids=' + params, params)
肖超群 authored
244
//取消AGV任务
pengyongcheng authored
245
export const cancelAgv = (params) => postAction('/task/agvTask/cancel?ids=' + params, params)
246
//修复空出数据
pengyongcheng authored
247
export const handleEmptyOut = (params) => postAction('/task/taskHeader/handleEmptyOut?id=' + params, params)
248
//修复取货错数据
pengyongcheng authored
249
export const handlePickupError = (params) => postAction('/task/taskHeader/handlePickupError?id=' + params, params)
250
//修复重入数据
pengyongcheng authored
251
export const handleDoubleIn = (params) => postAction('/task/taskHeader/handleDoubleIn?id=' + params, params)
252
//查询用户角色
pengyongcheng authored
253
export const queryWarehouse = (params) => getAction('/config/sysUserWarehouse/queryWarehouse', params)
254
//查询所有仓库
pengyongcheng authored
255
export const getAllWarehouseList = (params) => getAction('/config/warehouse/getAllWarehouseList', params)
肖超群 authored
256
//查询所有库区
pengyongcheng authored
257
export const getAllZoneList = (params) => getAction('/config/zone/getAllZoneList', params)
258
259

//入库单提交审核
pengyongcheng authored
260
export const createReceiptAuditFlow = (params) => getAction('/audit/audit/createReceiptAuditFlow', params)
261
//入库单审核
pengyongcheng authored
262
export const auditReceipt = (params) => getAction('/audit/audit/auditReceipt', params)
263
//查询审核流程进度
pengyongcheng authored
264
export const searchAuditFlow = (params) => getAction('/audit/audit/searchAuditFlow', params)
265
266
//出库单提交审核
pengyongcheng authored
267
export const createShipmentAuditFlow = (params) => getAction('/audit/audit/createShipmentAuditFlow', params)
268
//出库单审核
pengyongcheng authored
269
export const auditShipment = (params) => getAction('/audit/audit/auditShipment', params)
270
271

//查询是否开启审核流程
pengyongcheng authored
272
export const getDocumentAduitFlow = (params) => getAction('/config/parameterConfiguration/getDocumentAduitFlow', params)
273
//库位监控-快速入库
pengyongcheng authored
274
export const flatQuickReceipt = (params) => postAction('/receipt/receiveHeader/flatQuickReceipt', params)
肖超群 authored
275
//快速入库
pengyongcheng authored
276
export const quickReceipt = (params) => postAction('/task/taskHeader/quickReceipt', params)
肖超群 authored
277
//快速出库,批量快速出整托
pengyongcheng authored
278
export const shipmentInventoryHeader = (params) => postAction('/inventory/inventoryHeader/shipmentInventoryHeader', params)
肖超群 authored
279
//快速出库,批量快速出库存详情
pengyongcheng authored
280
export const shipmentInventoryDetail = (params) => postAction('/inventory/inventoryHeader/shipmentInventoryDetail', params)
281
//平库快速出库,通过库存ID
pengyongcheng authored
282
export const flatQuickShipment = (params) => postAction('/shipment/shipmentCombination/flatQuickShipment', params)
肖超群 authored
283
//呼叫入库托盘
pengyongcheng authored
284
export const callReceiptBox = (params) => postAction('/receipt/receiptHeader/callbox', params)
肖超群 authored
285
//批量呼叫入库托盘
pengyongcheng authored
286
export const batchCallReceiptBox = (params) => postAction('/receipt/receiptHeader/batchCallBox', params)
肖超群 authored
287
//呼叫出库托盘
pengyongcheng authored
288
export const callShipmentBox = (params) => postAction('/shipment/shipmentHeader/callbox', params)
肖超群 authored
289
//根据收货ID查询收货单
pengyongcheng authored
290
export const listReceiveByReceiveId = (params) => postAction('/receipt/receiveHeader/listReceiveByReceiveId', params)
肖超群 authored
291
//收货
pengyongcheng authored
292
export const receive = (params) => postAction('/receipt/receiveHeader/receive', params)
肖超群 authored
293
//全部收货
pengyongcheng authored
294
export const receiveHeader = (params) => postAction('/receipt/receiveHeader/receiveHeader?id=' + params, params)
肖超群 authored
295
//越库
pengyongcheng authored
296
export const crossDocking = (params) => postAction('/receipt/receiptHeader/crossDocking?id=' + params, params)
肖超群 authored
297
//收货详情转质检
pengyongcheng authored
298
export const receiveDetailToQuality = (params) => postAction('/receipt/receiveHeader/receiveDetailToQuality?id=' + params, params)
肖超群 authored
299
//入库质检
pengyongcheng authored
300
export const qualityTesting = (params) => postAction('/receipt/qualityHeader/qualityTesting', params)
肖超群 authored
301
//全部转质检
pengyongcheng authored
302
export const receiveHeaderToQuality = (params) => postAction('/receipt/receiveHeader/receiveHeaderToQuality?id=' + params, params)
肖超群 authored
303
//生成库内质检任务
pengyongcheng authored
304
export const qualityInventoryDetail = (params) => postAction('/inventory/inventoryHeader/qualityInventoryDetail', params)
肖超群 authored
305
//质检登记
pengyongcheng authored
306
export const qualityRegister = (params) => postAction('/task/taskHeader/qualityRegister', params)
肖超群 authored
307
//创建出库任务,AGV去接
pengyongcheng authored
308
export const createShipmentTaskByAgv = (params) => postAction('/shipment/shipmentCombination/createShipmentTaskByAgv', params)
肖超群 authored
309
//批量创建出库任务,AGV去接
pengyongcheng authored
310
export const createBatchShipmentTaskByAgv = (params) => postAction('/shipment/shipmentCombination/createBatchShipmentTaskByAgv', params)
肖超群 authored
311
//创建出库任务和AGV去接
pengyongcheng authored
312
export const createShipmentTaskAndAgvTask = (params) => postAction('/shipment/shipmentCombination/createShipmentTaskAndAgvTask', params)
肖超群 authored
313
//完成平库出库
pengyongcheng authored
314
export const completeFlatShipment = (params) => postAction('/shipment/shipmentCombination/completeFlatShipment', params)
315
//平库入库
pengyongcheng authored
316
export const flatReceipt = (params) => postAction('/receipt/receiveHeader/flatReceipt', params)
肖超群 authored
317
//生成序列号物料
pengyongcheng authored
318
export const createSerialMaterial = (params) => postAction('/config/materialSn/batchAdd', params)
肖超群 authored
319
//合托
pengyongcheng authored
320
export const batchCreateCheckOut = (params) => postAction('/task/taskHeader/batchCreateCheckOut', params)
肖超群 authored
321
//增加库存
pengyongcheng authored
322
export const addInventoryDetail = (params) => postAction('/inventory/inventoryDetail/addInventoryDetail', params)
肖超群 authored
323
//增加库存数量
pengyongcheng authored
324
export const increaseInventoryDetail = (params) => postAction('/inventory/inventoryDetail/increaseInventoryDetail', params)
肖超群 authored
325
//扣减库存数量
pengyongcheng authored
326
export const reduceInventoryDetail = (params) => postAction('/inventory/inventoryDetail/reduceInventoryDetail', params)
xcq authored
327
// 根据库位编码查询库存详情
pengyongcheng authored
328
export const getInventoryDetailByLocationCode = (params) => getAction('/inventory/inventoryDetail/list', params)
肖超群 authored
329
//快速出库
pengyongcheng authored
330
export const quickShipment = (params) => postAction('/task/taskHeader/quickShipment', params)
肖超群 authored
331
//出库复核
pengyongcheng authored
332
export const shipmentCheck = (params) => postAction('/shipment/shipmentCombination/shipmentCheck', params)
肖超群 authored
333
//查询盘点明细子表
pengyongcheng authored
334
export const listCycleDetailChildByDetailId = (params) => postAction('/cycleCountDetail/cycleCountDetail/listCycleDetailChildByDetailId', params)
肖超群 authored
335
//平库上架
pengyongcheng authored
336
export const flatOnShell = (params) => postAction('/receipt/receiveHeader/flatOnShell', params)
337
//查询库存详情
pengyongcheng authored
338
export const queryInventoryDetailListByMainIds = (params) => postAction('/inventory/inventoryDetail/getInventoryDetailListByInventoryDetailIds', params)
339
//根据出库单头ID查询出库单详情
pengyongcheng authored
340
export const getInventoryByShipmentDetail = (params) => postAction('/shipment/shipmentHeader/getInventoryByShipmentDetail', params)
肖超群 authored
341
//指定库位
pengyongcheng authored
342
export const allocation = (params) => postAction('/receipt/receiptContainerHeader/allocation', params)
343
//添加BOM
pengyongcheng authored
344
export const addBomHeader = (params) => postAction('/config/bomHeader/addBomHeader', params)
肖超群 authored
345
肖超群 authored
346
347
348
349
350
// 中转HTTP请求
export const transitRESTful = {
  get: (url, parameter) => getAction(getTransitURL(url), parameter),
  post: (url, parameter) => postAction(getTransitURL(url), parameter),
  put: (url, parameter) => putAction(getTransitURL(url), parameter),
pengyongcheng authored
351
  http: (url, parameter) => httpAction(getTransitURL(url), parameter)
肖超群 authored
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
}

export {
  // imgView,
  // doMian,
  addRole,
  editRole,
  checkRoleCode,
  addUser,
  editUser,
  queryUserRole,
  getUserList,
  queryall,
  frozenBatch,
  checkOnlyUser,
  changePassword,
368
  systemActivation,
肖超群 authored
369
370
371
372
373
374
375
  getPermissionList,
  addPermission,
  editPermission,
  queryTreeList,
  queryListAsync,
  queryRolePermission,
  saveRolePermission,
pengyongcheng authored
376
  queryRoleDataPermission,
肖超群 authored
377
378
379
380
  queryPermissionsByUser,
  loadAllRoleIds,
  getPermissionRuleList,
  queryPermissionRule,
pengyongcheng authored
381
382
383
  addDataPermission,
  editDataPermission,
  getDataPermissionList,
肖超群 authored
384
  queryDepartTreeList,
pengyongcheng authored
385
  queryDataTreeList,
肖超群 authored
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
  queryDepartTreeSync,
  queryIdTree,
  queryParentName,
  searchByKeywords,
  deleteByDepartId,
  deleteLog,
  deleteLogList,
  addDict,
  editDict,
  treeList,
  addDictItem,
  editDictItem,
  doReleaseData,
  doReovkeData,
  getLoginfo,
  getVisitInfo,
  queryUserByDepId,
  duplicateCheck,
  queryTreeListForRole,
  getSystemMenuList,
  getSystemSubmenu,
  getSystemSubmenuBatch,
  loadCategoryData,
  checkRuleByCode,
  queryDepartPermission,
  saveDepartPermission,
  queryTreeListForDeptRole,
  queryDeptRolePermission,
  saveDeptRolePermission,
  queryMyDepartTreeList,
  getUserNoticeInfo,
417
418
  getDictItemsFromCache,
  getApiNameList
肖超群 authored
419
}