|  |  |  | 
|---|
|  |  |  | package com.doumee.service.business.impl; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.doumee.biz.system.SystemDictDataBiz; | 
|---|
|  |  |  | import com.doumee.core.constants.ResponseStatus; | 
|---|
|  |  |  | import com.doumee.core.exception.BusinessException; | 
|---|
|  |  |  | import com.doumee.core.model.LoginUserInfo; | 
|---|
|  |  |  | 
|---|
|  |  |  | import com.doumee.core.model.PageWrap; | 
|---|
|  |  |  | import com.doumee.core.utils.Constants; | 
|---|
|  |  |  | import com.doumee.core.utils.Utils; | 
|---|
|  |  |  | import com.doumee.dao.business.YwBuildingMapper; | 
|---|
|  |  |  | import com.doumee.dao.business.YwProjectMapper; | 
|---|
|  |  |  | import com.doumee.dao.business.YwRoomMapper; | 
|---|
|  |  |  | import com.doumee.dao.business.YwWorkorderMapper; | 
|---|
|  |  |  | import com.doumee.dao.business.model.YwBuilding; | 
|---|
|  |  |  | import com.doumee.dao.business.model.YwProject; | 
|---|
|  |  |  | import com.doumee.dao.business.model.YwRoom; | 
|---|
|  |  |  | import com.doumee.dao.business.model.YwWorkorder; | 
|---|
|  |  |  | import com.doumee.dao.business.*; | 
|---|
|  |  |  | import com.doumee.dao.business.model.*; | 
|---|
|  |  |  | import com.doumee.dao.system.MultifileMapper; | 
|---|
|  |  |  | import com.doumee.dao.system.SystemUserMapper; | 
|---|
|  |  |  | import com.doumee.dao.system.model.Multifile; | 
|---|
|  |  |  | import com.doumee.dao.system.model.SystemUser; | 
|---|
|  |  |  | import com.doumee.service.business.YwWorkorderService; | 
|---|
|  |  |  | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; | 
|---|
|  |  |  | import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper; | 
|---|
|  |  |  | import com.baomidou.mybatisplus.core.metadata.IPage; | 
|---|
|  |  |  | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; | 
|---|
|  |  |  | import com.github.yulichang.wrapper.MPJLambdaWrapper; | 
|---|
|  |  |  | import org.apache.commons.lang3.StringUtils; | 
|---|
|  |  |  | import org.checkerframework.checker.units.qual.C; | 
|---|
|  |  |  | import org.springframework.beans.factory.annotation.Autowired; | 
|---|
|  |  |  | import org.springframework.stereotype.Service; | 
|---|
|  |  |  | import org.springframework.transaction.annotation.Transactional; | 
|---|
|  |  |  | import org.springframework.util.CollectionUtils; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.util.ArrayList; | 
|---|
|  |  |  | import java.util.Arrays; | 
|---|
|  |  |  | import java.util.Date; | 
|---|
|  |  |  | import java.util.List; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | @Autowired | 
|---|
|  |  |  | private YwWorkorderMapper ywWorkorderMapper; | 
|---|
|  |  |  | @Autowired | 
|---|
|  |  |  | private SystemUserMapper systemUserMapper; | 
|---|
|  |  |  | @Autowired | 
|---|
|  |  |  | private YwWorkorderLogMapper ywWorkorderLogMapper; | 
|---|
|  |  |  | @Autowired | 
|---|
|  |  |  | private SystemDictDataBiz systemDictDataBiz; | 
|---|
|  |  |  | @Autowired | 
|---|
|  |  |  | private MultifileMapper multifileMapper; | 
|---|
|  |  |  | @Autowired | 
|---|
|  |  |  | private YwProjectMapper ywProjectMapper; | 
|---|
|  |  |  | @Autowired | 
|---|
|  |  |  | private YwRoomMapper ywRoomMapper; | 
|---|
|  |  |  | 
|---|
|  |  |  | private YwBuildingMapper ywBuildingMapper; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Override | 
|---|
|  |  |  | @Transactional(rollbackFor = {BusinessException.class,Exception.class}) | 
|---|
|  |  |  | public Integer create(YwWorkorder model) { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | dealParamValid(model); | 
|---|
|  |  |  | 
|---|
|  |  |  | model.setEditDate(model.getCreateDate()); | 
|---|
|  |  |  | model.setEditor(model.getCreator()); | 
|---|
|  |  |  | ywWorkorderMapper.insert(model); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | List<Multifile> fileList = new ArrayList<>(); | 
|---|
|  |  |  | if(model.getFileList()!=null && model.getFileList().size()>0){ | 
|---|
|  |  |  | boolean isTrue = false; | 
|---|
|  |  |  | for (int i = 0; i <  model.getFileList().size(); i++) { | 
|---|
|  |  |  | Multifile multifile =  model.getFileList().get(i); | 
|---|
|  |  |  | if(StringUtils.isBlank(multifile.getFileurl())){ | 
|---|
|  |  |  | continue; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | multifile.setCreateDate(new Date()); | 
|---|
|  |  |  | multifile.setCreator(model.getEditor()); | 
|---|
|  |  |  | multifile.setIsdeleted(Constants.ZERO); | 
|---|
|  |  |  | multifile.setObjId(model.getId()); | 
|---|
|  |  |  | multifile.setCreator(model.getCreator()); | 
|---|
|  |  |  | multifile.setObjType(Constants.MultiFile.YW_WORKORDER_PROBLEM.getKey()); | 
|---|
|  |  |  | multifile.setSortnum(i+1); | 
|---|
|  |  |  | fileList.add(multifile); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | if(fileList.size()>0){ | 
|---|
|  |  |  | multifileMapper.insert(fileList); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | dealLogBiz(model,Constants.ZERO,model.getLoginUserInfo().getRealname(),null);//记录新建日志 | 
|---|
|  |  |  | return model.getId(); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private void dealLogBiz(YwWorkorder model, int type,String param1,String param2) { | 
|---|
|  |  |  | YwWorkorderLog log = new YwWorkorderLog(); | 
|---|
|  |  |  | log.setCreateDate(model.getEditDate()); | 
|---|
|  |  |  | log.setCreator(model.getCreator()); | 
|---|
|  |  |  | log.setJobId(model.getId()); | 
|---|
|  |  |  | log.setIsdeleted(Constants.ZERO); | 
|---|
|  |  |  | log.setObjId(model.getId()+""); | 
|---|
|  |  |  | log.setObjType(type); | 
|---|
|  |  |  | log.setParam1(param1); | 
|---|
|  |  |  | log.setParam2(param2); | 
|---|
|  |  |  | if(type ==0){ | 
|---|
|  |  |  | log.setTitle("创建工单"); | 
|---|
|  |  |  | }else  if(type ==1){ | 
|---|
|  |  |  | log.setTitle("分派工单"); | 
|---|
|  |  |  | }else  if(type ==2){ | 
|---|
|  |  |  | log.setTitle("处理工单"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | ywWorkorderLogMapper.insert(log); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private void dealParamValid(YwWorkorder model) { | 
|---|
|  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Override | 
|---|
|  |  |  | @Transactional(rollbackFor = {BusinessException.class,Exception.class}) | 
|---|
|  |  |  | public  void dispatchOrder(YwWorkorder ywWorkorder){ | 
|---|
|  |  |  | YwWorkorder model = this.findById(ywWorkorder.getId()); | 
|---|
|  |  |  | if(model ==null || Constants.equalsInteger(model.getIsdeleted(),Constants.ONE)){ | 
|---|
|  |  |  | throw new BusinessException(ResponseStatus.DATA_EMPTY.getCode(),"对不起,工单信息不存在!"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | if(!Constants.equalsInteger(model.getDealStatus(),Constants.ZERO) && !Constants.equalsInteger(model.getDealStatus(),Constants.ONE)){ | 
|---|
|  |  |  | throw new BusinessException(ResponseStatus.DATA_EMPTY.getCode(),"对不起,工单状态已流转,不支持当前操作!"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | SystemUser user = systemUserMapper.selectById(ywWorkorder.getDealUserId()); | 
|---|
|  |  |  | if(user ==null ||  (user.getDeleted()!=null&& user.getDeleted() )){ | 
|---|
|  |  |  | throw new BusinessException(ResponseStatus.DATA_EMPTY.getCode(),"对不起,员工信息不存在!"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | YwWorkorder update = new YwWorkorder(); | 
|---|
|  |  |  | update.setId(model.getId()); | 
|---|
|  |  |  | update.setEditDate(new Date()); | 
|---|
|  |  |  | update.setEditor(ywWorkorder.getLoginUserInfo().getId()); | 
|---|
|  |  |  | update.setDealStatus(Constants.ONE); | 
|---|
|  |  |  | update.setDispatchUserId(update.getEditor()); | 
|---|
|  |  |  | update.setDispatchDate(update.getEditDate()); | 
|---|
|  |  |  | update.setDispatchInfo(ywWorkorder.getDispatchInfo()); | 
|---|
|  |  |  | ywWorkorderMapper.updateById(update); | 
|---|
|  |  |  | dealLogBiz(model,Constants.ONE,model.getLoginUserInfo().getRealname(),user.getRealname());//记录新建日志 | 
|---|
|  |  |  | } | 
|---|
|  |  |  | @Override | 
|---|
|  |  |  | @Transactional(rollbackFor = {BusinessException.class,Exception.class}) | 
|---|
|  |  |  | public  void dealOrder(YwWorkorder ywWorkorder){ | 
|---|
|  |  |  | YwWorkorder model = this.findById(ywWorkorder.getId()); | 
|---|
|  |  |  | if(model ==null || Constants.equalsInteger(model.getIsdeleted(),Constants.ONE)){ | 
|---|
|  |  |  | throw new BusinessException(ResponseStatus.DATA_EMPTY.getCode(),"对不起,工单信息不存在!"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | if(!Constants.equalsInteger(model.getDealStatus(),Constants.ZERO) && !Constants.equalsInteger(model.getDealStatus(),Constants.ONE)){ | 
|---|
|  |  |  | throw new BusinessException(ResponseStatus.DATA_EMPTY.getCode(),"对不起,工单状态已流转,不支持当前操作!"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | SystemUser user = systemUserMapper.selectById(ywWorkorder.getDealUserId()); | 
|---|
|  |  |  | if(user ==null ||  (user.getDeleted()!=null&& user.getDeleted() )){ | 
|---|
|  |  |  | throw new BusinessException(ResponseStatus.DATA_EMPTY.getCode(),"对不起,员工信息不存在!"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | YwWorkorder update = new YwWorkorder(); | 
|---|
|  |  |  | update.setId(model.getId()); | 
|---|
|  |  |  | update.setEditDate(new Date()); | 
|---|
|  |  |  | update.setEditor(ywWorkorder.getLoginUserInfo().getId()); | 
|---|
|  |  |  | update.setDealStatus(Constants.TWO); | 
|---|
|  |  |  | update.setDealUserId(update.getEditor()); | 
|---|
|  |  |  | update.setDealDate(update.getEditDate()); | 
|---|
|  |  |  | update.setDealInfo(ywWorkorder.getDispatchInfo()); | 
|---|
|  |  |  | ywWorkorderMapper.updateById(update); | 
|---|
|  |  |  | dealLogBiz(model,Constants.TWO,model.getLoginUserInfo().getRealname(),null);//记录新建日志 | 
|---|
|  |  |  | } | 
|---|
|  |  |  | @Override | 
|---|
|  |  |  | @Transactional(rollbackFor = {BusinessException.class,Exception.class}) | 
|---|
|  |  |  | public void updateById(YwWorkorder model) { | 
|---|
|  |  |  | dealParamValid(model); | 
|---|
|  |  |  | model.setEditDate(new Date()); | 
|---|
|  |  |  | model.setEditor(model.getLoginUserInfo().getId()); | 
|---|
|  |  |  | ywWorkorderMapper.updateById(model); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | List<Multifile> fileList = new ArrayList<>(); | 
|---|
|  |  |  | if(model.getFileList()!=null && model.getFileList().size()>0){ | 
|---|
|  |  |  | for (int i = 0; i <  model.getFileList().size(); i++) { | 
|---|
|  |  |  | Multifile multifile =  model.getFileList().get(i); | 
|---|
|  |  |  | if(StringUtils.isBlank(multifile.getFileurl())){ | 
|---|
|  |  |  | continue; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | multifile.setCreateDate(new Date()); | 
|---|
|  |  |  | multifile.setCreator(model.getEditor()); | 
|---|
|  |  |  | multifile.setIsdeleted(Constants.ZERO); | 
|---|
|  |  |  | multifile.setObjId(model.getId()); | 
|---|
|  |  |  | multifile.setCreator(model.getCreator()); | 
|---|
|  |  |  | multifile.setObjType(Constants.MultiFile.YW_WORKORDER_PROBLEM.getKey()); | 
|---|
|  |  |  | multifile.setSortnum(i+1); | 
|---|
|  |  |  | fileList.add(multifile); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | multifileMapper.update(null,new UpdateWrapper<Multifile>().lambda() | 
|---|
|  |  |  | .set(Multifile::getIsdeleted,Constants.ONE) | 
|---|
|  |  |  | .set(Multifile::getEditDate,model.getEditDate()) | 
|---|
|  |  |  | .set(Multifile::getEditor,model.getEditor()) | 
|---|
|  |  |  | .eq(Multifile::getIsdeleted, Constants.ZERO) | 
|---|
|  |  |  | .eq(Multifile::getObjType,Constants.MultiFile.YW_WORKORDER_PROBLEM.getKey()) | 
|---|
|  |  |  | ); | 
|---|
|  |  |  | if(fileList.size()>0){ | 
|---|
|  |  |  | multifileMapper.insert(fileList); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | private void initFiles(YwWorkorder model) { | 
|---|
|  |  |  | List<Multifile> multifiles = multifileMapper.selectList(new QueryWrapper<Multifile>().lambda() | 
|---|
|  |  |  | .eq(Multifile::getObjId, model.getId() ) | 
|---|
|  |  |  | .in(Multifile::getObjType, Arrays.asList(new Integer[]{Constants.MultiFile.YW_WORKORDER_PROBLEM.getKey() | 
|---|
|  |  |  | ,Constants.MultiFile.YW_WORKORDER_DEAL.getKey() })) | 
|---|
|  |  |  | .eq(Multifile::getIsdeleted,Constants.ZERO)); | 
|---|
|  |  |  | if(multifiles!=null){ | 
|---|
|  |  |  | String path = systemDictDataBiz.queryByCode(Constants.FTP,Constants.FTP_RESOURCE_PATH).getCode() | 
|---|
|  |  |  | +systemDictDataBiz.queryByCode(Constants.FTP,Constants.YW_WORKORDER_FILE).getCode(); | 
|---|
|  |  |  | for(Multifile f : multifiles){ | 
|---|
|  |  |  | if(StringUtils.isBlank(f.getFileurl())){ | 
|---|
|  |  |  | continue; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | f.setFileurlFull(path+f.getFileurl()); | 
|---|
|  |  |  | if(Constants.equalsInteger(f.getObjType(),Constants.MultiFile.YW_WORKORDER_PROBLEM.getKey())){ | 
|---|
|  |  |  | //现场情况 | 
|---|
|  |  |  | if(model.getFileList() == null){ | 
|---|
|  |  |  | model.setFileList(new ArrayList<>()); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | model.getFileList().add(f); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | if(Constants.equalsInteger(f.getObjType(),Constants.MultiFile.YW_WORKORDER_DEAL.getKey())){ | 
|---|
|  |  |  | //处理附件 | 
|---|
|  |  |  | if(model.getDealFileList() == null){ | 
|---|
|  |  |  | model.setDealFileList(new ArrayList<>()); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | model.getDealFileList().add(f); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | @Override | 
|---|
|  |  |  | public void updateByIdInBatch(List<YwWorkorder> ywWorkorders) { | 
|---|
|  |  |  | if (CollectionUtils.isEmpty(ywWorkorders)) { | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Override | 
|---|
|  |  |  | public YwWorkorder findById(Integer id) { | 
|---|
|  |  |  | return ywWorkorderMapper.selectById(id); | 
|---|
|  |  |  | MPJLambdaWrapper<YwWorkorder> wrapper = new MPJLambdaWrapper<>(); | 
|---|
|  |  |  | wrapper.selectAll(YwWorkorder.class ) | 
|---|
|  |  |  | .select("t4.realname",YwWorkorder::getDealUserName) | 
|---|
|  |  |  | .select("t3.realname",YwWorkorder::getDispatchUserName) | 
|---|
|  |  |  | .selectAs(SystemUser::getRealname,YwWorkorder::getCreatorName) | 
|---|
|  |  |  | .selectAs(SystemUser::getMobile,YwWorkorder::getCreatorPhone) | 
|---|
|  |  |  | .selectAs(Company::getCompanyNamePath,YwWorkorder::getCreatorCompany) | 
|---|
|  |  |  | .leftJoin(SystemUser.class,SystemUser::getId,YwWorkorder::getCreator) | 
|---|
|  |  |  | .leftJoin(Company.class,Company::getId,SystemUser::getCompanyId) | 
|---|
|  |  |  | .leftJoin(SystemUser.class,SystemUser::getId,YwWorkorder::getDispatchUserId) | 
|---|
|  |  |  | .leftJoin(SystemUser.class,SystemUser::getId,YwWorkorder::getDealUserId) | 
|---|
|  |  |  | .eq(YwWorkorder::getId,id); | 
|---|
|  |  |  | YwWorkorder model = ywWorkorderMapper.selectJoinOne(YwWorkorder.class,wrapper); | 
|---|
|  |  |  | initFiles(model);//读取附件信息 | 
|---|
|  |  |  | YwWorkorderLog log = new YwWorkorderLog(); | 
|---|
|  |  |  | log.setJobId(model.getId()); | 
|---|
|  |  |  | log.setIsdeleted(Constants.ZERO); | 
|---|
|  |  |  | model.setLogList(ywWorkorderLogMapper.selectList(new QueryWrapper<YwWorkorderLog>(log).lambda().orderByAsc(YwWorkorderLog::getCreateDate))); | 
|---|
|  |  |  | return model; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Override | 
|---|