|  | @@ -0,0 +1,637 @@
 | 
	
		
			
				|  |  | +package com.jeeplus.centrecareful.approvalInfo.service;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +import cn.hutool.core.util.ObjectUtil;
 | 
	
		
			
				|  |  | +import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
 | 
	
		
			
				|  |  | +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
 | 
	
		
			
				|  |  | +import com.baomidou.mybatisplus.core.metadata.IPage;
 | 
	
		
			
				|  |  | +import com.baomidou.mybatisplus.core.toolkit.CollectionUtils;
 | 
	
		
			
				|  |  | +import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
 | 
	
		
			
				|  |  | +import com.jeeplus.finance.reimbursementApproval.approvalInfo.domain.ProgramProjectListInfo;
 | 
	
		
			
				|  |  | +import com.jeeplus.centrecareful.approvalInfo.domain.*;
 | 
	
		
			
				|  |  | +import com.jeeplus.centrecareful.approvalInfo.mapper.*;
 | 
	
		
			
				|  |  | +import com.jeeplus.centrecareful.approvalInfo.service.dto.*;
 | 
	
		
			
				|  |  | +import com.jeeplus.core.query.QueryWrapperGenerator;
 | 
	
		
			
				|  |  | +import com.jeeplus.finance.contractRegistration.service.ContractInfoService;
 | 
	
		
			
				|  |  | +import com.jeeplus.finance.reimbursementApproval.approvalInfo.service.dto.QueryListDto;
 | 
	
		
			
				|  |  | +import com.jeeplus.pubmodules.oss.domain.WorkAttachment;
 | 
	
		
			
				|  |  | +import com.jeeplus.pubmodules.oss.mapper.OssServiceMapper;
 | 
	
		
			
				|  |  | +import com.jeeplus.pubmodules.oss.service.dto.WorkAttachmentDto;
 | 
	
		
			
				|  |  | +import com.jeeplus.pubmodules.serialNumTpl.service.SerialnumTplService;
 | 
	
		
			
				|  |  | +import com.jeeplus.sys.domain.Office;
 | 
	
		
			
				|  |  | +import com.jeeplus.sys.service.OfficeService;
 | 
	
		
			
				|  |  | +import com.jeeplus.sys.service.dto.UserDTO;
 | 
	
		
			
				|  |  | +import com.jeeplus.sys.utils.DictUtils;
 | 
	
		
			
				|  |  | +import com.jeeplus.sys.utils.UserUtils;
 | 
	
		
			
				|  |  | +import org.springframework.beans.BeanUtils;
 | 
	
		
			
				|  |  | +import org.springframework.stereotype.Service;
 | 
	
		
			
				|  |  | +import javax.annotation.Resource;
 | 
	
		
			
				|  |  | +import com.jeeplus.sys.utils.StringUtils;
 | 
	
		
			
				|  |  | +import com.baomidou.mybatisplus.*;
 | 
	
		
			
				|  |  | +import java.util.ArrayList;
 | 
	
		
			
				|  |  | +import java.util.Date;
 | 
	
		
			
				|  |  | +import java.util.List;
 | 
	
		
			
				|  |  | +import java.util.UUID;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +/**
 | 
	
		
			
				|  |  | + * @author: 王强
 | 
	
		
			
				|  |  | + * @create: 2022-11-24 16:11
 | 
	
		
			
				|  |  | + **/
 | 
	
		
			
				|  |  | +@Service
 | 
	
		
			
				|  |  | +public class ZsReimbursementInfoService {
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    @Resource
 | 
	
		
			
				|  |  | +    private ZsReimbursementInfoMapper infoMapper;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    @Resource
 | 
	
		
			
				|  |  | +    private ZsReimbursementDetailInfoContractMapper zsReimbursementDetailInfoContractMapper;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    @Resource
 | 
	
		
			
				|  |  | +    private ZsReimbursementDetailInfoReportMapper zsReimbursementDetailInfoReportMapper;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    @Resource
 | 
	
		
			
				|  |  | +    private ZsReimbursementDetailInfoOtherMapper zsReimbursementDetailInfoOtherMapper;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    @Resource
 | 
	
		
			
				|  |  | +    private ZsReimbursementDetailInfoProcuredMapper zsReimbursementDetailInfoProcuredMapper;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    @Resource
 | 
	
		
			
				|  |  | +    private ZsReimbursementDetailInfoMapper detailInfoMapper;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    @Resource
 | 
	
		
			
				|  |  | +    private ZsReimbursementAmountInfoMapper amountInfoMapper;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    @Resource
 | 
	
		
			
				|  |  | +    private OssServiceMapper ossServiceMapper;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    @Resource
 | 
	
		
			
				|  |  | +    private SerialnumTplService serialnumTplService;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    @Resource
 | 
	
		
			
				|  |  | +    private ContractInfoService infoService;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +   /* @Resource
 | 
	
		
			
				|  |  | +    private MaterialBasicMapper materialBasicMapper;*/
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    @Resource
 | 
	
		
			
				|  |  | +    private OfficeService officeService;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    /**
 | 
	
		
			
				|  |  | +     * 报告号查询
 | 
	
		
			
				|  |  | +     */
 | 
	
		
			
				|  |  | +    public IPage<ZsReportNoDto> getReportNoList(Page<ZsReportNoDto> page , ZsReportNoDto dto) throws Exception{
 | 
	
		
			
				|  |  | +        QueryWrapper<ZsReportNoDto> queryWrapper = QueryWrapperGenerator.buildQueryCondition(dto, ZsReportNoDto.class);
 | 
	
		
			
				|  |  | +        /**
 | 
	
		
			
				|  |  | +         * a表是reimbursementInfo
 | 
	
		
			
				|  |  | +         * b表是reimbursementDetailInfo
 | 
	
		
			
				|  |  | +         * c表是sysUser
 | 
	
		
			
				|  |  | +         */
 | 
	
		
			
				|  |  | +        queryWrapper.eq("a.del_flag", 0);
 | 
	
		
			
				|  |  | +        queryWrapper.eq("c.id", dto.getProjectId());
 | 
	
		
			
				|  |  | +        return infoMapper.getReportNoList(page, queryWrapper);
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    /**
 | 
	
		
			
				|  |  | +     * 列表查询
 | 
	
		
			
				|  |  | +     */
 | 
	
		
			
				|  |  | +    public IPage<ZsRetureListDto> list(Page<ZsRetureListDto> page , ZsQueryListDto dto) throws Exception{
 | 
	
		
			
				|  |  | +        QueryWrapper<ZsQueryListDto> queryWrapper = QueryWrapperGenerator.buildQueryCondition(dto, ZsQueryListDto.class);
 | 
	
		
			
				|  |  | +        /**
 | 
	
		
			
				|  |  | +         * a表是reimbursementInfo
 | 
	
		
			
				|  |  | +         * b表是reimbursementDetailInfo
 | 
	
		
			
				|  |  | +         * c表是sysUser
 | 
	
		
			
				|  |  | +         */
 | 
	
		
			
				|  |  | +        queryWrapper.eq("a.del_flag", 0);
 | 
	
		
			
				|  |  | +        // 报销项目
 | 
	
		
			
				|  |  | +        if (StringUtils.isNotEmpty(dto.getProject())) {
 | 
	
		
			
				|  |  | +            queryWrapper.apply("(b.project_id = {0} OR p.project_name LIKE {1})", dto.getProject(), "%" + dto.getProject() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply("(b3.project_id = {0} OR p3.project_name LIKE {1})", dto.getProject(), "%" + dto.getProject() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply("(b4.project_id = {0} OR b4.project_name LIKE {1})", dto.getProject(), "%" + dto.getProject() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply("(b5.project_id = {0} OR b5.project_name LIKE {1})", dto.getProject(), "%" + dto.getProject() + "%");
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 报销时间
 | 
	
		
			
				|  |  | +        if (dto.getDates() != null) {
 | 
	
		
			
				|  |  | +            queryWrapper.between("a.reim_date", dto.getDates()[0], dto.getDates()[1]);
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 经办人
 | 
	
		
			
				|  |  | +        if (StringUtils.isNotEmpty(dto.getHandled())) {
 | 
	
		
			
				|  |  | +            queryWrapper.apply("(a.create_by_id = {0} OR c.name LIKE {1})", dto.getHandled(), "%" + dto.getHandled() + "%");
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 报销人
 | 
	
		
			
				|  |  | +        if (StringUtils.isNotEmpty(dto.getReimBy())) {
 | 
	
		
			
				|  |  | +            queryWrapper.apply("( b.user_id = {0} OR us.name LIKE {1} )", dto.getReimBy(), "%" + dto.getReimBy() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply("( b2.user_id = {0} OR us2.name LIKE {1} )", dto.getReimBy(), "%" + dto.getReimBy() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply("( b3.user_id = {0} OR us3.name LIKE {1} )", dto.getReimBy(), "%" + dto.getReimBy() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply("( b4.user_id = {0} OR us4.name LIKE {1} )", dto.getReimBy(), "%" + dto.getReimBy() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply("( b5.user_id = {0} OR us5.name LIKE {1} )", dto.getReimBy(), "%" + dto.getReimBy() + "%");
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 报销状态
 | 
	
		
			
				|  |  | +        if (StringUtils.isNotEmpty(dto.getType())) {
 | 
	
		
			
				|  |  | +            queryWrapper.eq("a.type", dto.getType());
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 报销部门
 | 
	
		
			
				|  |  | +        if (StringUtils.isNotEmpty(dto.getDepartment())) {
 | 
	
		
			
				|  |  | +            queryWrapper.apply("( b.dept_id = {0} OR so.name LIKE {1} )", dto.getDepartment(), "%" + dto.getDepartment() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply("( b2.dept_id = {0} OR so2.name LIKE {1} )", dto.getDepartment(), "%" + dto.getDepartment() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply("( b3.dept_id = {0} OR so3.name LIKE {1} )", dto.getDepartment(), "%" + dto.getDepartment() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply("( b4.dept_id = {0} OR so4.name LIKE {1} )", dto.getDepartment(), "%" + dto.getDepartment() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply("( b5.dept_id = {0} OR so5.name LIKE {1} )", dto.getDepartment(), "%" + dto.getDepartment() + "%");
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 报销类别
 | 
	
		
			
				|  |  | +        if (StringUtils.isNotEmpty(dto.getRemiType())) {
 | 
	
		
			
				|  |  | +            queryWrapper.apply(" (b.type_id = {0} OR t.name LIKE {1}) ", dto.getRemiType(), "%" + dto.getRemiType() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply(" (b2.type_id = {0} OR t2.name LIKE {1}) ", dto.getRemiType(), "%" + dto.getRemiType() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply(" (b3.type_id = {0} OR t3.name LIKE {1}) ", dto.getRemiType(), "%" + dto.getRemiType() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply(" (b4.type_id = {0} OR t4.name LIKE {1}) ", dto.getRemiType(), "%" + dto.getRemiType() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply(" (b5.type_id = {0} OR t5.name LIKE {1}) ", dto.getRemiType(), "%" + dto.getRemiType() + "%");
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 报销金额
 | 
	
		
			
				|  |  | +        if (dto.getAmounts() != null) {
 | 
	
		
			
				|  |  | +            if (StringUtils.isNotEmpty(dto.getAmounts()[0])) {
 | 
	
		
			
				|  |  | +                queryWrapper.and(w ->
 | 
	
		
			
				|  |  | +                    w.ge("b.number", Double.parseDouble(dto.getAmounts()[0]))
 | 
	
		
			
				|  |  | +                        .or().ge("b2.number", Double.parseDouble(dto.getAmounts()[0]))
 | 
	
		
			
				|  |  | +                        .or().ge("b3.number", Double.parseDouble(dto.getAmounts()[0]))
 | 
	
		
			
				|  |  | +                        .or().ge("b4.number", Double.parseDouble(dto.getAmounts()[0]))
 | 
	
		
			
				|  |  | +                        .or().ge("b5.number", Double.parseDouble(dto.getAmounts()[0]))
 | 
	
		
			
				|  |  | +                );
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +            if (StringUtils.isNotEmpty(dto.getAmounts()[1])) {
 | 
	
		
			
				|  |  | +                queryWrapper.and(w ->
 | 
	
		
			
				|  |  | +                    w.le("b.number", Double.parseDouble(dto.getAmounts()[1]))
 | 
	
		
			
				|  |  | +                        .or().le("b2.number", Double.parseDouble(dto.getAmounts()[1]))
 | 
	
		
			
				|  |  | +                        .or().le("b3.number", Double.parseDouble(dto.getAmounts()[1]))
 | 
	
		
			
				|  |  | +                        .or().le("b4.number", Double.parseDouble(dto.getAmounts()[1]))
 | 
	
		
			
				|  |  | +                        .or().le("b5.number", Double.parseDouble(dto.getAmounts()[1]))
 | 
	
		
			
				|  |  | +                );
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 报告号
 | 
	
		
			
				|  |  | +        if (StringUtils.isNotEmpty(dto.getReportNumber())) {
 | 
	
		
			
				|  |  | +            queryWrapper.like("b.report_number", dto.getReportNumber());
 | 
	
		
			
				|  |  | +            queryWrapper.or().like("b2.report_number", dto.getReportNumber());
 | 
	
		
			
				|  |  | +            queryWrapper.or().like("b3.report_number", dto.getReportNumber());
 | 
	
		
			
				|  |  | +            queryWrapper.or().like("b4.report_number", dto.getReportNumber());
 | 
	
		
			
				|  |  | +            queryWrapper.or().like("b5.report_number", dto.getReportNumber());
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 报销类型
 | 
	
		
			
				|  |  | +        if (StringUtils.isNotBlank(dto.getSourceType())) {
 | 
	
		
			
				|  |  | +            queryWrapper.eq("a.source_type", dto.getSourceType());
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        return infoMapper.findList(page, queryWrapper);
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public IPage<ProgramProjectListInfo> projectList(Page<ProgramProjectListInfo> page, ProgramProjectListInfo info, String tabType) throws Exception{
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        //获取当前登录人信息
 | 
	
		
			
				|  |  | +        UserDTO userDTO = UserUtils.getCurrentUserDTO();
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        QueryWrapper<ProgramProjectListInfo> wrapper = QueryWrapperGenerator.buildQueryCondition(info, ProgramProjectListInfo.class);
 | 
	
		
			
				|  |  | +        wrapper.eq("a.del_flag", "0");
 | 
	
		
			
				|  |  | +        wrapper.eq("a.tab_type", tabType);
 | 
	
		
			
				|  |  | +        wrapper.eq("b.office_id", userDTO.getOfficeDTO().getId());
 | 
	
		
			
				|  |  | +        if (info.getCreateDates() != null) {
 | 
	
		
			
				|  |  | +            wrapper.between("a.create_date", info.getCreateDates()[0], info.getCreateDates()[1]);
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        IPage<ProgramProjectListInfo> pageList = infoMapper.findProjectList(page, wrapper);
 | 
	
		
			
				|  |  | +        pageList.getRecords().stream().forEach(item ->{
 | 
	
		
			
				|  |  | +            String isInvoice = infoMapper.selectInvoiceFlag(item.getId());
 | 
	
		
			
				|  |  | +            item.setIsInvoice(isInvoice);
 | 
	
		
			
				|  |  | +        });
 | 
	
		
			
				|  |  | +        return pageList;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public String save(ZsSaveInfoDto dto) throws Exception{
 | 
	
		
			
				|  |  | +        // 获取当前登录人信息
 | 
	
		
			
				|  |  | +      UserDTO userDTO = UserUtils.getCurrentUserDTO();
 | 
	
		
			
				|  |  | +        if (StringUtils.isNotEmpty(dto.getId())) {
 | 
	
		
			
				|  |  | +            return update(dto, userDTO);
 | 
	
		
			
				|  |  | +        } else {
 | 
	
		
			
				|  |  | +            return add(dto, userDTO);
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public String add(ZsSaveInfoDto dto, UserDTO userDTO) throws Exception{
 | 
	
		
			
				|  |  | +        // 生成id
 | 
	
		
			
				|  |  | +        String id = UUID.randomUUID().toString().replace("-", "");
 | 
	
		
			
				|  |  | +        // 生成编号
 | 
	
		
			
				|  |  | +        String no = serialnumTplService.genSerialNum(userDTO.getCompanyDTO().getId(), ZsSaveInfoDto.BIZ_CODE);
 | 
	
		
			
				|  |  | +        // 保存基础信息表信息
 | 
	
		
			
				|  |  | +        ZsReimbursementInfo info = new ZsReimbursementInfo();
 | 
	
		
			
				|  |  | +        BeanUtils.copyProperties(dto, info);
 | 
	
		
			
				|  |  | +        info.setId(id);
 | 
	
		
			
				|  |  | +        info.setNo(no);
 | 
	
		
			
				|  |  | +        info.setCreateById(userDTO.getId());
 | 
	
		
			
				|  |  | +        info.setCreateTime(new Date());
 | 
	
		
			
				|  |  | +        info.setUpdateById(userDTO.getId());
 | 
	
		
			
				|  |  | +        info.setUpdateTime(new Date());
 | 
	
		
			
				|  |  | +        info.setDelFlag(0);
 | 
	
		
			
				|  |  | +        infoMapper.insert(info);
 | 
	
		
			
				|  |  | +        // 保存项目详情列表信息
 | 
	
		
			
				|  |  | +        if (CollectionUtils.isNotEmpty(dto.getDetailInfos())) {
 | 
	
		
			
				|  |  | +            for (ZsReimbursementDetailInfo detailInfo : dto.getDetailInfos()) {
 | 
	
		
			
				|  |  | +                // 保存基础表信息主键值
 | 
	
		
			
				|  |  | +                detailInfo.setInfoId(id);
 | 
	
		
			
				|  |  | +                detailInfoMapper.insert(detailInfo);
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 保存合同详情列表信息
 | 
	
		
			
				|  |  | +        if (CollectionUtils.isNotEmpty(dto.getDetailInfoContracts())) {
 | 
	
		
			
				|  |  | +            for (ZsReimbursementDetailInfoContract detailInfo : dto.getDetailInfoContracts()) {
 | 
	
		
			
				|  |  | +                // 保存基础表信息主键值
 | 
	
		
			
				|  |  | +                detailInfo.setInfoId(id);
 | 
	
		
			
				|  |  | +                zsReimbursementDetailInfoContractMapper.insert(detailInfo);
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 保存报告详情列表信息
 | 
	
		
			
				|  |  | +        if (CollectionUtils.isNotEmpty(dto.getDetailInfoReports())) {
 | 
	
		
			
				|  |  | +            for (ZsReimbursementDetailInfoReport detailInfo : dto.getDetailInfoReports()) {
 | 
	
		
			
				|  |  | +                // 保存基础表信息主键值
 | 
	
		
			
				|  |  | +                detailInfo.setInfoId(id);
 | 
	
		
			
				|  |  | +                zsReimbursementDetailInfoReportMapper.insert(detailInfo);
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 保存其他报销详情列表信息
 | 
	
		
			
				|  |  | +        if (CollectionUtils.isNotEmpty(dto.getDetailInfoOthers())) {
 | 
	
		
			
				|  |  | +            for (ZsReimbursementDetailInfoOther detailInfo : dto.getDetailInfoOthers()) {
 | 
	
		
			
				|  |  | +                // 保存基础表信息主键值
 | 
	
		
			
				|  |  | +                detailInfo.setInfoId(id);
 | 
	
		
			
				|  |  | +                zsReimbursementDetailInfoOtherMapper.insert(detailInfo);
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 保存采购报销详情列表信息
 | 
	
		
			
				|  |  | +        if (CollectionUtils.isNotEmpty(dto.getDetailInfoProcured())) {
 | 
	
		
			
				|  |  | +            for (ZsReimbursementDetailInfoProcured detailInfo : dto.getDetailInfoProcured()) {
 | 
	
		
			
				|  |  | +                // 保存基础表信息主键值
 | 
	
		
			
				|  |  | +                detailInfo.setInfoId(id);
 | 
	
		
			
				|  |  | +                zsReimbursementDetailInfoProcuredMapper.insert(detailInfo);
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 保存专用发票列表信息
 | 
	
		
			
				|  |  | +        if (CollectionUtils.isNotEmpty(dto.getAmountInfos())) {
 | 
	
		
			
				|  |  | +            for (ZsReimbursementAmountInfo amountInfo : dto.getAmountInfos()) {
 | 
	
		
			
				|  |  | +                // 生成id
 | 
	
		
			
				|  |  | +                String amountId = UUID.randomUUID().toString().replace("-", "");
 | 
	
		
			
				|  |  | +                amountInfo.setId(amountId);
 | 
	
		
			
				|  |  | +                amountInfo.setCreateById(userDTO.getId());
 | 
	
		
			
				|  |  | +                amountInfo.setCreateTime(new Date());
 | 
	
		
			
				|  |  | +                amountInfo.setUpdateById(userDTO.getId());
 | 
	
		
			
				|  |  | +                amountInfo.setUpdateTime(new Date());
 | 
	
		
			
				|  |  | +                amountInfo.setDelFlag(0);
 | 
	
		
			
				|  |  | +                // 保存基础表信息主键值
 | 
	
		
			
				|  |  | +                amountInfo.setInfoId(id);
 | 
	
		
			
				|  |  | +                amountInfoMapper.insert(amountInfo);
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 保存附件列表信息
 | 
	
		
			
				|  |  | +        if (CollectionUtils.isNotEmpty(dto.getFiles())) {
 | 
	
		
			
				|  |  | +            infoService.saveFiles(dto.getFiles(), userDTO, id);
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        return id;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public String update(ZsSaveInfoDto dto, UserDTO userDTO) {
 | 
	
		
			
				|  |  | +        // 修改基础信息
 | 
	
		
			
				|  |  | +        ZsReimbursementInfo info = new ZsReimbursementInfo();
 | 
	
		
			
				|  |  | +        BeanUtils.copyProperties(dto, info);
 | 
	
		
			
				|  |  | +        info.setUpdateById(userDTO.getId());
 | 
	
		
			
				|  |  | +        info.setUpdateTime(new Date());
 | 
	
		
			
				|  |  | +        infoMapper.updateById(info);
 | 
	
		
			
				|  |  | +        // 修改报销详情列表信息
 | 
	
		
			
				|  |  | +        // 删除原有数据
 | 
	
		
			
				|  |  | +        LambdaQueryWrapper<ZsReimbursementDetailInfo> detailWrapper = new LambdaQueryWrapper<>();
 | 
	
		
			
				|  |  | +        detailWrapper.eq(ZsReimbursementDetailInfo::getInfoId, dto.getId());
 | 
	
		
			
				|  |  | +        detailInfoMapper.delete(detailWrapper);
 | 
	
		
			
				|  |  | +        // 删除合同列表
 | 
	
		
			
				|  |  | +        LambdaQueryWrapper<ZsReimbursementDetailInfoContract> detailWrapperContract = new LambdaQueryWrapper<>();
 | 
	
		
			
				|  |  | +        detailWrapperContract.eq(ZsReimbursementDetailInfoContract::getInfoId, dto.getId());
 | 
	
		
			
				|  |  | +        zsReimbursementDetailInfoContractMapper.delete(detailWrapperContract);
 | 
	
		
			
				|  |  | +        // 删除报告列表
 | 
	
		
			
				|  |  | +        LambdaQueryWrapper<ZsReimbursementDetailInfoReport> detailWrapperReport = new LambdaQueryWrapper<>();
 | 
	
		
			
				|  |  | +        detailWrapperReport.eq(ZsReimbursementDetailInfoReport::getInfoId, dto.getId());
 | 
	
		
			
				|  |  | +        zsReimbursementDetailInfoReportMapper.delete(detailWrapperReport);
 | 
	
		
			
				|  |  | +        // 删除其他报销表
 | 
	
		
			
				|  |  | +        LambdaQueryWrapper<ZsReimbursementDetailInfoOther> detailWrapperOthers = new LambdaQueryWrapper<>();
 | 
	
		
			
				|  |  | +        detailWrapperOthers.eq(ZsReimbursementDetailInfoOther::getInfoId, dto.getId());
 | 
	
		
			
				|  |  | +        zsReimbursementDetailInfoOtherMapper.delete(detailWrapperOthers);
 | 
	
		
			
				|  |  | +        // 删除采购报销表
 | 
	
		
			
				|  |  | +        LambdaQueryWrapper<ZsReimbursementDetailInfoProcured> detailWrapperProcured = new LambdaQueryWrapper<>();
 | 
	
		
			
				|  |  | +        detailWrapperProcured.eq(ZsReimbursementDetailInfoProcured::getInfoId, dto.getId());
 | 
	
		
			
				|  |  | +        zsReimbursementDetailInfoProcuredMapper.delete(detailWrapperProcured);
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        // 保存项目详情列表信息
 | 
	
		
			
				|  |  | +        if (CollectionUtils.isNotEmpty(dto.getDetailInfos())) {
 | 
	
		
			
				|  |  | +            for (ZsReimbursementDetailInfo detailInfo : dto.getDetailInfos()) {
 | 
	
		
			
				|  |  | +                // 保存基础表信息主键值
 | 
	
		
			
				|  |  | +                detailInfo.setInfoId(dto.getId());
 | 
	
		
			
				|  |  | +                detailInfo.setId("");
 | 
	
		
			
				|  |  | +                detailInfoMapper.insert(detailInfo);
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 保存合同详情列表信息
 | 
	
		
			
				|  |  | +        if (CollectionUtils.isNotEmpty(dto.getDetailInfoContracts())) {
 | 
	
		
			
				|  |  | +            for (ZsReimbursementDetailInfoContract detailInfo : dto.getDetailInfoContracts()) {
 | 
	
		
			
				|  |  | +                // 保存基础表信息主键值
 | 
	
		
			
				|  |  | +                detailInfo.setInfoId(dto.getId());
 | 
	
		
			
				|  |  | +                detailInfo.setId("");
 | 
	
		
			
				|  |  | +                zsReimbursementDetailInfoContractMapper.insert(detailInfo);
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 保存报告详情列表信息
 | 
	
		
			
				|  |  | +        if (CollectionUtils.isNotEmpty(dto.getDetailInfoReports())) {
 | 
	
		
			
				|  |  | +            for (ZsReimbursementDetailInfoReport detailInfo : dto.getDetailInfoReports()) {
 | 
	
		
			
				|  |  | +                // 保存基础表信息主键值
 | 
	
		
			
				|  |  | +                detailInfo.setInfoId(dto.getId());
 | 
	
		
			
				|  |  | +                detailInfo.setId("");
 | 
	
		
			
				|  |  | +                zsReimbursementDetailInfoReportMapper.insert(detailInfo);
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 保存其他报销详情列表信息
 | 
	
		
			
				|  |  | +        if (CollectionUtils.isNotEmpty(dto.getDetailInfoOthers())) {
 | 
	
		
			
				|  |  | +            for (ZsReimbursementDetailInfoOther detailInfo : dto.getDetailInfoOthers()) {
 | 
	
		
			
				|  |  | +                // 保存基础表信息主键值
 | 
	
		
			
				|  |  | +                detailInfo.setInfoId(dto.getId());
 | 
	
		
			
				|  |  | +                detailInfo.setId("");
 | 
	
		
			
				|  |  | +                zsReimbursementDetailInfoOtherMapper.insert(detailInfo);
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 保存采购报销详情列表信息
 | 
	
		
			
				|  |  | +        if (CollectionUtils.isNotEmpty(dto.getDetailInfoProcured())) {
 | 
	
		
			
				|  |  | +            for (ZsReimbursementDetailInfoProcured detailInfo : dto.getDetailInfoProcured()) {
 | 
	
		
			
				|  |  | +                // 保存基础表信息主键值
 | 
	
		
			
				|  |  | +                detailInfo.setInfoId(dto.getId());
 | 
	
		
			
				|  |  | +                detailInfo.setId("");
 | 
	
		
			
				|  |  | +                zsReimbursementDetailInfoProcuredMapper.insert(detailInfo);
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 修改专用发票信息列表
 | 
	
		
			
				|  |  | +        // 删除原有数据
 | 
	
		
			
				|  |  | +        LambdaQueryWrapper<ZsReimbursementAmountInfo> amountWrapper = new LambdaQueryWrapper<>();
 | 
	
		
			
				|  |  | +        amountWrapper.eq(ZsReimbursementAmountInfo::getInfoId, dto.getId());
 | 
	
		
			
				|  |  | +        amountInfoMapper.delete(amountWrapper);
 | 
	
		
			
				|  |  | +        if (CollectionUtils.isNotEmpty(dto.getAmountInfos())) {
 | 
	
		
			
				|  |  | +            for (ZsReimbursementAmountInfo amountInfo : dto.getAmountInfos()) {
 | 
	
		
			
				|  |  | +                // 生成id
 | 
	
		
			
				|  |  | +                String amountId = UUID.randomUUID().toString().replace("-", "");
 | 
	
		
			
				|  |  | +                amountInfo.setId(amountId);
 | 
	
		
			
				|  |  | +                amountInfo.setCreateById(userDTO.getId());
 | 
	
		
			
				|  |  | +                amountInfo.setCreateTime(new Date());
 | 
	
		
			
				|  |  | +                amountInfo.setUpdateById(userDTO.getId());
 | 
	
		
			
				|  |  | +                amountInfo.setUpdateTime(new Date());
 | 
	
		
			
				|  |  | +                amountInfo.setDelFlag(0);
 | 
	
		
			
				|  |  | +                // 保存基础表信息主键值
 | 
	
		
			
				|  |  | +                amountInfo.setInfoId(dto.getId());
 | 
	
		
			
				|  |  | +                amountInfoMapper.insert(amountInfo);
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 修改附件信息列表
 | 
	
		
			
				|  |  | +        if (CollectionUtils.isNotEmpty(dto.getFiles())) {
 | 
	
		
			
				|  |  | +            infoService.updateFiles(dto.getFiles(), userDTO, dto.getId());
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        return dto.getId();
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public String remove(String id) {
 | 
	
		
			
				|  |  | +        // 删除基础信息表
 | 
	
		
			
				|  |  | +        infoMapper.deleteById(id);
 | 
	
		
			
				|  |  | +        // 删除详情列表
 | 
	
		
			
				|  |  | +        LambdaQueryWrapper<ZsReimbursementDetailInfo> detailWrapper = new LambdaQueryWrapper<>();
 | 
	
		
			
				|  |  | +        detailWrapper.eq(ZsReimbursementDetailInfo::getInfoId, id);
 | 
	
		
			
				|  |  | +        detailInfoMapper.delete(detailWrapper);
 | 
	
		
			
				|  |  | +        // 删除合同列表
 | 
	
		
			
				|  |  | +        LambdaQueryWrapper<ZsReimbursementDetailInfoContract> detailWrapperContract = new LambdaQueryWrapper<>();
 | 
	
		
			
				|  |  | +        detailWrapperContract.eq(ZsReimbursementDetailInfoContract::getInfoId, id);
 | 
	
		
			
				|  |  | +        zsReimbursementDetailInfoContractMapper.delete(detailWrapperContract);
 | 
	
		
			
				|  |  | +        // 删除报告列表
 | 
	
		
			
				|  |  | +        LambdaQueryWrapper<ZsReimbursementDetailInfoReport> detailWrapperReport = new LambdaQueryWrapper<>();
 | 
	
		
			
				|  |  | +        detailWrapperReport.eq(ZsReimbursementDetailInfoReport::getInfoId, id);
 | 
	
		
			
				|  |  | +        zsReimbursementDetailInfoReportMapper.delete(detailWrapperReport);
 | 
	
		
			
				|  |  | +        // 删除其他报销列表
 | 
	
		
			
				|  |  | +        LambdaQueryWrapper<ZsReimbursementDetailInfoOther> detailWrapperOther = new LambdaQueryWrapper<>();
 | 
	
		
			
				|  |  | +        detailWrapperOther.eq(ZsReimbursementDetailInfoOther::getInfoId, id);
 | 
	
		
			
				|  |  | +        zsReimbursementDetailInfoOtherMapper.delete(detailWrapperOther);
 | 
	
		
			
				|  |  | +        // 删除采购报销列表
 | 
	
		
			
				|  |  | +        LambdaQueryWrapper<ZsReimbursementDetailInfoProcured> detailWrapperProcured = new LambdaQueryWrapper<>();
 | 
	
		
			
				|  |  | +        detailWrapperProcured.eq(ZsReimbursementDetailInfoProcured::getInfoId, id);
 | 
	
		
			
				|  |  | +        zsReimbursementDetailInfoProcuredMapper.delete(detailWrapperProcured);
 | 
	
		
			
				|  |  | +        // 删除专用发票信息列表
 | 
	
		
			
				|  |  | +        LambdaQueryWrapper<ZsReimbursementAmountInfo> amountInfoLambdaQueryWrapper = new LambdaQueryWrapper<>();
 | 
	
		
			
				|  |  | +        amountInfoLambdaQueryWrapper.eq(ZsReimbursementAmountInfo::getInfoId, id);
 | 
	
		
			
				|  |  | +        amountInfoMapper.delete(amountInfoLambdaQueryWrapper);
 | 
	
		
			
				|  |  | +        // 删除附件信息
 | 
	
		
			
				|  |  | +        LambdaQueryWrapper<WorkAttachment> wrapper = new LambdaQueryWrapper<>();
 | 
	
		
			
				|  |  | +        wrapper.eq(WorkAttachment::getAttachmentId, id);
 | 
	
		
			
				|  |  | +        ossServiceMapper.delete(wrapper);
 | 
	
		
			
				|  |  | +        return "操作成功";
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public ZsSaveInfoDto findById(String id) {
 | 
	
		
			
				|  |  | +        ZsSaveInfoDto dto = new ZsSaveInfoDto();
 | 
	
		
			
				|  |  | +        // 查询基础信息表
 | 
	
		
			
				|  |  | +        ZsReimbursementInfo info = infoMapper.selectById(id);
 | 
	
		
			
				|  |  | +        if (ObjectUtil.isNotEmpty(info)){
 | 
	
		
			
				|  |  | +            BeanUtils.copyProperties(info, dto);
 | 
	
		
			
				|  |  | +            if(StringUtils.isNotBlank(info.getDepartment())) {
 | 
	
		
			
				|  |  | +                Office byId = officeService.getById(info.getDepartment());
 | 
	
		
			
				|  |  | +                if (ObjectUtil.isNotEmpty(byId)) {
 | 
	
		
			
				|  |  | +                    dto.setDepartmentName(byId.getName());
 | 
	
		
			
				|  |  | +                }
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            // 查询详情列表
 | 
	
		
			
				|  |  | +//        LambdaQueryWrapper<ZsReimbursementDetailInfo> detailInfoLambdaQueryWrapper = new LambdaQueryWrapper<>();
 | 
	
		
			
				|  |  | +//        detailInfoLambdaQueryWrapper.eq(ZsReimbursementDetailInfo::getInfoId, id);
 | 
	
		
			
				|  |  | +//        detailInfoLambdaQueryWrapper.orderByAsc(ZsReimbursementDetailInfo::getNumber);
 | 
	
		
			
				|  |  | +//        List<ZsReimbursementDetailInfo> detailInfos = detailInfoMapper.selectList(detailInfoLambdaQueryWrapper);
 | 
	
		
			
				|  |  | +            // 项目报销详情
 | 
	
		
			
				|  |  | +            dto.setDetailInfos(infoMapper.getDetailList(id));
 | 
	
		
			
				|  |  | +            // 合同报销详情
 | 
	
		
			
				|  |  | +            dto.setDetailInfoContracts(infoMapper.getContractDetailList(id));
 | 
	
		
			
				|  |  | +            // 报告报销详情
 | 
	
		
			
				|  |  | +            dto.setDetailInfoReports(infoMapper.getReportDetailList(id));
 | 
	
		
			
				|  |  | +            // 其他报销
 | 
	
		
			
				|  |  | +            dto.setDetailInfoOthers(infoMapper.getOtherDetailList(id));
 | 
	
		
			
				|  |  | +            // 采购报销
 | 
	
		
			
				|  |  | +            dto.setDetailInfoProcured(infoMapper.getProcuredDetailList(id));
 | 
	
		
			
				|  |  | +            // 查询专用发票信息列表
 | 
	
		
			
				|  |  | +            LambdaQueryWrapper<ZsReimbursementAmountInfo> amountInfoLambdaQueryWrapper = new LambdaQueryWrapper<>();
 | 
	
		
			
				|  |  | +            amountInfoLambdaQueryWrapper.eq(ZsReimbursementAmountInfo::getInfoId, id);
 | 
	
		
			
				|  |  | +            List<ZsReimbursementAmountInfo> amountInfos = amountInfoMapper.selectList(amountInfoLambdaQueryWrapper);
 | 
	
		
			
				|  |  | +            dto.setAmountInfos(amountInfos);
 | 
	
		
			
				|  |  | +            // 查询附件信息
 | 
	
		
			
				|  |  | +            List<WorkAttachmentDto> files = infoMapper.findFiles(id);
 | 
	
		
			
				|  |  | +            if (CollectionUtils.isNotEmpty(files)) {
 | 
	
		
			
				|  |  | +                for (WorkAttachmentDto i : files) {
 | 
	
		
			
				|  |  | +                    i.setCreateBy(UserUtils.get(i.getBy()));
 | 
	
		
			
				|  |  | +                }
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +            dto.setFiles(files);
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        return dto;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public Boolean checkNumber(String number) {
 | 
	
		
			
				|  |  | +        LambdaQueryWrapper<ZsReimbursementAmountInfo> wrapper = new LambdaQueryWrapper<>();
 | 
	
		
			
				|  |  | +        wrapper.eq(ZsReimbursementAmountInfo::getNumber, number);
 | 
	
		
			
				|  |  | +        List<ZsReimbursementAmountInfo> infos = amountInfoMapper.selectList(wrapper);
 | 
	
		
			
				|  |  | +        if (CollectionUtils.isNotEmpty(infos)) {
 | 
	
		
			
				|  |  | +            return true;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        return false;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public void updateStatusById(ZsRetureListDto dto) {
 | 
	
		
			
				|  |  | +        infoMapper.updateStatusById(dto.getId(), dto.getType());
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    //用户树形
 | 
	
		
			
				|  |  | +    public List<ZsTreeUserDto> userTree(String name) {
 | 
	
		
			
				|  |  | +        List<ZsTreeUserDto> list = new ArrayList<>();
 | 
	
		
			
				|  |  | +        // 查询部门
 | 
	
		
			
				|  |  | +        List<ZsTreeUserDto> officeList = infoMapper.findOfficeList();
 | 
	
		
			
				|  |  | +        if (CollectionUtils.isNotEmpty(officeList)) {
 | 
	
		
			
				|  |  | +            list.addAll(officeList);
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 查询用户
 | 
	
		
			
				|  |  | +        List<ZsTreeUserDto> userList = infoMapper.findUserList(name);
 | 
	
		
			
				|  |  | +        if (CollectionUtils.isNotEmpty(userList)) {
 | 
	
		
			
				|  |  | +            list.addAll(userList);
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        return list;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    /**
 | 
	
		
			
				|  |  | +     * 下载列表查询
 | 
	
		
			
				|  |  | +     */
 | 
	
		
			
				|  |  | +    public List<ZsRetureListDto> exportList(ZsQueryListDto dto) throws Exception{
 | 
	
		
			
				|  |  | +        QueryWrapper<ZsQueryListDto> queryWrapper = QueryWrapperGenerator.buildQueryCondition(dto, ZsQueryListDto.class);
 | 
	
		
			
				|  |  | +        /**
 | 
	
		
			
				|  |  | +         * a表是reimbursementInfo
 | 
	
		
			
				|  |  | +         * b表是reimbursementDetailInfo
 | 
	
		
			
				|  |  | +         * c表是sysUser
 | 
	
		
			
				|  |  | +         */
 | 
	
		
			
				|  |  | +        queryWrapper.eq("a.del_flag", 0);
 | 
	
		
			
				|  |  | +        // 报销项目
 | 
	
		
			
				|  |  | +        if (StringUtils.isNotEmpty(dto.getProject())) {
 | 
	
		
			
				|  |  | +            queryWrapper.apply("(b.project_id = {0} OR p.project_name LIKE {1})", dto.getProject(), "%" + dto.getProject() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply("(b3.project_id = {0} OR p3.project_name LIKE {1})", dto.getProject(), "%" + dto.getProject() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply("(b4.project_id = {0} OR b4.project_name LIKE {1})", dto.getProject(), "%" + dto.getProject() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply("(b5.project_id = {0} OR b5.project_name LIKE {1})", dto.getProject(), "%" + dto.getProject() + "%");
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 报销时间
 | 
	
		
			
				|  |  | +        if (dto.getDates() != null) {
 | 
	
		
			
				|  |  | +            queryWrapper.between("a.reim_date", dto.getDates()[0], dto.getDates()[1]);
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 经办人
 | 
	
		
			
				|  |  | +        if (StringUtils.isNotEmpty(dto.getHandled())) {
 | 
	
		
			
				|  |  | +            queryWrapper.apply("(a.create_by_id = {0} OR c.name LIKE {1})", dto.getHandled(), "%" + dto.getHandled() + "%");
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 报销人
 | 
	
		
			
				|  |  | +        if (StringUtils.isNotEmpty(dto.getReimBy())) {
 | 
	
		
			
				|  |  | +            queryWrapper.apply("( b.user_id = {0} OR us.name LIKE {1} )", dto.getReimBy(), "%" + dto.getReimBy() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply("( b2.user_id = {0} OR us2.name LIKE {1} )", dto.getReimBy(), "%" + dto.getReimBy() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply("( b3.user_id = {0} OR us3.name LIKE {1} )", dto.getReimBy(), "%" + dto.getReimBy() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply("( b4.user_id = {0} OR us4.name LIKE {1} )", dto.getReimBy(), "%" + dto.getReimBy() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply("( b5.user_id = {0} OR" +
 | 
	
		
			
				|  |  | +                    " us5.name LIKE {1} )", dto.getReimBy(), "%" + dto.getReimBy() + "%");
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 报销状态
 | 
	
		
			
				|  |  | +        if (StringUtils.isNotEmpty(dto.getType())) {
 | 
	
		
			
				|  |  | +            queryWrapper.eq("a.type", dto.getType());
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 报销部门
 | 
	
		
			
				|  |  | +        if (StringUtils.isNotEmpty(dto.getDepartment())) {
 | 
	
		
			
				|  |  | +            queryWrapper.apply("( b.dept_id = {0} OR so.name LIKE {1} )", dto.getDepartment(), "%" + dto.getDepartment() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply("( b2.dept_id = {0} OR so2.name LIKE {1} )", dto.getDepartment(), "%" + dto.getDepartment() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply("( b3.dept_id = {0} OR so3.name LIKE {1} )", dto.getDepartment(), "%" + dto.getDepartment() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply("( b4.dept_id = {0} OR so4.name LIKE {1} )", dto.getDepartment(), "%" + dto.getDepartment() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply("( b5.dept_id = {0} OR so5.name LIKE {1} )", dto.getDepartment(), "%" + dto.getDepartment() + "%");
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 报销类别
 | 
	
		
			
				|  |  | +        if (StringUtils.isNotEmpty(dto.getRemiType())) {
 | 
	
		
			
				|  |  | +            queryWrapper.apply(" (b.type_id = {0} OR t.name LIKE {1}) ", dto.getRemiType(), "%" + dto.getRemiType() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply(" (b2.type_id = {0} OR t2.name LIKE {1}) ", dto.getRemiType(), "%" + dto.getRemiType() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply(" (b3.type_id = {0} OR t3.name LIKE {1}) ", dto.getRemiType(), "%" + dto.getRemiType() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply(" (b4.type_id = {0} OR t4.name LIKE {1}) ", dto.getRemiType(), "%" + dto.getRemiType() + "%");
 | 
	
		
			
				|  |  | +            queryWrapper.or().apply(" (b5.type_id = {0} OR t5.name LIKE {1}) ", dto.getRemiType(), "%" + dto.getRemiType() + "%");
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 报销金额
 | 
	
		
			
				|  |  | +        if (dto.getAmounts() != null) {
 | 
	
		
			
				|  |  | +            if (StringUtils.isNotEmpty(dto.getAmounts()[0])) {
 | 
	
		
			
				|  |  | +                queryWrapper.and(w ->
 | 
	
		
			
				|  |  | +                        w.ge("b.number", Double.parseDouble(dto.getAmounts()[0]))
 | 
	
		
			
				|  |  | +                                .or().ge("b2.number", Double.parseDouble(dto.getAmounts()[0]))
 | 
	
		
			
				|  |  | +                                .or().ge("b3.number", Double.parseDouble(dto.getAmounts()[0]))
 | 
	
		
			
				|  |  | +                                .or().ge("b4.number", Double.parseDouble(dto.getAmounts()[0]))
 | 
	
		
			
				|  |  | +                                .or().ge("b5.number", Double.parseDouble(dto.getAmounts()[0]))
 | 
	
		
			
				|  |  | +                );
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +            if (StringUtils.isNotEmpty(dto.getAmounts()[1])) {
 | 
	
		
			
				|  |  | +                queryWrapper.and(w ->
 | 
	
		
			
				|  |  | +                        w.le("b.number", Double.parseDouble(dto.getAmounts()[1]))
 | 
	
		
			
				|  |  | +                                .or().le("b2.number", Double.parseDouble(dto.getAmounts()[1]))
 | 
	
		
			
				|  |  | +                                .or().le("b3.number", Double.parseDouble(dto.getAmounts()[1]))
 | 
	
		
			
				|  |  | +                                .or().le("b4.number", Double.parseDouble(dto.getAmounts()[1]))
 | 
	
		
			
				|  |  | +                                .or().le("b5.number", Double.parseDouble(dto.getAmounts()[1]))
 | 
	
		
			
				|  |  | +                );
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 报告号
 | 
	
		
			
				|  |  | +        if (StringUtils.isNotEmpty(dto.getReportNumber())) {
 | 
	
		
			
				|  |  | +            queryWrapper.like("b.report_number", dto.getReportNumber());
 | 
	
		
			
				|  |  | +            queryWrapper.or().like("b2.report_number", dto.getReportNumber());
 | 
	
		
			
				|  |  | +            queryWrapper.or().like("b3.report_number", dto.getReportNumber());
 | 
	
		
			
				|  |  | +            queryWrapper.or().like("b4.report_number", dto.getReportNumber());
 | 
	
		
			
				|  |  | +            queryWrapper.or().like("b5.report_number", dto.getReportNumber());
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        // 报销类型
 | 
	
		
			
				|  |  | +        if (StringUtils.isNotBlank(dto.getSourceType())) {
 | 
	
		
			
				|  |  | +            queryWrapper.eq("a.source_type", dto.getSourceType());
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        List<ZsRetureListDto> exportList = infoMapper.findExportList(queryWrapper);
 | 
	
		
			
				|  |  | +        if (CollectionUtils.isNotEmpty(exportList)) {
 | 
	
		
			
				|  |  | +            for (ZsRetureListDto retureListDto : exportList) {
 | 
	
		
			
				|  |  | +                if ("1".equals(retureListDto.getType())) {
 | 
	
		
			
				|  |  | +                    retureListDto.setType("暂存");
 | 
	
		
			
				|  |  | +                }
 | 
	
		
			
				|  |  | +                if ("2".equals(retureListDto.getType())) {
 | 
	
		
			
				|  |  | +                    retureListDto.setType("审批中");
 | 
	
		
			
				|  |  | +                }
 | 
	
		
			
				|  |  | +                if ("3".equals(retureListDto.getType())) {
 | 
	
		
			
				|  |  | +                    retureListDto.setType("撤回");
 | 
	
		
			
				|  |  | +                }
 | 
	
		
			
				|  |  | +                if ("4".equals(retureListDto.getType())) {
 | 
	
		
			
				|  |  | +                    retureListDto.setType("驳回");
 | 
	
		
			
				|  |  | +                }
 | 
	
		
			
				|  |  | +                if ("5".equals(retureListDto.getType())) {
 | 
	
		
			
				|  |  | +                    retureListDto.setType("已完成");
 | 
	
		
			
				|  |  | +                }
 | 
	
		
			
				|  |  | +                if (StringUtils.isNotBlank(retureListDto.getSourceType())) {
 | 
	
		
			
				|  |  | +                    if ("2".equals(retureListDto.getSourceType())) {
 | 
	
		
			
				|  |  | +                        retureListDto.setContractName(retureListDto.getProjectName());
 | 
	
		
			
				|  |  | +                        retureListDto.setProjectName("");
 | 
	
		
			
				|  |  | +                    }
 | 
	
		
			
				|  |  | +                    retureListDto.setSourceType(DictUtils.getDictLabel(retureListDto.getSourceType(),"cw_reimbursement_source_type",""));
 | 
	
		
			
				|  |  | +                }
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        return exportList;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    /**
 | 
	
		
			
				|  |  | +     * 关联报销
 | 
	
		
			
				|  |  | +     */
 | 
	
		
			
				|  |  | +    public IPage<ZsRetureListDto> relationReimbursementList(Page<ZsRetureListDto> page, String id) {
 | 
	
		
			
				|  |  | +        IPage<ZsRetureListDto> iPage = infoMapper.relationReimbursementList(page, id);
 | 
	
		
			
				|  |  | +        return iPage;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +}
 |