package com.goafanti.expenseAccount.service.impl; import com.alibaba.fastjson.JSONObject; import com.goafanti.admin.bo.AdminListBo; import com.goafanti.admin.service.DepartmentService; import com.goafanti.common.bo.AdminNoticeBo; import com.goafanti.common.bo.EmailBo; import com.goafanti.common.constant.AFTConstants; import com.goafanti.common.dao.*; import com.goafanti.common.enums.NoticeStatus; import com.goafanti.common.enums.NoticeTypes; import com.goafanti.common.error.BusinessException; import com.goafanti.common.model.*; import com.goafanti.common.utils.AsyncUtils; import com.goafanti.common.utils.DateUtils; import com.goafanti.common.utils.LoggerUtils; import com.goafanti.common.utils.WeChatUtils; import com.goafanti.core.mybatis.BaseMybatisDao; import com.goafanti.core.mybatis.JDBCIdGenerator; import com.goafanti.core.mybatis.page.Pagination; import com.goafanti.core.shiro.token.TokenManager; import com.goafanti.expenseAccount.Enums.EAProcessStatus; import com.goafanti.expenseAccount.Enums.EATypes; import com.goafanti.expenseAccount.Enums.EAsecondaryTypes; import com.goafanti.expenseAccount.bo.*; import com.goafanti.expenseAccount.service.ExpenseAccountService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.cache.annotation.CacheEvict; import org.springframework.cache.annotation.Cacheable; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import java.math.BigDecimal; import java.util.*; import java.util.stream.Collectors; @Service public class ExpenseAccountServiceImpl extends BaseMybatisDao implements ExpenseAccountService { @Autowired private AdminMapper adminMapper; @Autowired private ExpenseAccountMapper expenseAccountMapper; @Autowired private PublicReleaseMapper publicReleaseMapper; @Autowired private ExpenseAccountLogMapper expenseAccountLogMapper; @Autowired private AsyncUtils asyncUtils; @Autowired private WeChatUtils weChatUtils; @Autowired private ExpenseAccountDetailsMapper expenseAccountDetailsMapper; @Autowired private ExpenseAccountPrivateMapper expenseAccountPrivateMapper; @Autowired private ExpenseAccountExamineMapper expenseAccountExamineMapper; @Autowired private JDBCIdGenerator idGenerator; @Autowired private FinanceCountMapper financeCountMapper; @Autowired private ExpenseRelationshipMapper expenseRelationshipMapper; @Autowired private DepartmentService departmentService; @Override public Integer add(InputExpenseAccount in) { //如果关联公出,获取公出信息 if (in.getPrid()!=null){ PublicRelease pr = publicReleaseMapper.selectByPrimaryKey(in.getPrid()); in.setReleaseStart(pr.getReleaseStart()); in.setReleaseEnd(pr.getReleaseEnd()); in.setDistrictName(pr.getDistrictName()); in.setUserNames(pr.getUserNames()); in.setDuration(pr.getDuration()); } //判断报销类型,0=固定费用,1=报销到订单 if (in.getOrderNo()==null){ in.setTargetType(0); }else { in.setTargetType(1); } if (in.getAid()==null)in.setAid(TokenManager.getAdminId()); Admin admin = adminMapper.selectByPrimaryKey(in.getAid()); in.setAname(admin.getName()); in.setApplyDep(admin.getDepartmentId()); in.setPayDep(admin.getDepartmentId()); expenseAccountMapper.insertSelective(in); return in.getId(); } /** * 新增报销审核流程 */ private void addExpenseAccountExamine(Integer id,ExpenseAccount ea) { List list=new ArrayList<>(); String aid = TokenManager.getAdminId(); Admin admin = adminMapper.selectByPrimaryKey(aid); for (int i=1;i<5;i++){ if (i==1){ //新增一级 ExpenseAccountExamine eae=new ExpenseAccountExamine(id,i); AdminNoticeBo a = adminMapper.selectMyAndSuperBySuperId(aid); String examineId=null; String examineName=null; //正常用上级,没有的情况下就是自己 if (a.getSuperId()!=null){ examineId=a.getSuperId(); examineName=a.getSuperName(); }else { examineId=a.getId(); examineName=a.getName(); } eae.setAuditor(examineId); eae.setAuditorname(examineName); ea.setExamineName(examineName); if (eae.getAuditor().equals(aid))eae.setStatus(1); else eae.setStatus(0); list.add(eae); }else if (i==2){ ExpenseAccountExamine eae=new ExpenseAccountExamine(id,i); Admin admin2 = adminMapper.selectFinanceAdminByAid(aid); if (admin2==null){ throw new BusinessException("发起人部门财务专员不存在。"); } eae.setAuditor(admin2.getId()); eae.setAuditorname(admin2.getName()); if (eae.getAuditor().equals(aid))eae.setStatus(1); else eae.setStatus(0); list.add(eae); }else if (i==3){ List admins = adminMapper.listAdminBydepIdAndRoleType(admin.getDepartmentId(), AFTConstants.SALESMAN_ADMIN); if (admins.isEmpty())throw new BusinessException("发起人部门营销管理员不存在。"); for (Admin e : admins) { ExpenseAccountExamine eae=new ExpenseAccountExamine(id,i); eae.setAuditor(e.getId()); eae.setAuditorname(e.getName()); if (eae.getAuditor().equals(aid))eae.setStatus(1); else eae.setStatus(0); list.add(eae); } }else if (i==4){ List admins = adminMapper.selectAdminByRoleType(AFTConstants.APPROVAL_DECISION); for (Admin e : admins) { ExpenseAccountExamine eae=new ExpenseAccountExamine(id,i); eae.setAuditor(e.getId()); eae.setAuditorname(e.getName()); if (eae.getAuditor().equals(aid))eae.setStatus(1); else eae.setStatus(0); list.add(eae); } } } expenseAccountExamineMapper.insertBatch(list); } /** * 新增报销日志 * @param eaid 报销编号 * @param status 状态 0发起 1通过 2完成 3驳回 4修改 * @param str 备注 */ private void addExpenseAccountLog(Integer eaid, Integer status,Integer processStatus,String aid, String str) { addExpenseAccountLog(eaid,status,processStatus,aid,str,null); } /** * 新增报销日志 * @param eaid 报销编号 * @param status 状态 0发起 1通过 2完成 3驳回 4修改 * @param str 备注 */ private void addExpenseAccountLog(Integer eaid, Integer status,Integer processStatus,String aid, String str,Date date) { if (aid==null)aid=TokenManager.getAdminId(); ExpenseAccountLog eaLog=new ExpenseAccountLog(); eaLog.setEaid(eaid); eaLog.setStatus(status); eaLog.setRemarks(str); eaLog.setProcessStatus(processStatus); eaLog.setAuditor(aid); if (date !=null)eaLog.setCreateTime(date); expenseAccountLogMapper.insertSelective(eaLog); } /** * 发起、驳回发起流程切换和日志站内信发送 */ private void addExpenseAccountLogAndNoticEmail(ExpenseAccount in, Integer status, String str) { String aid=TokenManager.getAdminId(); addExpenseAccountLog(in.getId(),status,in.getProcessStatus(),aid,str); if (status==0)in.setProcessStatus(1); Admin admin = adminMapper.selectByPrimaryKey(aid); if (admin.getSuperiorId()==null||admin.getId().equals(admin.getSuperiorId())){ in.setProcessStatus(in.getProcessStatus()+1); String str2=String.format("重复审核人跳过[%s]。",EAProcessStatus.getDesc(in.getProcessStatus())); Date date=new Date(); date.setTime(date.getTime()+1000L); addExpenseAccountLog(in.getId(),1,in.getProcessStatus(),aid,str2,date); } createExamineByProcess(in); } /** * 判断审核流程与发送日志与邮件 */ private void createExamineByProcess(ExpenseAccount in) { //审核流程推送到最新 AdminListBo admin = adminMapper.getDeptNameByAid(in.getAid()); examineByprocess(in,admin); List aids=new ArrayList<>(); if(in.getProcessStatus()== EAProcessStatus.SJSH.getCode()){ //获取上级 Admin superAdmin = adminMapper.selectByPrimaryKey(admin.getSuperiorId()); aids.add(superAdmin); in.setExamineName(superAdmin.getName()); }else if (in.getProcessStatus()== EAProcessStatus.CWSH.getCode()){ //获取财务负责人 Admin finaceAdmin = adminMapper.selectByPrimaryKey(admin.getDepFinance()); aids.add(finaceAdmin); in.setExamineName(finaceAdmin.getName()); addFinanceCount( admin.getDepFinance(), new Date()); }else if (in.getProcessStatus()== EAProcessStatus.ZJLSH.getCode()){ //获取部门负责人 List list = adminMapper.listAdminBydepIdAndRoleType(admin.getDepartmentId(), AFTConstants.SALESMAN_ADMIN); if (!list.isEmpty())aids.addAll(list); in.setExamineName(getAdmins(list)); }else if (in.getProcessStatus()== EAProcessStatus.DSZSH.getCode()){ //获取总裁、董事长等审核 List list = adminMapper.selectAdminByRoleType(AFTConstants.All_CED_AND_CHAIRMAN); if (!list.isEmpty())aids.addAll(list); in.setExamineName(getAdmins(list)); } StringBuffer str=new StringBuffer().append("您有报销需要审核,").append("报销编号[").append(in.getCheckNo()).append("]").append(",请查看并审核。"); addNoticeAndEmail(in, EAProcessStatus.SJSH.getCode(),str.toString(), admin.getName(),aids); } @Override @Transactional public int update(InputExpenseAccount in) { OutExpenseAccount useEA = expenseAccountMapper.selectByid(in.getId()); if (useEA.getStatus()!=0&&useEA.getStatus()!=3){ throw new BusinessException("不能操作审核中与完成的订单"); } if (in.getStartTimeStr()!=null&&in.getEndTimeStr()!=null){ in.setReleaseStart(DateUtils.StringToDate(in.getStartTimeStr(), AFTConstants.YYYYMMDDHHMMSS)); in.setReleaseEnd(DateUtils.StringToDate(in.getEndTimeStr(), AFTConstants.YYYYMMDDHHMMSS)); } //计算总金额 if (in.getTotalAmount()==null){ in.setTotalAmount(expenseAccountDetailsMapper.selectAmountCountByEAid(in.getId())); in.setRealAmount(in.getTotalAmount()); } in.setProcessStatus(0); if (in.getOrderNo()==null){ in.setTargetType(0); }else { in.setTargetType(1); } //计算本单已扣金额 如果有选择借支单,则需要修改借支状态 if (in.getDebitId()!=null){ //如果以前没有选择借支,修改报销和借支数据 if (useEA.getDebitId()==null){ pushExpenseAccountDebit(in); }else if (useEA.getDebitId()!=in.getDebitId()) { //如果是修改编号 pushExpenseAccountDebit(in); //并且要处理原编号的问题 pushResettingDebit(in,useEA.getDebitId()); } } if (in.getSettlementAmount()==null)in.setSettlementAmount(useEA.getSettlementAmount()); in.setAmount(in.getTotalAmount().subtract(in.getSettlementAmount())); in.setRealAmount(in.getAmount()); in.setStatus(0); return expenseAccountMapper.updateByPrimaryKeySelective(in); } @Override public Object updateDebitId(InputExpenseAccount in) { OutExpenseAccount useEA = expenseAccountMapper.selectByid(in.getId()); if (useEA.getDebitId()!=null)pushResettingDebit(in,useEA.getDebitId()); expenseAccountMapper.updateDeleteDebitId(in.getId()); return 1; } private void pushResettingDebit(InputExpenseAccount in, Integer debitId) { ExpenseAccount debit = expenseAccountMapper.selectByPrimaryKey(debitId); List list = expenseAccountMapper.selectByDebitId(debitId); ExpenseAccount newDebit=new ExpenseAccount(); newDebit.setId(debitId); //计算除开当前单,已选择抵扣金额 BigDecimal count=new BigDecimal(0); for (ExpenseAccount e : list) { if (!in.getId().equals(e.getId())){ count=count.add(e.getSettlementAmount()); } } newDebit.setSettlementAmount(count); if (count.compareTo(new BigDecimal(0))==0){ newDebit.setLiquidationStatus(0); }else if (count.compareTo(debit.getTotalAmount())<0){ newDebit.setLiquidationStatus(1); }else if (count.compareTo(debit.getTotalAmount())==0){ newDebit.setLiquidationStatus(2); } expenseAccountMapper.updateByPrimaryKeySelective(newDebit); } private void pushExpenseAccountDebit(InputExpenseAccount in) { ExpenseAccount debit = expenseAccountMapper.selectByPrimaryKey(in.getDebitId()); ExpenseAccount newDebit=new ExpenseAccount(); newDebit.setId(debit.getId()); //计算剩余需要支付金额 BigDecimal decbitAmount=debit.getTotalAmount().subtract(debit.getSettlementAmount()); //本次金额大于等于需要抵扣金额,则变成完全抵扣,抵扣金额变成本次已付金额 if (in.getTotalAmount().compareTo(decbitAmount)>=0){ in.setSettlementAmount(decbitAmount); newDebit.setSettlementAmount(debit.getTotalAmount()); newDebit.setLiquidationStatus(2); }else { // 本次金额小于需要抵扣,则本次变更全抵扣,借支已付加上本次金额 in.setSettlementAmount(in.getTotalAmount()); BigDecimal setAmount=new BigDecimal(0).add(debit.getSettlementAmount()).add(in.getTotalAmount()); newDebit.setSettlementAmount(setAmount); newDebit.setLiquidationStatus(1); } expenseAccountMapper.updateByPrimaryKeySelective(newDebit); } @Override public int addDetails(InputExpenseAccountDetails in) { if (in.getAgreeTimes()!=null){ in.setAgreeTime(DateUtils.StringToDate(in.getAgreeTimes(),AFTConstants.YYYYMMDD)); } ExpenseAccount expenseAccount = expenseAccountMapper.selectByPrimaryKey(in.getEaid()); if (expenseAccount.getType()==2){ in.setType(expenseAccount.getSecondaryType()); if (in.getType()==0){ in.setTypeOther(expenseAccount.getSecondaryTypeOther()); } } in.setRealAmount(in.getAmount()); expenseAccountDetailsMapper.insertSelective(in); return 1; } @Override public int deleteDetails(Integer id) { return expenseAccountDetailsMapper.deleteByPrimaryKey(id); } @Override public List detailsList(Integer eaid) { return expenseAccountDetailsMapper.selectByEAid(eaid); } @Override public Object logList(Integer eaid) { List list = expenseAccountLogMapper.selectByEaid(eaid); if (!list.isEmpty()){ OutExpenseAccountLog lastout=list.get(list.size()-1); if (lastout.getStatus()!=3){ List eaelist = expenseAccountExamineMapper.selectNotExamineByEaidAndProcessStatus(eaid, lastout.getProcessStatus()); list.addAll(eaelist); } } return list; } @Override public int updateExamine(InputExpenseAccount in) { ExpenseAccount useEa = expenseAccountMapper.selectByPrimaryKey(in.getId()); ExpenseAccount newEa=new ExpenseAccount(); newEa.setId(useEa.getId()); in.setCheckNo(useEa.getCheckNo()); //审核通知 获取发送人 AdminListBo admin = adminMapper.getDeptNameByAid(useEa.getAid()); addExamineExpenseAccountLog(admin,in, useEa, newEa); //完成申请 if (newEa.getStatus()==2){ //如果是借支则订单新增 List expenseAccounts1 = expenseAccountMapper.selectListByMainId(in.getId()); for (ExpenseAccount e : expenseAccounts1) { if (e.getType()!=4){ //不然就看是否挂载借支订单进行抵扣 if (e.getDebitId()!=null){ ExpenseAccount useDebit=expenseAccountMapper.selectByPrimaryKey(e.getDebitId()); if (useDebit.getLiquidationStatus()==2){ List expenseAccounts = expenseAccountMapper.selectByDebitId(e.getDebitId()); boolean flag=true; for (ExpenseAccount expenseAccount : expenseAccounts) { if(!expenseAccount.getId().equals(in.getId())&&expenseAccount.getStatus()!=2){ flag=false; break; } } if (flag){ ExpenseAccount debit=new ExpenseAccount(); debit.setId(e.getDebitId()); debit.setLiquidationStatus(3); expenseAccountMapper.updateByPrimaryKeySelective(debit); } } } } ExpenseAccount updateSon=new ExpenseAccount(); updateSon.setId(e.getId()); updateSon.setStatus(2); expenseAccountMapper.updateByPrimaryKeySelective(updateSon); } }else if (newEa.getStatus()==1){ if (newEa.getProcessStatus()==EAProcessStatus.CWSH.getCode()){ pushFinanceCount(admin.getDepFinance(),useEa.getCreateTime(),0); //处理金额修改 if(in.getRealList()!=null){ List maps = JSONObject.parseArray(in.getRealList(), Map.class); for (Map map: maps) { Integer type= (Integer) map.get("type"); Integer id= (Integer) map.get("id"); BigDecimal amount= new BigDecimal(map.get("amount").toString()); //type=1总计,type=2报销金额 if(type==1){ ExpenseAccount ea =new ExpenseAccount(); ea.setId(id); ea.setRealAmount(amount); expenseAccountMapper.updateByPrimaryKeySelective(ea); }else if (type==2){ ExpenseAccountDetails ead=new ExpenseAccountDetails(); ead.setId(id); ead.setRealAmount(amount); expenseAccountDetailsMapper.updateByPrimaryKeySelective(ead); } } } }else if (newEa.getProcessStatus()==EAProcessStatus.ZJLSH.getCode()){ pushFinanceCount(admin.getDepFinance(),useEa.getCreateTime(),1); } }else if (newEa.getStatus()==3){ if (useEa.getProcessStatus()==EAProcessStatus.CWSH.getCode()){ pushFinanceCount(admin.getDepFinance(),useEa.getCreateTime(),2); }else if (newEa.getProcessStatus()>EAProcessStatus.ZJLSH.getCode()){ pushFinanceCount(admin.getDepFinance(),useEa.getCreateTime(),3); } } //审核处理审核表 pushExpenseAccountExamine(in); expenseAccountMapper.updateByPrimaryKeySelective(newEa); return 1; } private void addFinanceCount(String aid,Date startTime ) { String forDate=DateUtils.formatDate(startTime,AFTConstants.YYYYMMDD); addFinanceCount(aid,forDate); } private void addFinanceCount(String aid,String startTime ) { FinanceCount financeCount = financeCountMapper.selectByAidAndDates(aid, startTime); if (financeCount ==null){ financeCount =FinanceCount.initialization(aid, startTime); financeCount.setExpenseCount(1); financeCount.setExpenseUnauditedCount(1); financeCountMapper.insertSelective(financeCount); }else { FinanceCount newFinanceCount =new FinanceCount(); newFinanceCount.setId(financeCount.getId()); newFinanceCount.setExpenseCount(financeCount.getExpenseCount()+1); newFinanceCount.setExpenseUnauditedCount(financeCount.getExpenseUnauditedCount()+1); financeCountMapper.updateByPrimaryKeySelective(newFinanceCount); } } private void pushExpenseAccountExamine(InputExpenseAccount in) { if (in.getStatus()==1){ expenseAccountExamineMapper.updateStatusByEaidAndAid(in.getId(),TokenManager.getAdminId(),1); }else if (in.getStatus()==3){ expenseAccountExamineMapper.updateStatusByEaidAndAid(in.getId(),null,0); } } private void addExamineExpenseAccountLog(AdminListBo admin,InputExpenseAccount in, ExpenseAccount useEa, ExpenseAccount newEa) { List aids=new ArrayList<>(); StringBuffer str=new StringBuffer(); Integer status=in.getStatus(); if (status==1){ str=str.append("您有报销需要审核,").append("报销编号[").append(in.getCheckNo()).append("]").append(",请查看并审核。"); //新的流程是当前流程+1 newEa.setProcessStatus(useEa.getProcessStatus()+1); newEa.setAid(useEa.getAid()); newEa.setCreateTime(useEa.getCreateTime()); pushExamineProcess(newEa,admin); if (newEa.getProcessStatus()== EAProcessStatus.CWSH.getCode()){ //获取财务负责人 Admin finaceAdmin = adminMapper.selectByPrimaryKey(admin.getDepFinance()); aids.add(finaceAdmin); newEa.setExamineName(finaceAdmin.getName()); }else if (newEa.getProcessStatus()== EAProcessStatus.ZJLSH.getCode()){ //获取部门负责人 List list = adminMapper.listAdminBydepIdAndRoleType(admin.getDepartmentId(), AFTConstants.SALESMAN_ADMIN); if (!list.isEmpty())aids.addAll(list); newEa.setExamineName(getAdmins(list)); }else if (newEa.getProcessStatus()== EAProcessStatus.DSZSH.getCode()){ //获取总裁、董事长等审核 List list = adminMapper.selectAdminByRoleType(AFTConstants.APPROVAL_DECISION); if (!list.isEmpty())aids.addAll(list); newEa.setExamineName(getAdmins(list)); }else if (newEa.getProcessStatus()== EAProcessStatus.WCSH.getCode()){ //获取报销申请人 status =2; Admin finaceAdmin = adminMapper.selectByPrimaryKey(admin.getDepFinance()); //同事添加通知财务管理员与公司副总 List admins = adminMapper.selectAdminByRoleType(AFTConstants.FINANCE_ADMIN); aids.addAll(admins); List viceCEO = adminMapper.selectAdminByRoleType(AFTConstants.VICE_CEO); aids.addAll(viceCEO); aids.add(finaceAdmin); str.setLength(0); str=str.append("报销编号[").append(in.getCheckNo()).append("]审核已通过,请注意查看。"); addNoticeAndEmail(in, status,str.toString(),admin.getName(),aids); aids.clear(); aids.add(adminMapper.selectByPrimaryKey(admin.getId())); newEa.setStatus(status); newEa.setExamineName(""); } }else { aids.add(adminMapper.selectByPrimaryKey(admin.getId())); newEa.setStatus(3); newEa.setProcessStatus(0); str.setLength(0); str=str.append("您的报销审核已驳回,报销编号[").append(in.getCheckNo()).append("],请注意查看。"); } if (newEa.getStatus()==null)newEa.setStatus(1); addExpenseAccountLog(in.getId(),status,useEa.getProcessStatus(),TokenManager.getAdminId(),in.getReason()); addNoticeAndEmail(in, status,str.toString(),admin.getName(),aids); } /** * * @param aid * @param createTime * @param type 0 双新增 1 未审核减一 2双减 3总数减一 */ private void pushFinanceCount(String aid, Date createTime, Integer type) { String startTime= DateUtils.formatDate(createTime,AFTConstants.YYYYMMDD); FinanceCount financeCount = financeCountMapper.selectByAidAndDates(aid, startTime); FinanceCount newFinance=new FinanceCount(); if (financeCount==null){ newFinance=FinanceCount.initialization(aid,createTime); newFinance.setExpenseCount(1); newFinance.setExpenseUnauditedCount(1); financeCountMapper.insertSelective(newFinance); }else { newFinance.setId(financeCount.getId()); if(type==0){ newFinance.setExpenseCount(financeCount.getExpenseCount()+1); newFinance.setExpenseUnauditedCount(financeCount.getExpenseUnauditedCount()+1); }else if(type==1){ newFinance.setExpenseUnauditedCount(financeCount.getExpenseUnauditedCount()-1); }else if(type==2){ newFinance.setExpenseCount(financeCount.getExpenseCount()-1); newFinance.setExpenseUnauditedCount(financeCount.getExpenseUnauditedCount()-1); }else if(type==3){ newFinance.setExpenseCount(financeCount.getExpenseCount()-1); } financeCountMapper.updateByPrimaryKeySelective(newFinance); } } private void pushExamineProcess( ExpenseAccount newEa,AdminListBo admin) { //如果到了董事长审核,无需判断了 if (newEa.getProcessStatus() list = expenseAccountExamineMapper.selectByEaidAndProcessStatus(newEa.getId(), newEa.getProcessStatus()); boolean flag=false; String aid=""; for (ExpenseAccountExamine e : list) { if (e.getStatus()==1){ flag=true; aid=e.getAuditor(); break; } if(e.getAuditor().equals(newEa.getAid())){ flag=true; break; } } if (flag){ String str=String.format("重复审核人跳过[%s]。",EAProcessStatus.getDesc(newEa.getProcessStatus())); Date date=new Date(); date.setTime(date.getTime()+1000l); addExpenseAccountLog(newEa.getId(),1,newEa.getProcessStatus(),aid,str,date); if (newEa.getProcessStatus()==EAProcessStatus.CWSH.getCode()){ addFinanceCount(admin.getDepFinance(),newEa.getCreateTime()); } newEa.setProcessStatus(newEa.getProcessStatus()+1); if (newEa.getProcessStatus() list) { StringBuffer str =new StringBuffer(); for (Admin admin : list) { str=str.append(admin.getName()).append(","); } return str.substring(0,str.length()-1); } private void addNoticeAndEmail(ExpenseAccount in, Integer status, String str,String aname, List aids) { Date date= new Date(); Integer noticeStatus=NoticeStatus.EXPENSE_NOTICE.getCode(); if (status==2){ noticeStatus=NoticeStatus.EXPENSE_COMPLETE.getCode(); } List list=new ArrayList<>(); if (aids!=null){ for (Admin a : aids) { Notice notice=new Notice(); notice.setId(UUID.randomUUID().toString()); notice.setNoticeType(noticeStatus); notice.setType(NoticeTypes.getType(noticeStatus)); notice.setAid(a.getId()); notice.setCreateTime(date); notice.setContent(str); notice.setReaded(0); list.add(notice); EmailBo emailBo=new EmailBo(NoticeStatus.getValueByCode(noticeStatus),a.getEmail(),str); asyncUtils.send(emailBo); weChatUtils.addExpenseAccountWeChatNotice(a.getExpenseOpenId(),status,in.getId(),date,aname,str); } asyncUtils.addNoticeBatch(list); } } @Override public Object pageList(InputPageListBo in) { Map param=new HashMap<>(); addParam(in, param); Pagination pagePlus = findPagePlus("selectExpenseAccountList", "selectExpenseAccountCount", "selectExpenseAccountTotalAmount", param, in.getPageNo(), in.getPageSize()); List list = (List) pagePlus.getList(); for (OutExpenseAccountBo e : list) { e.setExamine(pushExpenseAccountGetExamine(e.getId(), e.getProcessStatus())); } return pagePlus; } @Override public Object selectByPrid(InputExpenseAccount in) { in.setAid(TokenManager.getAdminId()); OutExpenseAccount useEa = expenseAccountMapper.selectByaidAndPrid(in); return useEa; } @Override public Object selectById(Integer id) { OutExpenseAccount useEa = expenseAccountMapper.selectByid(id); //判断当前角色是否审核 pushExpenseAccountGetExamine(useEa); if (useEa.getDebitId()!=null){ pushExpenseAccountGetDebitAmount(useEa); } return useEa; } @Override public Object selectByCheckNo(String checkNo) { OutExpenseAccount useEa = expenseAccountMapper.selectByCheckNo(checkNo); if (useEa.getProcessStatus()<3){ throw new BusinessException("报销单财务未审核,不可以根据编号查看打印。"); } return useEa; } @Override public Object pushMerge(List list) { //设置付款部门和支付部门 InputExpenseAccount in =new InputExpenseAccount(); in.setCheckNo(idGenerator.getNOgenerateId()); if (in.getAid()==null){ in.setAid(TokenManager.getAdminId()); } Admin admin = adminMapper.selectByPrimaryKey(in.getAid()); in.setAname(admin.getName()); in.setApplyDep(admin.getDepartmentId()); in.setPayDep(admin.getDepartmentId()); Integer eaaid = expenseAccountPrivateMapper.selectByaidDefault(TokenManager.getAdminId()); in.setEaaid(eaaid); BigDecimal count = new BigDecimal(0); BigDecimal amount = new BigDecimal(0); List typeList = new ArrayList(); for (ExpenseAccount e : list) { count=count.add(e.getTotalAmount()); amount=amount.add(e.getAmount()); StringBuffer types=new StringBuffer(); if (e.getType()!=0){ types=types.append(EATypes.getDescByCode(e.getType())); }else { types=types.append(e.getTypeOther()); } if (e.getType()==2){ if (e.getSecondaryType()==0){ types=types.append("-").append(e.getSecondaryTypeOther()); }else{ String descByCode = EAsecondaryTypes.getDescByCode(e.getSecondaryType()); types=types.append("-").append(descByCode); } } if (!typeList.contains(types.toString()))typeList.add(types.toString()); } in.setTotalAmount(count); in.setAmount(amount); in.setRealAmount(amount); in.setExpenseMain(1); in.setTypeOther(String.join(",",typeList)); expenseAccountMapper.insertSelective(in); list.stream().forEach(e -> { ExpenseRelationship er=new ExpenseRelationship(); er.setId(in.getId()); er.setEaId(e.getId()); expenseRelationshipMapper.insertSelective(er); }); expenseAccountMapper.updateByIds(list,1); return in.getId(); } @Override public MainExpenseAccount mainExpense(Integer id) { MainExpenseAccount res = expenseAccountMapper.selectByMainId(id); res.setExamine(0); List expenseAccountExamines = expenseAccountExamineMapper.selectByEaidAndProcessStatus(id, res.getProcessStatus()); for (ExpenseAccountExamine e : expenseAccountExamines) { if (e.getAuditor().equals(TokenManager.getAdminId())){ res.setExamine(1); break; } } if (res.getAid().equals(TokenManager.getAdminId())){ res.setExamine(2); } return res; } @Override public Object updateMain(MainExpenseAccount in) { OutExpenseAccount outExpenseAccount = expenseAccountMapper.selectByid(in.getId()); if (outExpenseAccount != null&&outExpenseAccount.getStatus()!=0&&outExpenseAccount.getStatus()!=3) { throw new BusinessException("主项目已发起,不可修改!"); } ExpenseAccount update =new ExpenseAccount(); if (in.getStatus()==null)in.setStatus(1); if (in.getStatus()==1){ if (in.getOrderNo()!=null){ update.setOrderNo(in.getOrderNo()); update.setTargetType(1); } if (in.getPayDep()!=null)update.setPayDep(in.getPayDep()); if (in.getApplyDep()!=null)update.setApplyDep(in.getApplyDep()); if (in.getRemarks()!=null)update.setRemarks(in.getRemarks()); if (in.getEaaid()!=null)update.setEaaid(in.getEaaid()); addExpenseAccountExamine(in.getId(),update); if (outExpenseAccount.getStatus()==0){ addExpenseAccountLogAndNoticEmail(outExpenseAccount,outExpenseAccount.getStatus(),"发起报销审核"); }else if (outExpenseAccount.getStatus()==3){ addExpenseAccountLogAndNoticEmail(outExpenseAccount,4,"修改并发起审核"); } }else if (in.getStatus()==4){ expenseAccountMapper.updateByMainId(in.getId(),0); addExpenseAccountLog(in.getId(),4,0,in.getAid(),"撤销报销审核"); } update.setStatus(in.getStatus()); update.setProcessStatus(outExpenseAccount.getProcessStatus()); update.setId(in.getId()); update.setExamineName(outExpenseAccount.getExamineName()); return expenseAccountMapper.updateByPrimaryKeySelective(update); } @Override public Object mainList(ExpenseMainListInput in) { Map params = new HashMap<>(); if (in.getStatus()!=null) params.put("status",in.getStatus()); if (in.getCheckNo()!=null) params.put("checkNo",in.getCheckNo()); if (in.getListStatus()!=null) params.put("listStatus",in.getListStatus()); if (in.getUsername() != null)params.put("username",in.getUsername()); if (in.getStartTime()!=null && in.getEndTime() !=null) { params.put("startTime",in.getStartTime()); params.put("endTime",in.getEndTime()+" 23:59:59"); } //1-3s是不同人的审核 if (in.getProcessStatus()!=null&&in.getProcessStatus()==1){ if (TokenManager.hasRole(AFTConstants.FINANCE)){ in.setProcessStatus(2); }else if (TokenManager.hasRole(AFTConstants.SALESMAN_MANAGER)||TokenManager.hasRole(AFTConstants.SALESMAN_ADMIN)){ in.setProcessStatus(1); }else if (TokenManager.hasRole(AFTConstants.APPROVAL_DECISION)||TokenManager.hasRole(AFTConstants.APPROVAL_DECISION_ASSISTANT)){ in.setProcessStatus(4); }else if(TokenManager.hasRole(AFTConstants.FINANCE_MANAGER)){ //财务经理查看权限 in.setProcessStatus(5); }else if(TokenManager.hasRole(AFTConstants.FINANCE_ADMIN)||TokenManager.hasRole(AFTConstants.SUPERADMIN)){ //财务管理员和超级管理员查看全部 in.setProcessStatus(6); } }else { in.setProcessStatus(0); } if (in.getProcessStatus()!=null){ params.put("aid",TokenManager.getAdminId()); params.put("roleType",in.getProcessStatus()); if (in.getProcessStatus()==3){ params.put("deps",departmentService.selectMyDeps()); } } Pagination page = findPage("ExpenseMainList", "ExpenseMainCount", params, in.getPageNo(), in.getPageSize()); List list = (List) page.getList(); if (!list.isEmpty()){ List collect = list.stream().map(MainExpenseAccount::getId).collect(Collectors.toList()); List mainExpenseAccounts = expenseAccountMapper.selectSonByMainIds(collect); for (MainExpenseAccount e : list) { for (MainExpenseAccount me : mainExpenseAccounts) { if (e.getId().equals(me.getId())){ e.setSonList(me.getSonList()); } } } } return page; } @Override public Object detailsList(InputDetailsListBo in) { Map params = new HashMap<>(); if(in.getStatus()!=null)params.put("status",in.getStatus()); if(in.getType()!=null)params.put("type",in.getType()); if (in.getDepId()!=null)params.put("depId",in.getDepId()); if (in.getContractNo()!=null)params.put("contractNo",in.getContractNo()); if (in.getBuyerName()!=null)params.put("buyerName",in.getBuyerName()); if (in.getAname()!=null)params.put("aname",in.getAname()); if (in.getApplyDep()!=null)params.put("applyDep",in.getApplyDep()); if (in.getPayDep() != null)params.put("payDep",in.getPayDep()); if (in.getStartTime()!=null)params.put("startTime",in.getStartTime()); if (in.getEndTime()!=null)params.put("endTime",in.getEndTime()); if (in.getCheckNo()!=null)params.put("checkNo",in.getCheckNo()); //0=自己 1=财务 2=财务经理 3=超管 if (TokenManager.hasRole(AFTConstants.SUPERADMIN)){ params.put("roleType",3); }else if (TokenManager.hasRole(AFTConstants.FINANCE_MANAGER)){ params.put("roleType",2); params.put("aid",TokenManager.getAdminId()); }else if (TokenManager.hasRole(AFTConstants.FINANCE)){ params.put("roleType",1); params.put("aid",TokenManager.getAdminId()); }else{ params.put("roleType",0); } return findPagePlus("ExpenseDetailsList","ExpenseDetailsCount","ExpenseDetailsTotalAmount",params,in.getPageNo(),in.getPageSize()); } @Override public List selectByIds(List list) { return expenseAccountMapper.selectByIds(list); } @Override public int selectCountByIdsAndType(List list, Integer i) { return expenseAccountMapper.selectCountByIdsAndType(list,i); } @Override public Object updateRealAmount(Integer type, Integer id, BigDecimal amount) { ExpenseAccountDetails ea= new ExpenseAccountDetails(); ea.setId(id); ea.setRealAmount(amount); expenseAccountDetailsMapper.updateByPrimaryKeySelective(ea); expenseAccountMapper.updateSonByDetId(id); expenseAccountMapper.updateMainByDetId(id); return 1; } /** * 计算当前报销显示抵扣金额 * @param useEa */ private void pushExpenseAccountGetDebitAmount(OutExpenseAccount useEa) { ExpenseAccount debit = expenseAccountMapper.selectByPrimaryKey(useEa.getDebitId()); List list1 = expenseAccountMapper.selectByDebitId(useEa.getDebitId()); BigDecimal count =debit.getTotalAmount(); for (ExpenseAccount e : list1) { if (!e.getId().equals(useEa.getId())){ count=count.subtract(e.getSettlementAmount()); } } if (count.compareTo(new BigDecimal(0))<0)count=new BigDecimal(0); useEa.setDebitTotalAmount(count); } /** * 判断角色是否已经审核 * @param useEa */ private void pushExpenseAccountGetExamine(OutExpenseAccount useEa) { List list = expenseAccountExamineMapper.selectByEaidAndProcessStatus(useEa.getId(), useEa.getProcessStatus()); boolean flag=false; for (ExpenseAccountExamine e : list) { if (e.getAuditor().equals(TokenManager.getAdminId())){ if (e.getStatus()==0){ flag=true; break; } } } if (flag){ useEa.setExamine(1); }else { useEa.setExamine(0); } } /** * 判断角色是否已经审核 * @param */ private Integer pushExpenseAccountGetExamine(Integer id,Integer processStatus) { List list = expenseAccountExamineMapper.selectByEaidAndProcessStatus(id, processStatus); boolean flag=false; for (ExpenseAccountExamine e : list) { if (e.getAuditor().equals(TokenManager.getAdminId())){ if (e.getStatus()==0){ flag=true; break; } } } if (flag){ return 1; }else { return 0; } } @Override public Object updateType(InputExpenseAccount in) { expenseAccountDetailsMapper.deleteByeaid(in.getId()); if (in.getType()!=2)in.setSecondaryType(0); return expenseAccountMapper.updateByPrimaryKeySelective(in); } @Override public List selectDebitOrder(String depId,Integer id) { String aid= TokenManager.getAdminId(); List list = expenseAccountMapper.selectByaidAndType(aid, depId, 4,id); return list; } private void addParam(InputPageListBo in, Map param) { if (in.getStartTime()!=null&&in.getEndTime()!=null){ param.put("startTime",in.getStartTime()); param.put("endTime",in.getEndTime()+" 23:59:59"); } if (in.getStatus()!=null)param.put("status",in.getStatus()); //如果前端未传 0自己 1审核的参数,默认自己,在审核列表的时候判断Aid,在 if (in.getProcessStatus()==null) in.setProcessStatus(0); if(in.getProcessStatus()==2){ if(TokenManager.hasRole(AFTConstants.FINANCE_MANAGER)){ //财务经理查看权限 in.setProcessStatus(5); }else if(TokenManager.hasRole(AFTConstants.FINANCE_ADMIN)||TokenManager.hasRole(AFTConstants.SUPERADMIN)|| TokenManager.hasRole(AFTConstants.VICE_CEO)|| TokenManager.hasRole(AFTConstants.APPROVAL_DECISION)){ //财务管理员和超级管理员查看全部 in.setProcessStatus(6); } if (in.getAid()!=null){ param.put("aid",in.getAid()); } param.put("auditor",TokenManager.getAdminId()); }else if(in.getProcessStatus()==1) { param.put("auditor",TokenManager.getAdminId()); if (in.getAid()!=null){ param.put("aid",in.getAid()); } }else { param.put("aid",TokenManager.getAdminId()); } param.put("processStatus",in.getProcessStatus()); if (in.getExamineStatus()!=null){ param.put("examineStatus",in.getExamineStatus()); }else { param.put("examineStatus",0); } if (in.getContractNo()!=null)param.put("contractNo",in.getContractNo()); if (in.getDepId()!=null)param.put("depId",in.getDepId()); if (in.getApplyDep()!=null)param.put("applyDep",in.getApplyDep()); if (in.getPayDep()!=null)param.put("payDep",in.getPayDep()); if (in.getType()!=null)param.put("type",in.getType()); if (in.getUsername()!=null)param.put("username",in.getUsername()); if (in.getCheckNo()!=null)param.put("checkNo",in.getCheckNo()); if (in.getSecondaryType()!=null)param.put("secondaryType",in.getSecondaryType()); //固定传0查看子列表 if (in.getExpenseMain()==null)in.setExpenseMain(0); if (in.getExpenseMain()!=null)param.put("expenseMain",in.getExpenseMain()); } /** * 检查权限判断是否是总裁、董事长或超级管理员权限 * @return */ private boolean checkShiroCED() { if (TokenManager.hasRole(AFTConstants.CED)||TokenManager.hasRole(AFTConstants.CED_ASSISTANT)|| TokenManager.hasRole(AFTConstants.SUPERADMIN)||TokenManager.hasRole(AFTConstants.APPROVAL_DECISION_ASSISTANT) ||TokenManager.hasRole(AFTConstants.APPROVAL_DECISION)){ return true; } return false; } @Override @Cacheable(value = "expenseAccountStatistics#300", key = "'page:'+#name+',depId'+#depId+',startTime'+#startTime+',endTime'+#endTime") public List statistics(String name,String depId,String startTime,String endTime) { if (endTime!=null)endTime=endTime+" 23:59:59"; List list = expenseAccountMapper.selectStatistics(name, depId, startTime, endTime); List results=new ArrayList<>(); Map map=new HashMap<>(); for (OutMyEAStatistics e : list) { OutExpenseAccountStatistics out = new OutExpenseAccountStatistics(e.getAid()); out.setAname(e.getAname()); if (e.getStatus() == 2) { if (e.getType() < 4) { out.setBx(1); out.setBxAmount(e.getTotalAmount()); if (!e.getDebitId().equals(0)) { out.setDk(1); out.setDkAmount(e.getBxdkAmount()); } } else if (e.getType() == 4) { out.setJz(1); out.setJzAmount(e.getTotalAmount()); } else if (e.getType() == 5) { out.setDk(1); out.setDkAmount(e.getTotalAmount()); } if (e.getTargetType() == 0) { out.setGdfyAmount(e.getTotalAmount()); } else if (e.getTargetType() == 1) { out.setBxddAmount(e.getTotalAmount()); } } else if (e.getStatus() == 1) { out.setWshs(1); } else if (e.getStatus() == 3) { out.setBhs(1); } //如果不存在就新增 if (!map.keySet().contains(out.getAid())){ List list2=new ArrayList<>(); list2.add(out); map.put(out.getAid(),list2); }else { List list2 = (List) map.get(e.getAid()); list2.add(out); } } for (String s : map.keySet()) { List list3 = (List) map.get(s); if (!list3.isEmpty()){ OutExpenseAccountStatistics out =new OutExpenseAccountStatistics(s); for (OutExpenseAccountStatistics e : list3) { if (out.getAname()==null)out.setAname(e.getAname()); if (e.getBx()!=null)out.setBx(out.getBx()+e.getBx()); if (e.getJz()!=null)out.setJz(out.getJz()+e.getJz()); if (e.getDk()!=null)out.setDk(out.getDk()+e.getDk()); if (e.getBxAmount()!=null)out.setBxAmount(out.getBxAmount().add(e.getBxAmount())); if (e.getJzAmount()!=null)out.setJzAmount(out.getJzAmount().add(e.getJzAmount())); if (e.getDkAmount()!=null)out.setDkAmount(out.getDkAmount().add(e.getDkAmount())); if (e.getGdfyAmount()!=null)out.setGdfyAmount(out.getGdfyAmount().add(e.getGdfyAmount())); if (e.getBxddAmount()!=null)out.setBxddAmount(out.getBxddAmount().add(e.getBxddAmount())); if (e.getWshs()!=null)out.setWshs(out.getWshs()+e.getWshs()); if (e.getBhs()!=null)out.setBhs(out.getBhs()+e.getBhs()); } BigDecimal totalAmount=new BigDecimal(0); totalAmount=totalAmount.add(out.getBxAmount()).add(out.getJzAmount()).subtract(out.getDkAmount()); out.setTotalAmount(totalAmount); results.add(out); } } return results; } @Override @CacheEvict(value = "expenseAccountStatistics#300", allEntries = true) public void statisticsEvict(String name, String depId, String startTime, String endTime) { LoggerUtils.debug(getClass(), "报销统计缓存清除。"); } @Override public Object pushSupplementCheckNo() { List list = expenseAccountMapper.selectByCheckNoNot(); if (!list.isEmpty()){ list.forEach(e ->{ ExpenseAccount ea=new ExpenseAccount(); ea.setId(e.getId()); ea.setCheckNo(idGenerator.getNOgenerateId()); expenseAccountMapper.updateByPrimaryKeySelective(ea); }); return 1; } return 0; } @Override public void pushAll() { List list = expenseAccountMapper.selectAllMain(); for (ExpenseAccount ea : list) { List expenseAccounts = expenseAccountMapper.selectListByMainId(ea.getId()); List typeList=new ArrayList<>(); for (ExpenseAccount e : expenseAccounts) { StringBuffer types=new StringBuffer(); if (e.getType()!=0){ types=types.append(EATypes.getDescByCode(e.getType())); }else { types=types.append(e.getTypeOther()); } if (e.getType()==2){ if (e.getSecondaryType()==0){ types=types.append("-").append(e.getSecondaryTypeOther()); }else{ String descByCode = EAsecondaryTypes.getDescByCode(e.getSecondaryType()); types=types.append("-").append(descByCode); } } if (!typeList.contains(types.toString()))typeList.add(types.toString()); } String typeStr = String.join(",", typeList); ExpenseAccount update=new ExpenseAccount(); update.setId(ea.getId()); update.setTypeOther(typeStr); expenseAccountMapper.updateByPrimaryKeySelective(update); } } }