| | |
| | | if(existEr.getState().equals(EntryStateEnum.ENTER.getCode())){ |
| | | throw new ApiException("已经入库,不能再修改"); |
| | | } |
| | | |
| | | if (!Objects.equals(existEr.getNum(),entryRecord.getNum())){ |
| | | generateCode2(entryRecord); |
| | | } |
| | | entryRecord.setUpdateBy(currentUser.getUsername()); |
| | | int row=baseMapper.updateById(entryRecord); |
| | | if(row<1){ |
| | |
| | | return row; |
| | | } |
| | | |
| | | private void generateCode2(HzProductEntryRecord entryRecord) { |
| | | SysCompany company=companyMapper.selectById(entryRecord.getCompanyId()); |
| | | String code=company.getCode(); |
| | | if(StringUtils.isBlank(code)){ |
| | | throw new ApiException("公司两位编码为空"); |
| | | } |
| | | String currentDate= DateUtil.format(new Date(), DatePattern.PURE_DATE_FORMAT); |
| | | StringBuilder prefixBuilder=new StringBuilder().append(CodePrexEnum.GOOD.getCode()) |
| | | .append(code) |
| | | .append(currentDate); |
| | | HzProductEntryRecord per=baseMapper.selectLastEndCodeEntryRecord(prefixBuilder.toString(),entryRecord.getCompanyId()); |
| | | int startCode=1; |
| | | int endCode=startCode+entryRecord.getNum()-1; |
| | | if(per!=null){ |
| | | startCode=per.getEndCode()+1; |
| | | endCode=startCode+entryRecord.getNum()-1; |
| | | } |
| | | entryRecord.setCodePrex(prefixBuilder.toString()); |
| | | entryRecord.setStartCode(startCode); |
| | | entryRecord.setEndCode(endCode); |
| | | entryRecord.setState(EntryStateEnum.UNENTER.getCode()); |
| | | } |
| | | |
| | | @Override |
| | | public CommonPage selectProductListByEntryId(Long entryId,Long companyId) { |
| | | SysUser currentUser = SecurityUtils.getLoginUser().getUser(); |