|
|
@ -102,19 +102,19 @@ export function updateUserPwd(oldPassword, newPassword) { |
|
|
|
* @param {*} |
|
|
|
* |
|
|
|
*/ |
|
|
|
export function getWarehouseCodeList(pageNo,pageSize) { |
|
|
|
export function getWarehouseCodeList(pageNo, pageSize) { |
|
|
|
return request({ |
|
|
|
url: baseApi + "/wms/warehouse/page?pageNo="+pageNo+"&pageSize="+pageSize, |
|
|
|
url: baseApi + "/wms/warehouse/page?pageNo=" + pageNo + "&pageSize=" + pageSize, |
|
|
|
method: "get", |
|
|
|
data: {}, |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
//获取产品标签信息inventorylabel
|
|
|
|
export function getInventoryLabel (code){ |
|
|
|
|
|
|
|
export function getInventoryLabel(code) { |
|
|
|
|
|
|
|
return request({ |
|
|
|
url: baseApi + "/api/pda/label/inventorylabel/by-code?code="+code, |
|
|
|
url: baseApi + "/api/pda/label/inventorylabel/by-code?code=" + code, |
|
|
|
method: "get", |
|
|
|
data: {}, |
|
|
|
}); |
|
|
@ -125,9 +125,9 @@ export function getInventoryLabel (code){ |
|
|
|
* @param {*} |
|
|
|
* |
|
|
|
*/ |
|
|
|
export function getMessageList(pageNo,pageSize) { |
|
|
|
export function getMessageList(pageNo, pageSize) { |
|
|
|
return request({ |
|
|
|
url: baseApi + "/system/notify-message/my-page?pageNo="+pageNo+"&pageSize="+pageSize, |
|
|
|
url: baseApi + "/system/notify-message/my-page?pageNo=" + pageNo + "&pageSize=" + pageSize, |
|
|
|
method: "get", |
|
|
|
data: {}, |
|
|
|
}); |
|
|
@ -140,7 +140,7 @@ export function getMessageList(pageNo,pageSize) { |
|
|
|
*/ |
|
|
|
export function setMessageUpdateRead(ids) { |
|
|
|
return request({ |
|
|
|
url: baseApi + "/system/notify-message/update-read?ids="+ids, |
|
|
|
url: baseApi + "/system/notify-message/update-read?ids=" + ids, |
|
|
|
method: "put", |
|
|
|
data: {}, |
|
|
|
}); |
|
|
@ -990,7 +990,16 @@ export function inspectJobSubmit(params) { |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
//根据检验记录单号创建上架申请
|
|
|
|
export function createPutAwayRequest(number) { |
|
|
|
return request({ |
|
|
|
url: baseApi + "/wms/inspect-record-main/createPutAwayRequest?number=" + number, |
|
|
|
method: "post", |
|
|
|
data: {}, |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
* 采购上架 任务 |
|
|
|
* status 任务状态 |
|
|
@ -1984,7 +1993,7 @@ export function productPutawayJobSubmit(params) { |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -3625,5 +3634,4 @@ export function getMainMessage() { |
|
|
|
method: "get", |
|
|
|
data: {}, |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
} |