| | |
| | | } |
| | | com = companyExtService.getModelById(authenticationToken.getCompanyId()); |
| | | if(com == null || Constants.equalsInteger( com.getDeleted(),Constants.ONE)){ |
| | | throw new BusinessException(ResponseStatus.NOT_ALLOWED.getCode(),"对不起,该账户异常!请联系管理员"); |
| | | throw new BusinessException(ResponseStatus.NOT_ALLOWED.getCode(),"对不起,该账户删除!请联系管理员"); |
| | | } |
| | | if(Constants.equalsInteger( com.getStatus(),Constants.ZERO) ){ |
| | | throw new BusinessException(ResponseStatus.NOT_ALLOWED.getCode(),"对不起,该企业已禁用!"); |
| | |
| | | |
| | | Date pDate = DateUtil.getDateFromString(DateUtil.getShortTime(p.getPlanDate()) +" 00:00:00"); |
| | | Date nDate = DateUtil.getDateFromString(DateUtil.getShortTime(DateUtil.getCurrentDate()) +" 23:59:59"); |
| | | if( nDate.getTime() > pDate.getTime()){ |
| | | if( nDate.getTime() < pDate.getTime()){ |
| | | throw new BusinessException(ResponseStatus.BAD_REQUEST.getCode(), "对不起,计划生产日期必须为今天以后的日期!"); |
| | | } |
| | | p.setMaterialCode(p.getMaterialCode().trim()); |