|
|
|
@ -37,31 +37,43 @@ public class WarehouseIndexController {
|
|
|
|
|
@ApiOperation(value = "开单数据", notes = "传入indexDTO") |
|
|
|
|
public R openOrderData(@RequestBody IndexDTO indexDTO) { |
|
|
|
|
String method = "###########openOrderData: "; |
|
|
|
|
log.info(method+"indexDTO={}",indexDTO); |
|
|
|
|
log.info(method + "indexDTO={}", indexDTO); |
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
List<Long> warehouseIds = new ArrayList<>(); |
|
|
|
|
//当前登录人选择的仓库
|
|
|
|
|
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse(); |
|
|
|
|
if(Objects.isNull(myCurrentWarehouse)){ |
|
|
|
|
List<BasicdataWarehouseEntity> myWatchWarehouse = warehouseClient.getMyWatchWarehouse(); |
|
|
|
|
myWatchWarehouse.forEach(warehouseEntity -> { |
|
|
|
|
warehouseIds.add(warehouseEntity.getId()); |
|
|
|
|
}); |
|
|
|
|
}else{ |
|
|
|
|
warehouseIds.add(myCurrentWarehouse.getId()); |
|
|
|
|
} |
|
|
|
|
try { |
|
|
|
|
List<Long> warehouseIds = warehouseClient.getWarehouseIds(); |
|
|
|
|
indexDTO.setWarehouseIds(warehouseIds); |
|
|
|
|
|
|
|
|
|
//查询订制品打托列表
|
|
|
|
|
IndexOpenOrderDataVO indexOpenOrderDataVO = warehouseIndexService.openOrderData(indexDTO); |
|
|
|
|
return R.data(indexOpenOrderDataVO); |
|
|
|
|
}catch (CustomerException e){ |
|
|
|
|
} 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("/openOrderDataByWarehouseId") |
|
|
|
|
@ApiOperationSupport(order = 1) |
|
|
|
|
@ApiOperation(value = "开单数据明细", notes = "传入indexDTO") |
|
|
|
|
public R openOrderDataByWarWarehouseId(@RequestBody IndexDTO indexDTO) { |
|
|
|
|
String method = "###########openOrderDataByWarWarehouseId: "; |
|
|
|
|
log.info(method + "indexDTO={}", indexDTO); |
|
|
|
|
|
|
|
|
|
try { |
|
|
|
|
List<Long> warehouseIds = warehouseClient.getWarehouseIds(); |
|
|
|
|
indexDTO.setWarehouseIds(warehouseIds); |
|
|
|
|
//查询订制品打托列表
|
|
|
|
|
List<IndexOpenOrderDataByWarehouseVO> indexOpenOrderDataVO = warehouseIndexService.openOrderDataByWarWarehouseId(indexDTO); |
|
|
|
|
return R.data(indexOpenOrderDataVO); |
|
|
|
|
} 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,"系统异常,联系管理员"); |
|
|
|
|
return R.fail(e.code, e.message); |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
log.error(method + "系统异常,联系管理员", e); |
|
|
|
|
return R.fail(500, "系统异常,联系管理员"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -72,31 +84,20 @@ public class WarehouseIndexController {
|
|
|
|
|
@ApiOperation(value = "开单收入数据", notes = "传入indexDTO") |
|
|
|
|
public R openOrderIncome(@RequestBody IndexDTO indexDTO) { |
|
|
|
|
String method = "###########openOrderIncome: "; |
|
|
|
|
log.info(method+"indexDTO={}",indexDTO); |
|
|
|
|
log.info(method + "indexDTO={}", indexDTO); |
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
List<Long> warehouseIds = new ArrayList<>(); |
|
|
|
|
//当前登录人选择的仓库
|
|
|
|
|
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse(); |
|
|
|
|
if(Objects.isNull(myCurrentWarehouse)){ |
|
|
|
|
List<BasicdataWarehouseEntity> myWatchWarehouse = warehouseClient.getMyWatchWarehouse(); |
|
|
|
|
myWatchWarehouse.forEach(warehouseEntity -> { |
|
|
|
|
warehouseIds.add(warehouseEntity.getId()); |
|
|
|
|
}); |
|
|
|
|
}else{ |
|
|
|
|
warehouseIds.add(myCurrentWarehouse.getId()); |
|
|
|
|
} |
|
|
|
|
try { |
|
|
|
|
List<Long> warehouseIds = warehouseClient.getWarehouseIds(); |
|
|
|
|
indexDTO.setWarehouseIds(warehouseIds); |
|
|
|
|
|
|
|
|
|
//查询订制品打托列表
|
|
|
|
|
IndexOpenOrderIncomeVO indexOpenOrderIncomeVO = warehouseIndexService.openOrderIncome(indexDTO); |
|
|
|
|
return R.data(indexOpenOrderIncomeVO); |
|
|
|
|
}catch (CustomerException e){ |
|
|
|
|
} 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,"系统异常,联系管理员"); |
|
|
|
|
return R.fail(e.code, e.message); |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
log.error(method + "系统异常,联系管理员", e); |
|
|
|
|
return R.fail(500, "系统异常,联系管理员"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -107,31 +108,45 @@ public class WarehouseIndexController {
|
|
|
|
|
@ApiOperation(value = "当前在库数据", notes = "传入indexDTO") |
|
|
|
|
public R handOrderData(@RequestBody IndexDTO indexDTO) { |
|
|
|
|
String method = "###########handOrderData: "; |
|
|
|
|
log.info(method+"indexDTO={}",indexDTO); |
|
|
|
|
log.info(method + "indexDTO={}", indexDTO); |
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
List<Long> warehouseIds = new ArrayList<>(); |
|
|
|
|
try { |
|
|
|
|
//当前登录人选择的仓库
|
|
|
|
|
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse(); |
|
|
|
|
if(Objects.isNull(myCurrentWarehouse)){ |
|
|
|
|
List<BasicdataWarehouseEntity> myWatchWarehouse = warehouseClient.getMyWatchWarehouse(); |
|
|
|
|
myWatchWarehouse.forEach(warehouseEntity -> { |
|
|
|
|
warehouseIds.add(warehouseEntity.getId()); |
|
|
|
|
}); |
|
|
|
|
}else{ |
|
|
|
|
warehouseIds.add(myCurrentWarehouse.getId()); |
|
|
|
|
} |
|
|
|
|
List<Long> warehouseIds = warehouseClient.getWarehouseIds(); |
|
|
|
|
indexDTO.setWarehouseIds(warehouseIds); |
|
|
|
|
|
|
|
|
|
//查询订制品打托列表
|
|
|
|
|
IndexHandOrderDataVO indexHandOrderDataVO = warehouseIndexService.handOrderData(indexDTO); |
|
|
|
|
return R.data(indexHandOrderDataVO); |
|
|
|
|
}catch (CustomerException e){ |
|
|
|
|
} 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,"系统异常,联系管理员"); |
|
|
|
|
return R.fail(e.code, e.message); |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
log.error(method + "系统异常,联系管理员", e); |
|
|
|
|
return R.fail(500, "系统异常,联系管理员"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@ResponseBody |
|
|
|
|
@PostMapping("/handOrderDataByWarehouseId") |
|
|
|
|
@ApiOperationSupport(order = 1) |
|
|
|
|
@ApiOperation(value = "当前在库数据明细", notes = "传入indexDTO") |
|
|
|
|
public R handOrderDataByWarehouseId(@RequestBody IndexDTO indexDTO) { |
|
|
|
|
String method = "###########handOrderDataByWarehouseId: "; |
|
|
|
|
log.info(method + "indexDTO={}", indexDTO); |
|
|
|
|
|
|
|
|
|
try { |
|
|
|
|
//当前登录人选择的仓库
|
|
|
|
|
List<Long> warehouseIds = warehouseClient.getWarehouseIds(); |
|
|
|
|
indexDTO.setWarehouseIds(warehouseIds); |
|
|
|
|
//查询订制品打托列表
|
|
|
|
|
List<IndexHandOrderDataByWarehouseIdVO> indexHandOrderDataByWarehouseIdVO = warehouseIndexService.handOrderDataByWarehouseId(indexDTO); |
|
|
|
|
return R.data(indexHandOrderDataByWarehouseIdVO); |
|
|
|
|
} 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, "系统异常,联系管理员"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -141,31 +156,45 @@ public class WarehouseIndexController {
|
|
|
|
|
@ApiOperation(value = "库位数据", notes = "传入indexDTO") |
|
|
|
|
public R allocationData(@RequestBody IndexDTO indexDTO) { |
|
|
|
|
String method = "###########allocationData: "; |
|
|
|
|
log.info(method+"indexDTO={}",indexDTO); |
|
|
|
|
log.info(method + "indexDTO={}", indexDTO); |
|
|
|
|
|
|
|
|
|
try { |
|
|
|
|
List<Long> warehouseIds = warehouseClient.getWarehouseIds(); |
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
List<Long> warehouseIds = new ArrayList<>(); |
|
|
|
|
//当前登录人选择的仓库
|
|
|
|
|
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse(); |
|
|
|
|
if(Objects.isNull(myCurrentWarehouse)){ |
|
|
|
|
List<BasicdataWarehouseEntity> myWatchWarehouse = warehouseClient.getMyWatchWarehouse(); |
|
|
|
|
myWatchWarehouse.forEach(warehouseEntity -> { |
|
|
|
|
warehouseIds.add(warehouseEntity.getId()); |
|
|
|
|
}); |
|
|
|
|
}else{ |
|
|
|
|
warehouseIds.add(myCurrentWarehouse.getId()); |
|
|
|
|
} |
|
|
|
|
indexDTO.setWarehouseIds(warehouseIds); |
|
|
|
|
|
|
|
|
|
//查询订制品打托列表
|
|
|
|
|
IndexAllocationDataVO indexAllocationDataVO = warehouseIndexService.allocationData(indexDTO); |
|
|
|
|
return R.data(indexAllocationDataVO); |
|
|
|
|
}catch (CustomerException e){ |
|
|
|
|
} 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("/allocationDataByWarehouseId") |
|
|
|
|
@ApiOperationSupport(order = 1) |
|
|
|
|
@ApiOperation(value = "库位数据", notes = "传入indexDTO") |
|
|
|
|
public R allocationDataByWarehouseId(@RequestBody IndexDTO indexDTO) { |
|
|
|
|
String method = "###########allocationDataByWarehouseId: "; |
|
|
|
|
log.info(method + "indexDTO={}", indexDTO); |
|
|
|
|
|
|
|
|
|
try { |
|
|
|
|
List<Long> warehouseIds = warehouseClient.getWarehouseIds(); |
|
|
|
|
indexDTO.setWarehouseIds(warehouseIds); |
|
|
|
|
//查询订制品打托列表
|
|
|
|
|
List<IndexAllocationDataByWarehouseIdVO> allocationDataByWarehouseIdList = warehouseIndexService.allocationDataByWarehouseId(indexDTO); |
|
|
|
|
return R.data(allocationDataByWarehouseIdList); |
|
|
|
|
} 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,"系统异常,联系管理员"); |
|
|
|
|
return R.fail(e.code, e.message); |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
log.error(method + "系统异常,联系管理员", e); |
|
|
|
|
return R.fail(500, "系统异常,联系管理员"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -175,31 +204,22 @@ public class WarehouseIndexController {
|
|
|
|
|
@ApiOperation(value = "干线待发运数据", notes = "传入indexDTO") |
|
|
|
|
public R trunklineHandOrderData(@RequestBody IndexDTO indexDTO) { |
|
|
|
|
String method = "###########trunklineHandOrderData: "; |
|
|
|
|
log.info(method+"indexDTO={}",indexDTO); |
|
|
|
|
log.info(method + "indexDTO={}", indexDTO); |
|
|
|
|
|
|
|
|
|
try { |
|
|
|
|
List<Long> warehouseIds = warehouseClient.getWarehouseIds(); |
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
List<Long> warehouseIds = new ArrayList<>(); |
|
|
|
|
//当前登录人选择的仓库
|
|
|
|
|
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse(); |
|
|
|
|
if(Objects.isNull(myCurrentWarehouse)){ |
|
|
|
|
List<BasicdataWarehouseEntity> myWatchWarehouse = warehouseClient.getMyWatchWarehouse(); |
|
|
|
|
myWatchWarehouse.forEach(warehouseEntity -> { |
|
|
|
|
warehouseIds.add(warehouseEntity.getId()); |
|
|
|
|
}); |
|
|
|
|
}else{ |
|
|
|
|
warehouseIds.add(myCurrentWarehouse.getId()); |
|
|
|
|
} |
|
|
|
|
indexDTO.setWarehouseIds(warehouseIds); |
|
|
|
|
|
|
|
|
|
//查询订制品打托列表
|
|
|
|
|
IndexTrunklineHandOrderDataVO indexTrunklineHandOrderDataVO = warehouseIndexService.trunklineHandOrderData(indexDTO); |
|
|
|
|
return R.data(indexTrunklineHandOrderDataVO); |
|
|
|
|
}catch (CustomerException e){ |
|
|
|
|
} 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,"系统异常,联系管理员"); |
|
|
|
|
return R.fail(e.code, e.message); |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
log.error(method + "系统异常,联系管理员", e); |
|
|
|
|
return R.fail(500, "系统异常,联系管理员"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -209,31 +229,21 @@ public class WarehouseIndexController {
|
|
|
|
|
@ApiOperation(value = "干线车次数据", notes = "传入indexDTO") |
|
|
|
|
public R trunklineCarsData(@RequestBody IndexDTO indexDTO) { |
|
|
|
|
String method = "###########trunklineCarsData: "; |
|
|
|
|
log.info(method+"indexDTO={}",indexDTO); |
|
|
|
|
log.info(method + "indexDTO={}", indexDTO); |
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
List<Long> warehouseIds = new ArrayList<>(); |
|
|
|
|
try { |
|
|
|
|
List<Long> warehouseIds = warehouseClient.getWarehouseIds(); |
|
|
|
|
//当前登录人选择的仓库
|
|
|
|
|
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse(); |
|
|
|
|
if(Objects.isNull(myCurrentWarehouse)){ |
|
|
|
|
List<BasicdataWarehouseEntity> myWatchWarehouse = warehouseClient.getMyWatchWarehouse(); |
|
|
|
|
myWatchWarehouse.forEach(warehouseEntity -> { |
|
|
|
|
warehouseIds.add(warehouseEntity.getId()); |
|
|
|
|
}); |
|
|
|
|
}else{ |
|
|
|
|
warehouseIds.add(myCurrentWarehouse.getId()); |
|
|
|
|
} |
|
|
|
|
indexDTO.setWarehouseIds(warehouseIds); |
|
|
|
|
|
|
|
|
|
//查询订制品打托列表
|
|
|
|
|
IndexTrunklineCarsDataVO indexTrunklineCarsDataVO = warehouseIndexService.trunklineCarsData(indexDTO); |
|
|
|
|
return R.data(indexTrunklineCarsDataVO); |
|
|
|
|
}catch (CustomerException e){ |
|
|
|
|
} 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,"系统异常,联系管理员"); |
|
|
|
|
return R.fail(e.code, e.message); |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
log.error(method + "系统异常,联系管理员", e); |
|
|
|
|
return R.fail(500, "系统异常,联系管理员"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -243,18 +253,18 @@ public class WarehouseIndexController {
|
|
|
|
|
@ApiOperation(value = "卸车异常数据", notes = "传入indexDTO") |
|
|
|
|
public R unloadAbnormalData(@RequestBody IndexDTO indexDTO) { |
|
|
|
|
String method = "###########unloadAbnormalData: "; |
|
|
|
|
log.info(method+"indexDTO={}",indexDTO); |
|
|
|
|
log.info(method + "indexDTO={}", indexDTO); |
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
try { |
|
|
|
|
List<Long> warehouseIds = new ArrayList<>(); |
|
|
|
|
//当前登录人选择的仓库
|
|
|
|
|
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse(); |
|
|
|
|
if(Objects.isNull(myCurrentWarehouse)){ |
|
|
|
|
if (Objects.isNull(myCurrentWarehouse)) { |
|
|
|
|
List<BasicdataWarehouseEntity> myWatchWarehouse = warehouseClient.getMyWatchWarehouse(); |
|
|
|
|
myWatchWarehouse.forEach(warehouseEntity -> { |
|
|
|
|
warehouseIds.add(warehouseEntity.getId()); |
|
|
|
|
}); |
|
|
|
|
}else{ |
|
|
|
|
} else { |
|
|
|
|
warehouseIds.add(myCurrentWarehouse.getId()); |
|
|
|
|
} |
|
|
|
|
indexDTO.setWarehouseIds(warehouseIds); |
|
|
|
@ -262,48 +272,36 @@ public class WarehouseIndexController {
|
|
|
|
|
//查询订制品打托列表
|
|
|
|
|
IndexUnloadAbnormalDataVO indexUnloadAbnormalDataVO = warehouseIndexService.unloadAbnormalData(indexDTO); |
|
|
|
|
return R.data(indexUnloadAbnormalDataVO); |
|
|
|
|
}catch (CustomerException e){ |
|
|
|
|
} 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,"系统异常,联系管理员"); |
|
|
|
|
return R.fail(e.code, e.message); |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
log.error(method + "系统异常,联系管理员", e); |
|
|
|
|
return R.fail(500, "系统异常,联系管理员"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ResponseBody |
|
|
|
|
@PostMapping("/deliveryData") |
|
|
|
|
@ApiOperationSupport(order = 1) |
|
|
|
|
@ApiOperation(value = "卸车异常数据", notes = "传入indexDTO") |
|
|
|
|
public R deliveryData(@RequestBody IndexDTO indexDTO) { |
|
|
|
|
String method = "###########unloadAbnormalData: "; |
|
|
|
|
log.info(method+"indexDTO={}",indexDTO); |
|
|
|
|
try{ |
|
|
|
|
List<Long> warehouseIds = new ArrayList<>(); |
|
|
|
|
//当前登录人选择的仓库
|
|
|
|
|
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse(); |
|
|
|
|
if(Objects.isNull(myCurrentWarehouse)){ |
|
|
|
|
List<BasicdataWarehouseEntity> myWatchWarehouse = warehouseClient.getMyWarehouseList(); |
|
|
|
|
if (!myWatchWarehouse.isEmpty()) { |
|
|
|
|
warehouseIds = myWatchWarehouse.stream().map(BasicdataWarehouseEntity::getId).collect(Collectors.toList()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}else{ |
|
|
|
|
warehouseIds.add(myCurrentWarehouse.getId()); |
|
|
|
|
} |
|
|
|
|
log.info(method + "indexDTO={}", indexDTO); |
|
|
|
|
try { |
|
|
|
|
List<Long> warehouseIds = warehouseClient.getWarehouseIds(); |
|
|
|
|
indexDTO.setWarehouseIds(warehouseIds); |
|
|
|
|
|
|
|
|
|
//查询订制品打托列表
|
|
|
|
|
List<IndexDeliveryDataVO> indexDeliveryDataVO = warehouseIndexService.deliveryData(indexDTO); |
|
|
|
|
return R.data(indexDeliveryDataVO); |
|
|
|
|
}catch (CustomerException e){ |
|
|
|
|
} 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,"系统异常,联系管理员"); |
|
|
|
|
return R.fail(e.code, e.message); |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
log.error(method + "系统异常,联系管理员", e); |
|
|
|
|
return R.fail(500, "系统异常,联系管理员"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -314,31 +312,19 @@ public class WarehouseIndexController {
|
|
|
|
|
@ApiOperation(value = "卸车异常数据", notes = "传入indexDTO") |
|
|
|
|
public R signforData(@RequestBody IndexDTO indexDTO) { |
|
|
|
|
String method = "###########unloadAbnormalData: "; |
|
|
|
|
log.info(method+"indexDTO={}",indexDTO); |
|
|
|
|
try{ |
|
|
|
|
List<Long> warehouseIds = new ArrayList<>(); |
|
|
|
|
//当前登录人选择的仓库
|
|
|
|
|
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse(); |
|
|
|
|
if(Objects.isNull(myCurrentWarehouse)){ |
|
|
|
|
List<BasicdataWarehouseEntity> myWatchWarehouse = warehouseClient.getMyWarehouseList(); |
|
|
|
|
if (!myWatchWarehouse.isEmpty()) { |
|
|
|
|
warehouseIds = myWatchWarehouse.stream().map(BasicdataWarehouseEntity::getId).collect(Collectors.toList()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}else{ |
|
|
|
|
warehouseIds.add(myCurrentWarehouse.getId()); |
|
|
|
|
} |
|
|
|
|
log.info(method + "indexDTO={}", indexDTO); |
|
|
|
|
try { |
|
|
|
|
List<Long> warehouseIds = warehouseClient.getWarehouseIds(); |
|
|
|
|
indexDTO.setWarehouseIds(warehouseIds); |
|
|
|
|
|
|
|
|
|
//查询订制品打托列表
|
|
|
|
|
List<IndexSignforDataVO> indexDeliveryDataVO = warehouseIndexService.signforData(indexDTO); |
|
|
|
|
return R.data(indexDeliveryDataVO); |
|
|
|
|
}catch (CustomerException e){ |
|
|
|
|
} 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,"系统异常,联系管理员"); |
|
|
|
|
return R.fail(e.code, e.message); |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
log.error(method + "系统异常,联系管理员", e); |
|
|
|
|
return R.fail(500, "系统异常,联系管理员"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|