|
|
|
@ -5,6 +5,7 @@ import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
|
|
|
|
|
import com.logpm.basicdata.entity.BasicdataWarehouseEntity; |
|
|
|
|
import com.logpm.basicdata.feign.IBasicdataWarehouseClient; |
|
|
|
|
import com.logpm.trunkline.dto.AdvanceDTO; |
|
|
|
|
import com.logpm.trunkline.dto.OpenLabelDTO; |
|
|
|
|
import com.logpm.trunkline.dto.OpenOrderDTO; |
|
|
|
|
import com.logpm.trunkline.dto.WaybillDetailDTO; |
|
|
|
|
import com.logpm.trunkline.service.IOpenOrderService; |
|
|
|
@ -18,6 +19,7 @@ import org.springblade.common.exception.CustomerException;
|
|
|
|
|
import org.springblade.core.tool.api.R; |
|
|
|
|
import org.springblade.core.tool.utils.StringUtil; |
|
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
|
import org.springframework.web.multipart.MultipartFile; |
|
|
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
|
import java.util.List; |
|
|
|
@ -752,4 +754,304 @@ public class OpenOrderController {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//--------------暂存单 导入功能
|
|
|
|
|
|
|
|
|
|
@ResponseBody |
|
|
|
|
@PostMapping("/openLabel") |
|
|
|
|
@ApiOperationSupport(order = 1) |
|
|
|
|
@ApiOperation(value = "开标签", notes = "传入openOrderDTO") |
|
|
|
|
public R openLabel(@RequestBody OpenLabelDTO openLabelDTO) { |
|
|
|
|
String method = "############openLabel: "; |
|
|
|
|
log.info(method + "请求参数{}", openLabelDTO); |
|
|
|
|
try{ |
|
|
|
|
|
|
|
|
|
//当前登录人选择的仓库
|
|
|
|
|
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse(); |
|
|
|
|
if(Objects.isNull(myCurrentWarehouse)){ |
|
|
|
|
log.warn(method+"仓库信息为空 myCurrentWarehouse={}",myCurrentWarehouse); |
|
|
|
|
return R.fail(403,"仓库信息为空"); |
|
|
|
|
} |
|
|
|
|
openLabelDTO.setWarehouseId(myCurrentWarehouse.getId()); |
|
|
|
|
openLabelDTO.setWarehouseName(myCurrentWarehouse.getName()); |
|
|
|
|
|
|
|
|
|
//验证开单参数是否正确
|
|
|
|
|
openLabelParamVerify(openLabelDTO); |
|
|
|
|
|
|
|
|
|
return openOrderService.openLabel(openLabelDTO); |
|
|
|
|
}catch (CustomerException e){ |
|
|
|
|
log.error(e.message,e); |
|
|
|
|
return R.fail(e.code,e.message); |
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.error(method+"系统异常",e); |
|
|
|
|
return R.fail(500,"系统异常"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void openLabelParamVerify(OpenLabelDTO openLabelDTO) { |
|
|
|
|
String method = "#############openLabelParamVerify: "; |
|
|
|
|
log.info(method+"验证开标签数据"); |
|
|
|
|
String orderCode = openLabelDTO.getOrderCode(); |
|
|
|
|
if(StringUtil.isBlank(orderCode)){ |
|
|
|
|
log.warn(method+"订单号为空 orderCode={}",orderCode); |
|
|
|
|
throw new CustomerException(405,"订单号为空"); |
|
|
|
|
} |
|
|
|
|
Integer totalNumber = openLabelDTO.getTotalNumber(); |
|
|
|
|
if(totalNumber == 0){ |
|
|
|
|
log.warn(method+"总数量不正确 totalNumber={}",totalNumber); |
|
|
|
|
throw new CustomerException(405,"总数量不正确"); |
|
|
|
|
} |
|
|
|
|
String firsts = openLabelDTO.getFirsts(); |
|
|
|
|
if(StringUtil.isBlank(firsts)){ |
|
|
|
|
log.warn(method+"一级品类为空 firsts={}",firsts); |
|
|
|
|
throw new CustomerException(405,"一级品类为空"); |
|
|
|
|
} |
|
|
|
|
String brand = openLabelDTO.getBrand(); |
|
|
|
|
if(StringUtil.isBlank(brand)){ |
|
|
|
|
log.warn(method+"品牌为空 brand={}",brand); |
|
|
|
|
throw new CustomerException(405,"品牌为空"); |
|
|
|
|
} |
|
|
|
|
String dealerName = openLabelDTO.getDealerName(); |
|
|
|
|
if(StringUtil.isBlank(dealerName)){ |
|
|
|
|
log.warn(method+"商场为空 dealerName={}",dealerName); |
|
|
|
|
throw new CustomerException(405,"商场为空"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
String customerName = openLabelDTO.getCustomerName(); |
|
|
|
|
if(StringUtil.isBlank(customerName)){ |
|
|
|
|
log.warn(method+"收货人为空 customerName={}",customerName); |
|
|
|
|
throw new CustomerException(405,"收货人为空"); |
|
|
|
|
} |
|
|
|
|
String customerPhone = openLabelDTO.getCustomerPhone(); |
|
|
|
|
if(StringUtil.isBlank(customerPhone)){ |
|
|
|
|
log.warn(method+"收货人电话为空 customerPhone={}",customerPhone); |
|
|
|
|
throw new CustomerException(405,"收货人电话为空"); |
|
|
|
|
} |
|
|
|
|
String customerAddress = openLabelDTO.getCustomerAddress(); |
|
|
|
|
if(StringUtil.isBlank(customerAddress)){ |
|
|
|
|
log.warn(method+"收货人地址为空 customerAddress={}",customerAddress); |
|
|
|
|
throw new CustomerException(405,"收货人地址为空"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ResponseBody |
|
|
|
|
@PostMapping("/openLabelHasPacakage") |
|
|
|
|
@ApiOperationSupport(order = 1) |
|
|
|
|
@ApiOperation(value = "开标签有数据", notes = "传入openOrderDTO") |
|
|
|
|
public R openLabelHasPacakage(@RequestParam(value = "file") MultipartFile file) { |
|
|
|
|
String method = "############openLabelHasPacakage: "; |
|
|
|
|
log.info(method + "请求参数{}", file); |
|
|
|
|
try{ |
|
|
|
|
|
|
|
|
|
//当前登录人选择的仓库
|
|
|
|
|
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse(); |
|
|
|
|
if(Objects.isNull(myCurrentWarehouse)){ |
|
|
|
|
log.warn(method+"仓库信息为空 myCurrentWarehouse={}",myCurrentWarehouse); |
|
|
|
|
return R.fail(403,"仓库信息为空"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return openOrderService.openLabelHasPacakage(myCurrentWarehouse.getId(),myCurrentWarehouse.getName(),file); |
|
|
|
|
}catch (CustomerException e){ |
|
|
|
|
log.error(e.message,e); |
|
|
|
|
return R.fail(e.code,e.message); |
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.error(method+"系统异常",e); |
|
|
|
|
return R.fail(500,"系统异常"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ResponseBody |
|
|
|
|
@PostMapping("/importCustomizedOuPai") |
|
|
|
|
@ApiOperationSupport(order = 1) |
|
|
|
|
@ApiOperation(value = "导入欧派订制品", notes = "传入openOrderDTO") |
|
|
|
|
public R importCustomizedOuPai(@RequestParam(value = "file") MultipartFile file) { |
|
|
|
|
String method = "############importCustomizedOuPai: "; |
|
|
|
|
log.info(method + "请求参数{}", file); |
|
|
|
|
try{ |
|
|
|
|
|
|
|
|
|
//当前登录人选择的仓库
|
|
|
|
|
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse(); |
|
|
|
|
if(Objects.isNull(myCurrentWarehouse)){ |
|
|
|
|
log.warn(method+"仓库信息为空 myCurrentWarehouse={}",myCurrentWarehouse); |
|
|
|
|
return R.fail(403,"仓库信息为空"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return openOrderService.importCustomizedOuPai(myCurrentWarehouse.getId(),myCurrentWarehouse.getName(),file); |
|
|
|
|
}catch (CustomerException e){ |
|
|
|
|
log.error(e.message,e); |
|
|
|
|
return R.fail(e.code,e.message); |
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.error(method+"系统异常",e); |
|
|
|
|
return R.fail(500,"系统异常"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ResponseBody |
|
|
|
|
@PostMapping("/importStandardOuPai") |
|
|
|
|
@ApiOperationSupport(order = 1) |
|
|
|
|
@ApiOperation(value = "导入欧派标准品", notes = "传入openOrderDTO") |
|
|
|
|
public R importStandardOuPai(@RequestParam(value = "file") MultipartFile file) { |
|
|
|
|
String method = "############importStandardOuPai: "; |
|
|
|
|
log.info(method + "请求参数{}", file); |
|
|
|
|
try{ |
|
|
|
|
|
|
|
|
|
//当前登录人选择的仓库
|
|
|
|
|
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse(); |
|
|
|
|
if(Objects.isNull(myCurrentWarehouse)){ |
|
|
|
|
log.warn(method+"仓库信息为空 myCurrentWarehouse={}",myCurrentWarehouse); |
|
|
|
|
return R.fail(403,"仓库信息为空"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return openOrderService.importStandardOuPai(myCurrentWarehouse.getId(),myCurrentWarehouse.getName(),file); |
|
|
|
|
}catch (CustomerException e){ |
|
|
|
|
log.error(e.message,e); |
|
|
|
|
return R.fail(e.code,e.message); |
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.error(method+"系统异常",e); |
|
|
|
|
return R.fail(500,"系统异常"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ResponseBody |
|
|
|
|
@PostMapping("/findWaybillDetail") |
|
|
|
|
@ApiOperationSupport(order = 1) |
|
|
|
|
@ApiOperation(value = "查询运单详情", notes = "传入openOrderDTO") |
|
|
|
|
public R findWaybillDetail(@RequestBody OpenOrderDTO openOrderDTO) { |
|
|
|
|
String method = "############findWaybillDetail: "; |
|
|
|
|
log.info(method + "请求参数{}", openOrderDTO); |
|
|
|
|
Long waybillId = openOrderDTO.getWaybillId(); |
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
|
|
|
|
|
//当前登录人选择的仓库
|
|
|
|
|
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse(); |
|
|
|
|
if(Objects.isNull(myCurrentWarehouse)){ |
|
|
|
|
log.warn(method+"仓库信息为空 myCurrentWarehouse={}",myCurrentWarehouse); |
|
|
|
|
return R.fail(403,"仓库信息为空"); |
|
|
|
|
} |
|
|
|
|
openOrderDTO.setWarehouseId(myCurrentWarehouse.getId()); |
|
|
|
|
openOrderDTO.setWarehouseName(myCurrentWarehouse.getName()); |
|
|
|
|
|
|
|
|
|
if (Objects.isNull(waybillId)){ |
|
|
|
|
log.warn(method+"运单号id为空 waybillId={}",waybillId); |
|
|
|
|
return R.fail(403,"运单号id为空"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return openOrderService.findWaybillDetail(openOrderDTO); |
|
|
|
|
}catch (CustomerException e){ |
|
|
|
|
log.error(e.message,e); |
|
|
|
|
return R.fail(e.code,e.message); |
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.error(method+"系统异常",e); |
|
|
|
|
return R.fail(500,"系统异常"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@ResponseBody |
|
|
|
|
@PostMapping("/updateWaybillVerify") |
|
|
|
|
@ApiOperationSupport(order = 1) |
|
|
|
|
@ApiOperation(value = "改单验证", notes = "传入openOrderDTO") |
|
|
|
|
public R updateWaybillVerify(@RequestBody OpenOrderDTO openOrderDTO) { |
|
|
|
|
String method = "############updateWaybillVerify: "; |
|
|
|
|
log.info(method + "请求参数{}", openOrderDTO); |
|
|
|
|
Long waybillId = openOrderDTO.getWaybillId(); |
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
|
|
|
|
|
//当前登录人选择的仓库
|
|
|
|
|
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse(); |
|
|
|
|
if(Objects.isNull(myCurrentWarehouse)){ |
|
|
|
|
log.warn(method+"仓库信息为空 myCurrentWarehouse={}",myCurrentWarehouse); |
|
|
|
|
return R.fail(403,"仓库信息为空"); |
|
|
|
|
} |
|
|
|
|
openOrderDTO.setWarehouseId(myCurrentWarehouse.getId()); |
|
|
|
|
openOrderDTO.setWarehouseName(myCurrentWarehouse.getName()); |
|
|
|
|
|
|
|
|
|
if (Objects.isNull(waybillId)){ |
|
|
|
|
log.warn(method+"运单号id为空 waybillId={}",waybillId); |
|
|
|
|
return R.fail(403,"运单号id为空"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return openOrderService.updateWaybillVerify(openOrderDTO); |
|
|
|
|
}catch (CustomerException e){ |
|
|
|
|
log.error(e.message,e); |
|
|
|
|
return R.fail(e.code,e.message); |
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.error(method+"系统异常",e); |
|
|
|
|
return R.fail(500,"系统异常"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ResponseBody |
|
|
|
|
@PostMapping("/updateWaybill") |
|
|
|
|
@ApiOperationSupport(order = 1) |
|
|
|
|
@ApiOperation(value = "改单", notes = "传入openOrderDTO") |
|
|
|
|
public R updateWaybill(@RequestBody OpenOrderDTO openOrderDTO) { |
|
|
|
|
String method = "############updateWaybill: "; |
|
|
|
|
log.info(method + "请求参数{}", openOrderDTO); |
|
|
|
|
Long waybillId = openOrderDTO.getWaybillId(); |
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
|
|
|
|
|
//当前登录人选择的仓库
|
|
|
|
|
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse(); |
|
|
|
|
if(Objects.isNull(myCurrentWarehouse)){ |
|
|
|
|
log.warn(method+"仓库信息为空 myCurrentWarehouse={}",myCurrentWarehouse); |
|
|
|
|
return R.fail(403,"仓库信息为空"); |
|
|
|
|
} |
|
|
|
|
openOrderDTO.setWarehouseId(myCurrentWarehouse.getId()); |
|
|
|
|
openOrderDTO.setWarehouseName(myCurrentWarehouse.getName()); |
|
|
|
|
|
|
|
|
|
if (Objects.isNull(waybillId)){ |
|
|
|
|
log.warn(method+"运单号id为空 waybillId={}",waybillId); |
|
|
|
|
return R.fail(403,"运单号id为空"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return openOrderService.updateWaybill(openOrderDTO); |
|
|
|
|
}catch (CustomerException e){ |
|
|
|
|
log.error(e.message,e); |
|
|
|
|
return R.fail(e.code,e.message); |
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.error(method+"系统异常",e); |
|
|
|
|
return R.fail(500,"系统异常"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@ResponseBody |
|
|
|
|
@PostMapping("/findBrandList") |
|
|
|
|
@ApiOperationSupport(order = 1) |
|
|
|
|
@ApiOperation(value = "查询品牌列表", notes = "传入openOrderDTO") |
|
|
|
|
public R findBrandList(@RequestBody OpenOrderDTO openOrderDTO) { |
|
|
|
|
String method = "############findBrandList: "; |
|
|
|
|
log.info(method + "请求参数{}", openOrderDTO); |
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
|
|
|
|
|
//当前登录人选择的仓库
|
|
|
|
|
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse(); |
|
|
|
|
if(Objects.isNull(myCurrentWarehouse)){ |
|
|
|
|
log.warn(method+"仓库信息为空 myCurrentWarehouse={}",myCurrentWarehouse); |
|
|
|
|
return R.fail(403,"仓库信息为空"); |
|
|
|
|
} |
|
|
|
|
openOrderDTO.setWarehouseId(myCurrentWarehouse.getId()); |
|
|
|
|
openOrderDTO.setWarehouseName(myCurrentWarehouse.getName()); |
|
|
|
|
|
|
|
|
|
return openOrderService.findBrandList(openOrderDTO); |
|
|
|
|
}catch (CustomerException e){ |
|
|
|
|
log.error(e.message,e); |
|
|
|
|
return R.fail(e.code,e.message); |
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.error(method+"系统异常",e); |
|
|
|
|
return R.fail(500,"系统异常"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|