1. 删除库位锁定, 因入库任务由场内wms下发生成, 故不存在库位竞争 2. 修改入库订单生成逻辑, 由wcs_require接口生成, 改为由ycwms接口生成, 加入FC载具号生成订单的绿色通道, 从而使场内wms的空托空盘入库任务状态闭环 新需求: 1. 修改单机出库: 先查询库存, 后勾选出库
31 lines
584 B
JavaScript
31 lines
584 B
JavaScript
import request from "@/http/request";
|
|
|
|
const loginWithoutAuth = (params) => {
|
|
return request({
|
|
url: '/wms/login/loginWithoutAuth',
|
|
method: 'post',
|
|
data: params
|
|
})
|
|
}
|
|
|
|
const loginWithAuth = (params) => {
|
|
return request({
|
|
url: '/wms/login/loginWithAuth',
|
|
method: 'post',
|
|
data: params
|
|
})
|
|
}
|
|
|
|
const getUser = (params) => {
|
|
return request({
|
|
url: '/wms/user/getUser',
|
|
method: 'post',
|
|
data: params
|
|
})
|
|
}
|
|
|
|
export {
|
|
loginWithoutAuth,
|
|
loginWithAuth,
|
|
getUser
|
|
} |