zelong.shao

customer|运单号校验

...@@ -61,7 +61,7 @@ public class ConsignmentServiceImpl extends BaseService implements IConsignmentS ...@@ -61,7 +61,7 @@ public class ConsignmentServiceImpl extends BaseService implements IConsignmentS
61 ConsignmentAddDto consignmentAddDto = new ConsignmentAddDto(); 61 ConsignmentAddDto consignmentAddDto = new ConsignmentAddDto();
62 if (StringUtils.isEmpty(bo.getConsignmentCode()) || !bo.getConsignmentCode().matches("\\d{12}")) { 62 if (StringUtils.isEmpty(bo.getConsignmentCode()) || !bo.getConsignmentCode().matches("\\d{12}")) {
63 consignmentAddDto.setIsCreatorFlag(DigitConstants.DIGIT_TWO); 63 consignmentAddDto.setIsCreatorFlag(DigitConstants.DIGIT_TWO);
64 - return responseUtils.success(ResponseCode.MESSAGE_CODE_30004, consignmentAddDto); 64 + return responseUtils.success(ResponseCode.MESSAGE_CODE_30017, consignmentAddDto);
65 } 65 }
66 //查询运单表是否存在已提交的运单 66 //查询运单表是否存在已提交的运单
67 LocalDate thirtyDaysAgo = LocalDate.now().minusDays(30); 67 LocalDate thirtyDaysAgo = LocalDate.now().minusDays(30);
......