|
|
|
@ -143,6 +143,47 @@ public class WarehouseUpdownTypeApiController {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ResponseBody |
|
|
|
|
@PostMapping("/orderUpshelfDetailByAllocationId") |
|
|
|
|
@ApiOperationSupport(order = 1) |
|
|
|
|
@ApiOperation(value = "已上架订单详情", notes = "传入trayTypeDTO") |
|
|
|
|
public R orderUpshelfDetailByAllocationId(@RequestBody UpdownTypeDTO updownTypeDTO ) { |
|
|
|
|
String method = "###########orderUpshelfDetailByAllocationId: "; |
|
|
|
|
log.info(method + "已上架订单详情 updownTypeDTO={}", updownTypeDTO); |
|
|
|
|
String orderCode = updownTypeDTO.getOrderCode(); |
|
|
|
|
Long allocationId = updownTypeDTO.getAllocationId(); |
|
|
|
|
try{ |
|
|
|
|
|
|
|
|
|
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse(); |
|
|
|
|
if(Objects.isNull(myCurrentWarehouse)){ |
|
|
|
|
log.warn(method+"仓库信息不能为空"); |
|
|
|
|
return R.fail(403,"仓库信息不能为空"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if(Objects.isNull(allocationId)){ |
|
|
|
|
log.warn(method+"库位id为空 allocationId={}",allocationId); |
|
|
|
|
return R.fail(403,"库位id为空"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if(StringUtil.isBlank(orderCode)){ |
|
|
|
|
log.warn(method+"订单编码不能为空 orderCode={}",orderCode); |
|
|
|
|
return R.fail(403,"订单编码不能为空"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//查询该库位的货物信息
|
|
|
|
|
List<String> orderPackageCodes = warehouseUpdownTypeService.orderUpshelfDetailByAllocationId(orderCode,allocationId,myCurrentWarehouse.getId()); |
|
|
|
|
return R.data(orderPackageCodes); |
|
|
|
|
}catch (CustomerException e){ |
|
|
|
|
log.warn(e.message); |
|
|
|
|
return R.fail(e.code,e.message); |
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.error(method+"系统异常,联系管理员",e); |
|
|
|
|
return R.fail(500,"系统异常,联系管理员"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ResponseBody |
|
|
|
|
@PostMapping("/upShelfOrder") |
|
|
|
|
@ApiOperationSupport(order = 1) |
|
|
|
|