| | |
| | | import com.sinata.common.utils.StringUtils; |
| | | import com.sinata.system.domain.MedicalWasteStaticsVO; |
| | | import com.sinata.system.domain.MwCollectRecord; |
| | | import com.sinata.system.domain.dto.CollectCarTotalUpDto; |
| | | import com.sinata.system.domain.dto.CollectDto; |
| | | import com.sinata.system.domain.dto.CollectTotalUpDto; |
| | | import com.sinata.system.domain.dto.MwCollectRecordDTO; |
| | | import com.sinata.system.domain.query.DisposalReportQuery; |
| | | import com.sinata.system.domain.query.MwCollectRecordQuery; |
| | | import com.sinata.system.domain.vo.DepartmentTagInfoVO; |
| | | import com.sinata.system.domain.vo.MedicalWasteProcessVO; |
| | | import com.sinata.system.domain.vo.MwCollectRecordVO; |
| | | import com.sinata.system.domain.vo.MwCollectRecordWarningVO; |
| | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.IOException; |
| | | import java.net.URLEncoder; |
| | | import java.time.LocalDate; |
| | | import java.util.Collections; |
| | | import java.util.List; |
| | | import java.util.Objects; |
| | | |
| | |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | public List<CollectDto> getGroup(String boxNumber,Long departmentId) { |
| | | return this.baseMapper.getGroup(boxNumber,departmentId); |
| | | } |
| | | @Override |
| | | public List<CollectDto> getGroupWithStatus(String boxNumber,Long departmentId,Integer status) { |
| | | return this.baseMapper.getGroupWithStatus(boxNumber,departmentId,status); |
| | | } |
| | | |
| | | @Override |
| | | public List<CollectDto> getGroup1(String boxNumber,Long departmentId) { |
| | | return this.baseMapper.getGroup1(boxNumber,departmentId); |
| | | } |
| | | @Override |
| | | public List<CollectDto> getGroup2(String boxNumber,Long departmentId) { |
| | | return this.baseMapper.getGroup2(boxNumber,departmentId); |
| | | } |
| | | @Override |
| | | public List<CollectDto> getGroup3(String boxNumber,Long departmentId,Long carId) { |
| | | return this.baseMapper.getGroup3(boxNumber,departmentId,carId); |
| | | } |
| | | /** |
| | | * 流转过程 |
| | | * |
| | |
| | | public List<MwCollectRecordVO> getRegulationReportList(DisposalReportQuery query) { |
| | | String treeCode = sysDepartmentService.getTreeCodeByDepartmentId(query.getDepartmentId()); |
| | | return baseMapper.getRegulationReportList(query, treeCode); |
| | | } |
| | | |
| | | @Override |
| | | public List<CollectTotalUpDto> collectTotal(LocalDate date,Long departmentId) { |
| | | return baseMapper.collectTotal(date,departmentId); |
| | | } |
| | | @Override |
| | | public List<CollectTotalUpDto> collectTotal3(Long departmentId) { |
| | | return baseMapper.collectTotal3(departmentId); |
| | | } |
| | | @Override |
| | | public List<CollectTotalUpDto> collectTotal1(LocalDate date,Long checkOutUserId,Long id ) { |
| | | return baseMapper.collectTotal1(date,checkOutUserId,id); |
| | | } |
| | | |
| | | @Override |
| | | public List<CollectCarTotalUpDto> carGroup(Long carId,String name) { |
| | | return this.baseMapper.carGroup(carId,name); |
| | | } |
| | | |
| | | /** |
| | |
| | | public MedicalWasteStaticsVO queryMedicalWasteStatics(String treeCode) { |
| | | return baseMapper.queryMedicalWasteStatics(treeCode); |
| | | } |
| | | |
| | | /** |
| | | * 获取大屏医疗机构标签信息 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @Override |
| | | public DepartmentTagInfoVO getTagInfo(Long id) { |
| | | return baseMapper.getTagInfo(id); |
| | | } |
| | | } |