| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016 |
- package com.ydtech.modules.fnc.service.impl;
- import cn.afterturn.easypoi.excel.entity.ExportParams;
- import cn.afterturn.easypoi.excel.entity.enmus.ExcelType;
- import cn.hutool.core.bean.BeanUtil;
- import cn.hutool.core.text.StrBuilder;
- import com.alibaba.fastjson.JSONArray;
- import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
- import com.fasterxml.jackson.core.JsonProcessingException;
- import com.fasterxml.jackson.databind.JsonNode;
- import com.fasterxml.jackson.databind.ObjectMapper;
- import com.github.pagehelper.PageHelper;
- import com.github.pagehelper.PageInfo;
- import com.ydtech.constants.enums.dict.agreement.ProductsType;
- import com.ydtech.core.page.HttpResult;
- import com.ydtech.exception.SystemException;
- import com.ydtech.modules.base.controller.BaseController;
- import com.ydtech.modules.esm.model.EsmInsCompany;
- import com.ydtech.modules.esm.service.EsmInsCompanyService;
- import com.ydtech.modules.fnc.entity.*;
- import com.ydtech.modules.fnc.dao.InsPlyIncomeMapper;
- import com.ydtech.modules.fnc.service.ImportAsyncService;
- import com.ydtech.modules.fnc.service.InsPlyIncomeService;
- import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
- import com.ydtech.modules.fnc.service.SettlementDocumentaryFeesService;
- import com.ydtech.modules.fnc.service.SettlementDocumentaryLogService;
- import com.ydtech.modules.fnc.vo.InsPlyIncomeVo;
- import com.ydtech.modules.fnc.vo.SettlementDocumentaryFeesVo;
- import com.ydtech.modules.ins.model.vo.res.*;
- import com.ydtech.modules.inv.model.InvChannelsExternalBillsDetails;
- import com.ydtech.modules.inv.model.dto.*;
- import com.ydtech.modules.inv.model.excel.InvDisburseExcel;
- import com.ydtech.modules.inv.utils.EasyExcelUtils;
- import com.ydtech.modules.order.entity.BasePageResult;
- import com.ydtech.modules.order.entity.InsOrders;
- import com.ydtech.modules.order.service.InsAreaCompanyService;
- import com.ydtech.modules.order.service.InsOrdersService;
- import com.ydtech.modules.protocol.entity.po.PtlAgreement;
- import com.ydtech.modules.protocol.entity.vo.PtlAgreementQueryVo;
- import com.ydtech.modules.protocol.service.PtlAgreementService;
- import com.ydtech.modules.protocols.entity.po.InsFeeOrderNew;
- import com.ydtech.modules.protocols.service.InsFeeOrderNewService;
- import com.ydtech.utils.BigDecimalUtils;
- import com.ydtech.utils.SnowFlakeUtil;
- import com.ydtech.utils.StringOperations;
- import com.ydtech.utils.excel.ExcelEasypoiUtils;
- import com.ydtech.utils.excel.ExcelStyleUtil;
- import com.ydtech.utils.excel.ExcelUtils2;
- import lombok.extern.slf4j.Slf4j;
- import org.apache.commons.lang3.ObjectUtils;
- import org.apache.commons.lang3.StringUtils;
- import org.apache.poi.ss.formula.functions.Now;
- import org.springframework.beans.BeanUtils;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.beans.factory.annotation.Value;
- import org.springframework.context.annotation.Lazy;
- import org.springframework.stereotype.Service;
- import org.springframework.transaction.annotation.Transactional;
- import org.springframework.util.CollectionUtils;
- import org.springframework.web.multipart.MultipartFile;
- import redis.clients.jedis.params.Params;
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
- import java.awt.image.BandedSampleModel;
- import java.io.IOException;
- import java.math.BigDecimal;
- import java.nio.file.Files;
- import java.nio.file.Path;
- import java.nio.file.Paths;
- import java.time.LocalDate;
- import java.time.LocalDateTime;
- import java.time.YearMonth;
- import java.util.*;
- import java.util.concurrent.CompletableFuture;
- import java.util.concurrent.ConcurrentHashMap;
- import java.util.stream.Collectors;
- /**
- * <p>
- * 保司结算手续费 服务实现类
- * </p>
- *
- * @author gws
- * @since 2024-01-05
- */
- @Slf4j
- @Service
- public class InsPlyIncomeServiceImpl extends ServiceImpl<InsPlyIncomeMapper, InsPlyIncome> implements InsPlyIncomeService {
- @Autowired
- @Lazy
- private InsOrdersService insOrdersService;
- @Autowired
- private InsAreaCompanyService insAreaCompanyService;
- @Autowired
- private InsFeeOrderNewService insFeeOrderNewService;
- @Autowired
- private SettlementDocumentaryFeesService settlementDocumentaryFeesService;
- @Autowired
- private SettlementDocumentaryLogService settlementDocumentaryLogService;
- @Autowired
- private PtlAgreementService ptlAgreementService;
- @Autowired
- private EsmInsCompanyService EsmInsCompanyService;
- @Autowired
- private ImportAsyncService importAsyncService;
- @Value("${upload.file.path}")
- private String uploadPath;
- @Value("${upload.file.url}")
- private String uploadUrl;
- public HttpResult<BasePageResult<InsPlyIncome>> queryplyIncome(InsPlyIncomeVo insPlyIncomeVo){
- try{
- Page<InsOrders> page = new Page<>(insPlyIncomeVo.getPageNum(), insPlyIncomeVo.getPageSize());
- PageInfo<List<InsPlyIncome>> pageHelper = null;
- PageHelper.startPage(insPlyIncomeVo.getPageNum(),insPlyIncomeVo.getPageSize());
- List<InsPlyIncome> list= this.baseMapper.selectByCondition(insPlyIncomeVo);
- pageHelper=new PageInfo(list);
- BasePageResult<InsPlyIncome> pageResult=new BasePageResult<InsPlyIncome>(insPlyIncomeVo.getPageNum(), insPlyIncomeVo.getPageSize(), pageHelper.getTotal(), pageHelper.getPages(), list);
- return HttpResult.ok(pageResult);
- }catch (Exception e){
- e.printStackTrace();
- return HttpResult.error("查询异常");
- }
- }
- @Override
- public void saveBalanceNew(InsOrders order, InsFeeOrderNew insFeeOrderNew, InsAreaCompany insAreaCompany) {
- if (ObjectUtils.isEmpty(order) || ObjectUtils.isEmpty(insFeeOrderNew) || ObjectUtils.isEmpty(insAreaCompany)) {
- return;
- }
- String agreeType = this.judgeAgreeType(insAreaCompany.getAgreementId());
- if (StringUtils.isNotEmpty(agreeType)) {
- // 判断协议类型 平台 保险
- if ("1".equals(agreeType)) {
- this.savePinTai(order,insFeeOrderNew,insAreaCompany); //手续费不分非车不非车 跟单也不分
- }else { // 保险 逻辑: 手续费生成一条 跟单费生成一条 非车手续费一条 非车跟单费一条
- if (((insFeeOrderNew.getJqSuperviseCostsPremiums() != null && insFeeOrderNew.getJqSuperviseCostsPremiums().compareTo(BigDecimal.ZERO) != 0)) || (insFeeOrderNew.getSySuperviseCostsPremiums() != null && insFeeOrderNew.getSySuperviseCostsPremiums().compareTo(BigDecimal.ZERO) != 0)) { //手续费
- this.saveInsuranceProcedures(order,insFeeOrderNew,insAreaCompany);
- }
- if(insFeeOrderNew.getJqOtherCostsPremiums()!=null && insFeeOrderNew.getJqOtherCostsPremiums().compareTo(BigDecimal.ZERO) != 0){ //跟单费
- this.saveOtherAmount(order,insFeeOrderNew,insAreaCompany);
- }
- if(insFeeOrderNew.getNoSuperviseCostsPremiums() !=null && insFeeOrderNew.getNoSuperviseCostsPremiums().compareTo(BigDecimal.ZERO) != 0) { // 非车手续费
- this.saveNoSupervise(order,insFeeOrderNew,insAreaCompany);
- }
- if(insFeeOrderNew.getNoOtherCostsPremiums() !=null && insFeeOrderNew.getNoOtherCostsPremiums().compareTo(BigDecimal.ZERO) != 0){ // 非车跟单费
- this.saveNoOtherAmount(order,insFeeOrderNew,insAreaCompany);
- }
- }
- }
- }
- private void saveNoOtherAmount(InsOrders order, InsFeeOrderNew insFeeOrderNew, InsAreaCompany insAreaCompany) {
- InsPlyIncome insPlyIncome = new InsPlyIncome();
- insPlyIncome.setOrderno(insFeeOrderNew.getInsOrderNo()); // 子订单号
- String noPolicyno = this.setNoPolicyno(insAreaCompany);
- if(StringUtils.isNotEmpty(noPolicyno)){
- insPlyIncome.setNoPolicyno(noPolicyno); // 非车保单号
- }
- insPlyIncome.setOtherFeevalue(insFeeOrderNew.getNoOtherCostsPremiums()); //非车跟单费
- insPlyIncome.setOtherFeerate(insFeeOrderNew.getNoOtherCostsProportion()); //非车跟单费用比例
- insPlyIncome.setDeptId(insFeeOrderNew.getDeptId());
- this.saveRiskCode(order.getProductid(),insPlyIncome);
- insPlyIncome.setPayDate(insAreaCompany.getPayDate());
- insPlyIncome.setSignDate(insAreaCompany.getSigningTime());
- insPlyIncome.setCompanyId(insAreaCompany.getCompanyId());
- insPlyIncome.setAgreementId(insFeeOrderNew.getAgreementId());
- insPlyIncome.setLicenseno(order.getLicenseno());
- insPlyIncome.setTaxamount(insAreaCompany.getTaxamount());
- insPlyIncome.setCreateTime(LocalDate.now());
- insPlyIncome.setDocumentaryFeesStatus("0");
- insPlyIncome.setHandlingFeesStatus("0");
- insPlyIncome.setNoNoTaxPremium(insPlyIncome.getNoNoTaxPremium());
- insPlyIncome.setNoPremium(insPlyIncome.getNoPremium());
- insPlyIncome.setIsNotCar("1");
- insPlyIncome.setIsNotDocumentary("1");
- insPlyIncome.setJqStartDate(insAreaCompany.getJqStartDate());
- insPlyIncome.setJqEndDate(insAreaCompany.getJqEndDate());
- insPlyIncome.setSyStartDate(insAreaCompany.getSyStartDate());
- insPlyIncome.setSyEndDate(insAreaCompany.getSyEndDate());
- insPlyIncome.setAllFeeValue(insFeeOrderNew.getNoOtherCostsPremiums());
- this.saveByCompanyId(insFeeOrderNew ,insAreaCompany.getCompanyId(),insPlyIncome);
- baseMapper.insert(insPlyIncome);
- }
- private void saveNoSupervise(InsOrders order, InsFeeOrderNew insFeeOrderNew, InsAreaCompany insAreaCompany) {
- InsPlyIncome insPlyIncome = new InsPlyIncome();
- insPlyIncome.setOrderno(insFeeOrderNew.getInsOrderNo()); // 子订单号
- insPlyIncome.setCommissionFeevalue(insFeeOrderNew.getNoSuperviseCostsPremiums());// 非车手续费
- insPlyIncome.setCommissionFeerate(insFeeOrderNew.getNoSuperviseCostsProportion());// 非车手续费比例
- String noPolicyno = this.setNoPolicyno(insAreaCompany);
- if(StringUtils.isNotEmpty(noPolicyno)){
- insPlyIncome.setNoPolicyno(noPolicyno); // 非车保单号
- }
- insPlyIncome.setDeptId(insFeeOrderNew.getDeptId());
- this.saveRiskCode(order.getProductid(),insPlyIncome);
- insPlyIncome.setPayDate(insAreaCompany.getPayDate());
- insPlyIncome.setSignDate(insAreaCompany.getSigningTime());
- insPlyIncome.setCompanyId(insAreaCompany.getCompanyId());
- insPlyIncome.setAgreementId(insFeeOrderNew.getAgreementId());
- insPlyIncome.setLicenseno(order.getLicenseno());
- insPlyIncome.setTaxamount(insAreaCompany.getTaxamount());
- insPlyIncome.setCreateTime(LocalDate.now());
- insPlyIncome.setDocumentaryFeesStatus("0");
- insPlyIncome.setHandlingFeesStatus("0");
- insPlyIncome.setIsNotCar("1");
- insPlyIncome.setIsNotDocumentary("0");
- insPlyIncome.setAllFeeValue(insFeeOrderNew.getNoSuperviseCostsPremiums());
- insPlyIncome.setUserId(insFeeOrderNew.getUserId());
- insPlyIncome.setInsuredName(order.getInsuredname());
- insPlyIncome.setNoPremium(insFeeOrderNew.getNoPremium()); //非车保费
- insPlyIncome.setNoNoTaxPremium(insFeeOrderNew.getNoNoTaxPremium()); //非车不含税保费
- insPlyIncome.setJqStartDate(insAreaCompany.getJqStartDate());
- insPlyIncome.setJqEndDate(insAreaCompany.getJqEndDate());
- insPlyIncome.setSyStartDate(insAreaCompany.getSyStartDate());
- insPlyIncome.setSyEndDate(insAreaCompany.getSyEndDate());
- this.saveByCompanyId(insFeeOrderNew ,insAreaCompany.getCompanyId(),insPlyIncome);
- baseMapper.insert(insPlyIncome);
- }
- private void saveRiskCode(String productid,InsPlyIncome insPlyIncome) {
- if(ProductsType.PT_0330.getCode().equals(productid)){
- insPlyIncome.setRiskcode(ProductsType.PT_0330.getDesc());
- }
- if(ProductsType.PT_034001.getCode().equals(productid)){
- insPlyIncome.setRiskcode(ProductsType.PT_034001.getDesc());
- }
- if(ProductsType.PT_034002.getCode().equals(productid)){
- insPlyIncome.setRiskcode(ProductsType.PT_034002.getDesc());
- }
- if(ProductsType.PT_0330034002.getCode().equals(productid)){
- insPlyIncome.setRiskcode(ProductsType.PT_0330034002.getDesc());
- }
- if(ProductsType.PT_0330034001.getCode().equals(productid)){
- insPlyIncome.setRiskcode(ProductsType.PT_0330034001.getDesc());
- }
- }
- private void saveOtherAmount(InsOrders order, InsFeeOrderNew insFeeOrderNew, InsAreaCompany insAreaCompany) {
- BigDecimal otherAmount = this.calculateTotal(insFeeOrderNew.getJqOtherCostsPremiums(), insFeeOrderNew.getSyOtherCostsPremiums(),null);
- BigDecimal otherProportion = this.calculateTotal(insFeeOrderNew.getSyOtherCostsProportion(), insFeeOrderNew.getJqOtherCostsProportion(),null);
- BigDecimal allNoTaxPremium = this.calculateTotal(insFeeOrderNew.getJqNoTaxPremium(), insFeeOrderNew.getSyNoTaxPremium(), null); //交强不含税保费
- BigDecimal allPremium = this.calculateTotal(insFeeOrderNew.getJqPremium(), insFeeOrderNew.getSyPremium(), null);// 总保费
- InsPlyIncome insPlyIncome = new InsPlyIncome(insFeeOrderNew.getInsOrderNo(),insAreaCompany.getJqpolicyno(),insAreaCompany.getSypolicyno(),null,null,insFeeOrderNew.getDeptId(),null,order.getProductid(),insAreaCompany.getPayDate(),insAreaCompany.getSigningTime(),insAreaCompany.getCompanyId(),null,insFeeOrderNew.getAgreementId(),order.getLicenseno(),insAreaCompany.getTaxamount(),
- allNoTaxPremium,null,otherProportion,null,otherAmount,otherAmount,null,null,LocalDate.now(),null,null,null,"0","0","0","1");
- this.saveRiskCode(order.getProductid(),insPlyIncome);
- insPlyIncome.setTaxPremium(allPremium);
- insPlyIncome.setJqPremium(insFeeOrderNew.getJqPremium());
- insPlyIncome.setSyPremium(insFeeOrderNew.getSyPremium());
- insPlyIncome.setJqNoTaxPremium(insFeeOrderNew.getJqNoTaxPremium());
- insPlyIncome.setSyNoTaxPremium(insFeeOrderNew.getSyNoTaxPremium());
- insPlyIncome.setJqOtherCostsProportion(insFeeOrderNew.getJqOtherCostsProportion()); //交强跟单费比例
- insPlyIncome.setSyOtherCostsProportion(insFeeOrderNew.getSyOtherCostsProportion()); //商业跟单费比例
- insPlyIncome.setSyOtherCostsPremium(insFeeOrderNew.getSyOtherCostsPremiums());
- insPlyIncome.setJqOtherCostsPremium(insFeeOrderNew.getJqOtherCostsPremiums());
- insPlyIncome.setJqStartDate(insAreaCompany.getJqStartDate());
- insPlyIncome.setJqEndDate(insAreaCompany.getJqEndDate());
- insPlyIncome.setSyStartDate(insAreaCompany.getSyStartDate());
- insPlyIncome.setSyEndDate(insAreaCompany.getSyEndDate());
- insPlyIncome.setUserId(insFeeOrderNew.getUserId());
- insPlyIncome.setInsuredName(order.getInsuredname());
- this.saveByCompanyId(insFeeOrderNew ,insAreaCompany.getCompanyId(),insPlyIncome);
- baseMapper.insert(insPlyIncome);
- }
- private void saveInsuranceProcedures(InsOrders order, InsFeeOrderNew insFeeOrderNew, InsAreaCompany insAreaCompany) {
- // 保险手续费
- BigDecimal handlingAmount = this.calculateTotal(insFeeOrderNew.getJqSuperviseCostsPremiums(), insFeeOrderNew.getSySuperviseCostsPremiums(),null);
- BigDecimal handlingProportion = this.calculateTotal(insFeeOrderNew.getJqSuperviseCostsProportion(), insFeeOrderNew.getSySuperviseCostsProportion(),null);
- BigDecimal allNoTaxPremium = this.calculateTotal(insFeeOrderNew.getJqNoTaxPremium(), insFeeOrderNew.getSyNoTaxPremium(), null);//不含税保费
- InsPlyIncome insPlyIncome = new InsPlyIncome(insFeeOrderNew.getInsOrderNo(),insAreaCompany.getJqpolicyno(),insAreaCompany.getSypolicyno(),null,null,insFeeOrderNew.getDeptId(),null,order.getProductid(),insAreaCompany.getPayDate(),insAreaCompany.getSigningTime(),insAreaCompany.getCompanyId(),null,insFeeOrderNew.getAgreementId(),order.getLicenseno(),insAreaCompany.getTaxamount()
- ,allNoTaxPremium,handlingProportion,null,handlingAmount,null,handlingAmount,null,null,LocalDate.now(),null,null,null,"0","0","0","0");
- BigDecimal allTaxPremium = this.calculateTotal(insFeeOrderNew.getJqPremium(), insFeeOrderNew.getSyPremium(), null);
- insPlyIncome.setJqPremium(insFeeOrderNew.getJqPremium());
- insPlyIncome.setSyPremium(insFeeOrderNew.getSyPremium());
- insPlyIncome.setJqNoTaxPremium(insFeeOrderNew.getJqNoTaxPremium());
- insPlyIncome.setSyNoTaxPremium(insFeeOrderNew.getSyNoTaxPremium());
- insPlyIncome.setJqSuperviseCostsProportion(insFeeOrderNew.getJqSuperviseCostsProportion());
- insPlyIncome.setJqSuperviseCostsPremiums(insFeeOrderNew.getJqSuperviseCostsPremiums());
- insPlyIncome.setSySuperviseCostsProportion(insFeeOrderNew.getSySuperviseCostsProportion());
- insPlyIncome.setSySuperviseCostsPremiums(insFeeOrderNew.getSySuperviseCostsPremiums());
- this.saveRiskCode(order.getProductid(),insPlyIncome);
- insPlyIncome.setTaxPremium(allTaxPremium);
- insPlyIncome.setUserId(insFeeOrderNew.getUserId());
- insPlyIncome.setInsuredName(order.getInsuredname());
- insPlyIncome.setJqStartDate(insAreaCompany.getJqStartDate());
- insPlyIncome.setJqEndDate(insAreaCompany.getJqEndDate());
- insPlyIncome.setSyStartDate(insAreaCompany.getSyStartDate());
- insPlyIncome.setSyEndDate(insAreaCompany.getSyEndDate());
- this.saveByCompanyId(insFeeOrderNew ,insAreaCompany.getCompanyId(),insPlyIncome);
- baseMapper.insert(insPlyIncome);
- }
- private String setNoPolicyno(com.ydtech.modules.fnc.entity.InsAreaCompany insAreaCompany) {
- String crossInsurance = insAreaCompany.getCrossInsurance();
- if (StringUtils.isEmpty(crossInsurance)) {
- return null;
- }
- try {
- ObjectMapper objJson = new ObjectMapper();
- JsonNode jsonArryNode = objJson.readTree(crossInsurance);
- if (jsonArryNode.isArray() && jsonArryNode.size() > 0) {
- JsonNode firstNode = jsonArryNode.get(0);
- JsonNode policyNumberNode = firstNode.get("policyNumber");
- if (policyNumberNode != null) {
- return policyNumberNode.asText();
- } else {
- return firstNode.get("policy").asText();
- }
- }
- } catch (IOException e) {
- e.printStackTrace(); // 可以打印异常信息
- }
- return null;
- }
- private void savePinTai(InsOrders order, InsFeeOrderNew insFeeOrderNew, InsAreaCompany insAreaCompany) {
- BigDecimal handlingAmount = this.calculateTotal(insFeeOrderNew.getJqSuperviseCostsPremiums(), insFeeOrderNew.getSySuperviseCostsPremiums(),insFeeOrderNew.getNoSuperviseCostsPremiums()); //手续费
- BigDecimal handlingProportion = this.calculateTotal(insFeeOrderNew.getJqSuperviseCostsProportion(), insFeeOrderNew.getSySuperviseCostsProportion(),insFeeOrderNew.getNoSuperviseCostsProportion());//手续费比例
- BigDecimal otherAmount = this.calculateTotal(insFeeOrderNew.getJqOtherCostsPremiums(), insFeeOrderNew.getSyOtherCostsPremiums(),insFeeOrderNew.getNoOtherCostsPremiums());//跟单费
- BigDecimal otherProportion = this.calculateTotal(insFeeOrderNew.getSyOtherCostsProportion(), insFeeOrderNew.getJqOtherCostsProportion(),insFeeOrderNew.getNoOtherCostsProportion()); //跟单费比例
- // 不含税保费
- BigDecimal allNoTaxPremium = this.calculateTotal(insFeeOrderNew.getJqNoTaxPremium(), insFeeOrderNew.getSyNoTaxPremium(), insFeeOrderNew.getNoNoTaxPremium());
- BigDecimal allAmount = this.calculateTotal(otherAmount, handlingAmount, null);
- BigDecimal jqReceivableProportion = this.calculateTotal(insFeeOrderNew.getJqSuperviseCostsProportion(), insFeeOrderNew.getJqOtherCostsProportion(), null);// 交强应收 比例
- BigDecimal syReceivableProportion = this.calculateTotal(insFeeOrderNew.getSySuperviseCostsProportion(), insFeeOrderNew.getSyOtherCostsProportion(), null);//商业应收比例
- BigDecimal noReceivableProportion = this.calculateTotal(insFeeOrderNew.getNoSuperviseCostsProportion(), insFeeOrderNew.getNoOtherCostsProportion(), null);
- String noPolicyno = this.setNoPolicyno(insAreaCompany);
- InsPlyIncome insPlyIncome = new InsPlyIncome(insFeeOrderNew.getInsOrderNo(),insAreaCompany.getJqpolicyno(),insAreaCompany.getSypolicyno(),
- noPolicyno,null,insFeeOrderNew.getDeptId(), null,order.getProductid(),insAreaCompany.getPayDate(),insAreaCompany.getSigningTime(),insAreaCompany.getCompanyId(),
- null,insFeeOrderNew.getAgreementId(),order.getLicenseno(),insAreaCompany.getTaxamount(),allNoTaxPremium,handlingProportion,
- otherProportion,handlingAmount,otherAmount,allAmount,null,null,LocalDate.now(),null,null,null,"0","0","0","0");
- insPlyIncome.setJqReceivableProportion(jqReceivableProportion);
- insPlyIncome.setSyReceivableProportion(syReceivableProportion);
- insPlyIncome.setNoReceivableProportion(noReceivableProportion);
- // 应收金额 = 商业手续费+商业跟单 + 交强手续费 +交强跟单费 + 非车手续费 + 非车跟单费 = allAmount
- insPlyIncome.setJqSuperviseCostsPremiums(insFeeOrderNew.getJqSuperviseCostsPremiums()); // 交强手续费
- insPlyIncome.setSySuperviseCostsPremiums(insFeeOrderNew.getSySuperviseCostsPremiums()); // 商业手续费
- insPlyIncome.setNoSuperviseCostsPremiums(insFeeOrderNew.getNoSuperviseCostsPremiums()); // 非车手续费
- insPlyIncome.setJqSuperviseCostsProportion(insFeeOrderNew.getJqSuperviseCostsProportion()); //交强手续费 比例
- insPlyIncome.setSySuperviseCostsProportion(insFeeOrderNew.getSySuperviseCostsProportion()); // 商业手续费 比例
- insPlyIncome.setNoSuperviseCostsProportion(insFeeOrderNew.getNoSuperviseCostsProportion());// 非车手续费 比例
- insPlyIncome.setJqOtherCostsProportion(insFeeOrderNew.getJqOtherCostsProportion()); //交强跟单费比例
- insPlyIncome.setSyOtherCostsProportion(insFeeOrderNew.getSyOtherCostsProportion()); //商业跟单费比例
- insPlyIncome.setNoOtherCostsProportion(insFeeOrderNew.getNoOtherCostsProportion()); //非车跟单费比例
- insPlyIncome.setJqPremium(insFeeOrderNew.getJqPremium());
- insPlyIncome.setSyPremium(insFeeOrderNew.getSyPremium());
- insPlyIncome.setNoPremium(insFeeOrderNew.getNoPremium());
- insPlyIncome.setJqNoTaxPremium(insFeeOrderNew.getJqNoTaxPremium());
- insPlyIncome.setSyNoTaxPremium(insFeeOrderNew.getSyNoTaxPremium());
- insPlyIncome.setNoNoTaxPremium(insFeeOrderNew.getNoNoTaxPremium());
- insPlyIncome.setUserId(insFeeOrderNew.getUserId());
- insPlyIncome.setJqStartDate(StringOperations.emptyStringToNull(insAreaCompany.getJqStartDate()));
- insPlyIncome.setJqEndDate(StringOperations.emptyStringToNull(insAreaCompany.getJqEndDate()));
- insPlyIncome.setSyStartDate(StringOperations.emptyStringToNull(insAreaCompany.getSyStartDate()));
- insPlyIncome.setSyEndDate(StringOperations.emptyStringToNull(insAreaCompany.getSyEndDate()));
- this.saveRiskCode(order.getProductid(),insPlyIncome);
- insPlyIncome.setInsuredName(order.getInsuredname());
- this.saveByCompanyId(insFeeOrderNew ,insAreaCompany.getCompanyId(),insPlyIncome);
- baseMapper.insert(insPlyIncome);
- }
- private void saveByCompanyId(InsFeeOrderNew insFeeOrderNew,String companyId, InsPlyIncome insPlyIncome) {
- PtlAgreement ptlAgreementQueryVo = this.ptlAgreementService.getByAgreementIdNew(insFeeOrderNew.getAgreementId());
- if(ObjectUtils.isNotEmpty(ptlAgreementQueryVo)){
- if(StringUtils.isNotEmpty(ptlAgreementQueryVo.getPartnerCompaniesId())){
- // 合作公司id
- String partnerCompaniesId = ptlAgreementQueryVo.getPartnerCompaniesId();
- insPlyIncome.setPartnerCompaniesId(partnerCompaniesId);
- EsmInsCompany esmInsCompany = EsmInsCompanyService.getById(partnerCompaniesId);
- String name = esmInsCompany.getNamesimple(); //合作名称
- insPlyIncome.setPartnerCompaniesName(name);
- insPlyIncome.setPartnerCompaniesId(ptlAgreementQueryVo.getPartnerCompaniesId());
- }
- if(StringUtils.isNotEmpty(ptlAgreementQueryVo.getInsuranceCompanyId())){
- String insuranceCompanyId = ptlAgreementQueryVo.getInsuranceCompanyId();
- EsmInsCompany esmInsCompany = EsmInsCompanyService.getById(insuranceCompanyId);
- String name = esmInsCompany.getNamesimple(); //保险公司名称 简称
- insPlyIncome.setCompanyName(name);
- }
- }
- }
- private BigDecimal calculateTotal(BigDecimal value1, BigDecimal value2, BigDecimal value3) {
- BigDecimal total = BigDecimal.ZERO;
- if (value1 != null) {
- total = total.add(value1);
- }
- if (value2 != null) {
- total = total.add(value2);
- }
- if (value3 != null) {
- total = total.add(value3);
- }
- return total;
- }
- private String judgeAgreeType(Long agreementId) {
- if (agreementId == null) {
- return null;
- }
- HttpResult<PtlAgreementQueryVo> byAgreementId = ptlAgreementService.getByAgreementId(agreementId.toString());
- if (byAgreementId != null && ObjectUtils.isNotEmpty(byAgreementId.getData())) {
- PtlAgreement agreement = byAgreementId.getData().getAgreement();
- String agreementType = agreement.getAgreementType();
- if (StringUtils.isNotEmpty(agreementType)) {
- return agreementType;
- }
- }
- return null;
- }
- public HttpResult<BasePageResult<InsPlyIncome>> queryNew(InsPlyIncomeVo insPlyIncomeVo){
- try{
- HashMap<String, Object> params = new HashMap<>();
- PageInfo<List<InsPlyIncome>> pageHelper = null;
- PageHelper.startPage(insPlyIncomeVo.getPageNum(),insPlyIncomeVo.getPageSize());
- params.put("pageNum",insPlyIncomeVo.getPageNum());
- params.put("pageSize",insPlyIncomeVo.getPageSize());
- params =this.saveParams(insPlyIncomeVo,params);
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getIds())){
- params.put("ids",insPlyIncomeVo.getIds().split(","));
- }
- List<InsPlyIncome> list= this.baseMapper.queryNew(params);
- pageHelper=new PageInfo(list);
- BasePageResult<InsPlyIncome> pageResult=new BasePageResult<InsPlyIncome>(insPlyIncomeVo.getPageNum(), insPlyIncomeVo.getPageSize(), pageHelper.getTotal(), pageHelper.getPages(), list);
- return HttpResult.ok(pageResult);
- }catch (Exception e){
- e.printStackTrace();
- return HttpResult.error("查询异常");
- }
- }
- @Override
- public HashMap<String,Object> totalAmount(List<String> selectIds) {
- HashMap<String, Object> params = new HashMap<>();
- params.put("selectIds",selectIds);
- HashMap<String,Object> resultMap =baseMapper.totalAmount(params);
- return resultMap;
- }
- @Override
- @Transactional
- public HttpResult<Object> batchPinBalance(InsPlyIncomeVo insPlyIncomeVo) {
- if(!CollectionUtils.isEmpty(insPlyIncomeVo.getSelectIds())){
- List<String> selectIds = insPlyIncomeVo.getSelectIds();
- for(String id: selectIds){
- InsPlyIncome insPlyIncome = new InsPlyIncome();
- insPlyIncome.setHandlingFeesStatus("1");
- insPlyIncome.setSettlementTime(LocalDate.now());
- insPlyIncome.setId(id);
- baseMapper.updateById(insPlyIncome);
- }
- }
- SettlementDocumentaryLogEntity settlementDocumentaryLogEntity = new SettlementDocumentaryLogEntity();
- settlementDocumentaryLogEntity.setIds(insPlyIncomeVo.getIds());
- // settlementDocumentaryLogEntity.setCompanyId(insPlyIncomeVo.getCompanyId());
- settlementDocumentaryLogEntity.setAmount(insPlyIncomeVo.getOtherFeevalue()); //跟单费金额
- settlementDocumentaryLogEntity.setHandingAmount(insPlyIncomeVo.getCommissionFeevalue()); //手续费金额
- settlementDocumentaryLogEntity.setCreateTime(new Date());
- settlementDocumentaryLogService.save(settlementDocumentaryLogEntity);
- return HttpResult.ok();
- }
- @Override
- public List<InsPlyIncome> totalPinAmount(InsPlyIncomeVo insPlyIncomeVo) {
- HashMap<String, Object> params = new HashMap<>();
- params = this.saveParams(insPlyIncomeVo,params);
- List<InsPlyIncome> result=baseMapper.totalPinAmount(params);
- return result;
- }
- private HashMap<String, Object> saveParams(InsPlyIncomeVo insPlyIncomeVo, HashMap<String, Object> params) {
- if(ObjectUtils.isNotEmpty(insPlyIncomeVo.getStartDate())){
- params.put("startDate",insPlyIncomeVo.getStartDate().toString());
- }
- if(ObjectUtils.isNotEmpty(insPlyIncomeVo.getEndDate())){
- params.put("endDate",insPlyIncomeVo.getEndDate().toString());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getOrderno())){
- params.put("orderno",insPlyIncomeVo.getOrderno());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getIsNotDocumentary())){
- params.put("isOther",insPlyIncomeVo.getIsNotDocumentary());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getIsNotCar())){
- params.put("isNotCar",insPlyIncomeVo.getIsNotCar());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getAgreementType())){
- params.put("agreementType",insPlyIncomeVo.getAgreementType());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getLicenseno())){
- params.put("licenseno", insPlyIncomeVo.getLicenseno());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getUserId())){
- params.put("userId",insPlyIncomeVo.getUserId());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getCompanyId())){
- params.put("companyId",insPlyIncomeVo.getCompanyId());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getRiskcode())){
- params.put("riskcode",insPlyIncomeVo.getRiskcode());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getPolicyno())){
- params.put("policyno",insPlyIncomeVo.getPolicyno());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getSyPolicyno())){
- params.put("syPolicyno",insPlyIncomeVo.getSyPolicyno());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getNoPolicyno())){
- params.put("noPolicyno",insPlyIncomeVo.getNoPolicyno());
- }
- if(insPlyIncomeVo.getCreateTime()!=null){
- params.put("createTime",insPlyIncomeVo.getCreateTime().toString());
- }
- if(insPlyIncomeVo.getSettlementTime()!=null){
- params.put("settlementTime",insPlyIncomeVo.getSettlementTime().toString());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getHandlingFeesStatus())){
- params.put("handlingFeesStatus",insPlyIncomeVo.getHandlingFeesStatus());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getPartnerCompaniesId())){
- params.put("partnerCompaniesId",insPlyIncomeVo.getPartnerCompaniesId());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getYear())){
- params.put("year",insPlyIncomeVo.getYear());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getMonth())){
- params.put("month",insPlyIncomeVo.getMonth());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getDay())){
- params.put("day",insPlyIncomeVo.getDay());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getSignDateEnd())){
- params.put("signDateEnd",insPlyIncomeVo.getSignDateEnd());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getSignDateStart())){
- params.put("signDateStart",insPlyIncomeVo.getSignDateStart());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getCompanyName())){
- params.put("companyName",insPlyIncomeVo.getCompanyName());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getInsuredName())){
- params.put("insuredName",insPlyIncomeVo.getInsuredName());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getPartnerCompaniesName())){
- params.put("partnerCompaniesName",insPlyIncomeVo.getPartnerCompaniesName());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getDockingPerson())){
- params.put("dockingPerson",insPlyIncomeVo.getDockingPerson());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getYeartsStart()) && StringUtils.isNotEmpty(insPlyIncomeVo.getYeartsEnd())){
- params.put("yeartsStart",insPlyIncomeVo.getYeartsStart());
- params.put("yeartsEnd",insPlyIncomeVo.getYeartsEnd());
- }
- if(insPlyIncomeVo.getJqStartDate() !=null){
- params.put("jqStartDate",insPlyIncomeVo.getJqStartDate());
- }
- if(insPlyIncomeVo.getJqStartDate() !=null){
- params.put("jqEndDate",insPlyIncomeVo.getJqEndDate());
- }
- if(insPlyIncomeVo.getJqStartDate() !=null){
- params.put("syStartDate",insPlyIncomeVo.getSyStartDate());
- }
- if(insPlyIncomeVo.getJqStartDate() !=null){
- params.put("syEndDate",insPlyIncomeVo.getSyEndDate());
- }
- if( StringUtils.isNotEmpty(insPlyIncomeVo.getProvinceId())){
- params.put("provinceId",insPlyIncomeVo.getProvinceId());
- }
- if( StringUtils.isNotEmpty(insPlyIncomeVo.getCityId())){
- params.put("cityId",insPlyIncomeVo.getCityId());
- }
- if( StringUtils.isNotEmpty(insPlyIncomeVo.getCountyId())){
- params.put("countyId",insPlyIncomeVo.getCountyId());
- }
- if( StringUtils.isNotEmpty(insPlyIncomeVo.getDeptId())){
- params.put("deptId",insPlyIncomeVo.getDeptId());
- }
- if( StringUtils.isNotEmpty(insPlyIncomeVo.getAllPartnerCompaniesId())){
- params.put("allPartnerCompaniesId",insPlyIncomeVo.getAllPartnerCompaniesId());
- }
- if( StringUtils.isNotEmpty(insPlyIncomeVo.getProvincePartnerCompaniesId())){
- params.put("provincePartnerCompaniesId",insPlyIncomeVo.getProvincePartnerCompaniesId());
- }
- if(!CollectionUtils.isEmpty(insPlyIncomeVo.getSelectIds())){
- params.put("selectIds",insPlyIncomeVo.getSelectIds());
- }
- if(!CollectionUtils.isEmpty(insPlyIncomeVo.getPartnerCompaniesIdList())){
- params.put("partnerCompaniesIdList",insPlyIncomeVo.getPartnerCompaniesIdList());
- }
- return params;
- }
- @Override
- public HttpResult<BasePageResult<InsPlyIncome>> nonSettlementQuery(InsPlyIncomeVo insPlyIncomeVo) {
- try{
- HashMap<String, Object> params = new HashMap<>();
- PageInfo<List<InsPlyIncome>> pageHelper = null;
- PageHelper.startPage(insPlyIncomeVo.getPageNum(),insPlyIncomeVo.getPageSize());
- params.put("pageNum",insPlyIncomeVo.getPageNum());
- params.put("pageSize",insPlyIncomeVo.getPageSize());
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getIsNotCar())){
- params.put("isNotCar",insPlyIncomeVo.getIsNotCar());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getIsNotDocumentary())){
- params.put("isOther",insPlyIncomeVo.getIsNotDocumentary());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getYear())){
- params.put("year",insPlyIncomeVo.getYear());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getMonth())){
- params.put("month",insPlyIncomeVo.getMonth());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getDocumentaryFeesStatus())){
- params.put("documentaryFeesStatus",insPlyIncomeVo.getDocumentaryFeesStatus());
- }
- List<InsPlyIncome> list= this.baseMapper.NonSettlementQuery(params);
- pageHelper=new PageInfo(list);
- BasePageResult<InsPlyIncome> pageResult=new BasePageResult<InsPlyIncome>(insPlyIncomeVo.getPageNum(), insPlyIncomeVo.getPageSize(), pageHelper.getTotal(), pageHelper.getPages(), list);
- return HttpResult.ok(pageResult);
- }catch (Exception e){
- e.printStackTrace();
- return HttpResult.error("查询异常");
- }
- }
- @Override
- public HttpResult<List<InsPlyIncome>> nonSettldetail(InsPlyIncomeVo insPlyIncomeVo) {
- try {
- String ids = insPlyIncomeVo.getIds();
- ArrayList<InsPlyIncome> resultList = new ArrayList<>();
- if (ObjectUtils.isNotEmpty(ids)) {
- String[] split = ids.split(",");
- for (int i =0; i <split.length ; i++) {
- String id = split[i];
- resultList.add(this.baseMapper.getById(id));
- }
- }
- return HttpResult.ok(resultList);
- } catch (Exception e) {
- e.printStackTrace();
- return HttpResult.error("查询异常");
- }
- }
- /**
- *
- * @param multipartFile
- * @return totalAmount 总金额
- * totalHandingAmount 总手续费金额
- * totalOtherAmount 总跟单费金额
- * resultHashMap 返回 ids 已经上面的金额
- * resultNoSelect 未匹配的车牌号
- */
- @Override
- public HashMap<String, Object> importData(MultipartFile multipartFile) {
- BigDecimal totalAmount=BigDecimal.ZERO;
- BigDecimal totalHandingAmount=BigDecimal.ZERO;
- BigDecimal totalOtherAmount=BigDecimal.ZERO;
- HashMap<String, Object> params = new HashMap<>();
- HashMap<String, Object> resultHashMap = new HashMap<>();
- ArrayList<HashMap<String,Object>> resultNoSelect = new ArrayList<>();
- try {
- List<InsPlyIncomeExcelDto> dtoList = ExcelEasypoiUtils.importExcel(multipartFile, InsPlyIncomeExcelDto.class, 0, 1, 1);
- for (InsPlyIncomeExcelDto excelItem : dtoList) {
- params.clear();
- if(StringUtils.isNotEmpty(excelItem.getLicenseno())){
- params.put("licenseno",excelItem.getLicenseno());//车牌号
- }
- if(StringUtils.isNotEmpty(excelItem.getPolicyno())){
- params.put("policyno",excelItem.getPolicyno()); //交强保单号
- }
- if(StringUtils.isNotEmpty(excelItem.getSyPolicyno())){
- params.put("syPolicyno", excelItem.getSyPolicyno());//商业保单号
- }
- if(StringUtils.isNotEmpty(excelItem.getNoPolicyno())){
- params.put("noPolicyno",excelItem.getNoPolicyno()); //非车保单号
- }
- InsPlyIncome insPlyIncome=baseMapper.findByLicenseno(params);
- if(ObjectUtils.isNotEmpty(insPlyIncome)){
- if(insPlyIncome.getAllFeeValue()!=null && insPlyIncome.getAllFeeValue().compareTo(BigDecimal.ZERO)!=0){
- totalAmount = totalAmount.add(insPlyIncome.getAllFeeValue()); //总金额
- }
- if(insPlyIncome.getCommissionFeevalue()!=null && insPlyIncome.getCommissionFeevalue().compareTo(BigDecimal.ZERO)!=0){
- totalHandingAmount=totalHandingAmount.add(insPlyIncome.getCommissionFeevalue()); //总手续费
- }
- if(insPlyIncome.getOtherFeevalue()!=null && insPlyIncome.getOtherFeevalue().compareTo(BigDecimal.ZERO)!=0){
- totalOtherAmount=totalOtherAmount.add(insPlyIncome.getOtherFeevalue()); //总跟单费
- }
- }else {
- resultNoSelect.add(params); // 添加未匹配的车牌号
- }
- }
- resultHashMap.put("totalAmount",totalAmount);
- resultHashMap.put("totalHandingAmount",totalHandingAmount);
- resultHashMap.put("totalOtherAmount",totalOtherAmount);
- resultHashMap.put("resultList",resultNoSelect);
- return resultHashMap;
- } catch (IOException e) {
- throw new SystemException("导入失败!");
- }
- }
- /**
- *
- * @param multipartFile
- * @return resultList 包含总金额 还有 未匹配表中的数据
- */
- @Override
- public HashMap<String, Object> bxImportData(MultipartFile multipartFile,String isNotCar) {
- BigDecimal totalAmount=BigDecimal.ZERO;
- HashMap<String, Object> params = new HashMap<>();
- ArrayList<HashMap<String, Object>> resultList = new ArrayList<>();
- HashMap<String, Object> resultMap = new HashMap<>();
- StringBuffer strBuilder = new StringBuffer();
- boolean open=true;
- String ids="";
- try {
- List<InsBxPlyIncomeExcelDto> dtoList = ExcelEasypoiUtils.importExcel(multipartFile, InsBxPlyIncomeExcelDto.class, 0, 1, 1);
- Integer i=0;
- if(!CollectionUtils.isEmpty(dtoList)){
- for (InsBxPlyIncomeExcelDto excelItem : dtoList) {
- String reason ="";
- i=i+1;
- params.clear();
- if(StringUtils.isNotEmpty(excelItem.getLicenseno())){
- String licenseno = excelItem.getLicenseno();//车牌号
- params.put("licenseno",licenseno);
- InsPlyIncome byBxLicenseno = baseMapper.findByBxLicenseno(params);
- if(ObjectUtils.isEmpty(byBxLicenseno)){
- reason="该数据车牌号有问题";
- }
- }
- if(StringUtils.isNotEmpty(excelItem.getPolicyno())){
- String policyno = excelItem.getPolicyno(); //交强保单号
- params.put("policyno",policyno);
- InsPlyIncome byBxLicenseno = baseMapper.findByBxLicenseno(params);
- if(ObjectUtils.isEmpty(byBxLicenseno)){
- reason="该数据交强保单号有问题";
- }
- }
- if(StringUtils.isNotEmpty(excelItem.getSyPolicyno())){
- String syPolicyno = excelItem.getSyPolicyno(); //商业保单号
- params.put("syPolicyno",syPolicyno);
- InsPlyIncome byBxLicenseno = baseMapper.findByBxLicenseno(params);
- if(ObjectUtils.isEmpty(byBxLicenseno)){
- reason="该数据商业保单号有问题";
- }
- }
- if(excelItem.getJqSuperviseCostsPremiums() !=null && excelItem.getJqSuperviseCostsPremiums().compareTo(BigDecimal.ZERO)!=0){
- params.put("jqSuperviseCostsPremiums",excelItem.getJqSuperviseCostsPremiums());
- InsPlyIncome byBxLicenseno = baseMapper.findByBxLicenseno(params);
- if(ObjectUtils.isEmpty(byBxLicenseno)){
- reason="该数据交强手续费金额有问题";
- }
- }
- if(excelItem.getJqSuperviseCostsProportion() !=null && excelItem.getJqSuperviseCostsProportion().compareTo(BigDecimal.ZERO)!=0){
- params.put("jqSuperviseCostsProportion",excelItem.getJqSuperviseCostsProportion());
- InsPlyIncome byBxLicenseno = baseMapper.findByBxLicenseno(params);
- if(ObjectUtils.isEmpty(byBxLicenseno)){
- reason="该数据交强手续费比例有问题";
- }
- }
- if(excelItem.getSySuperviseCostsProportion() !=null && excelItem.getSySuperviseCostsProportion().compareTo(BigDecimal.ZERO)!=0){
- params.put("sySuperviseCostsProportion",excelItem.getSySuperviseCostsProportion());
- InsPlyIncome byBxLicenseno = baseMapper.findByBxLicenseno(params);
- if(ObjectUtils.isEmpty(byBxLicenseno)){
- reason="该数据商业手续费比例有问题";
- }
- }
- if(excelItem.getSySuperviseCostsPremiums() !=null && excelItem.getSySuperviseCostsPremiums().compareTo(BigDecimal.ZERO)!=0){
- params.put("sySuperviseCostsPremiums",excelItem.getSySuperviseCostsPremiums());
- InsPlyIncome byBxLicenseno = baseMapper.findByBxLicenseno(params);
- if(ObjectUtils.isEmpty(byBxLicenseno)){
- reason="该数据商业手续费金额有问题";
- }
- }
- if(excelItem.getJqPremium() !=null && excelItem.getJqPremium().compareTo(BigDecimal.ZERO)!=0){
- params.put("jqPremium",excelItem.getJqPremium());
- InsPlyIncome byBxLicenseno = baseMapper.findByBxLicenseno(params);
- if(ObjectUtils.isEmpty(byBxLicenseno)){
- reason="该数据交强保费有问题";
- }
- }
- if(excelItem.getSyPremium() !=null && excelItem.getSyPremium().compareTo(BigDecimal.ZERO)!=0){
- params.put("syPremium",excelItem.getSyPremium());
- InsPlyIncome byBxLicenseno = baseMapper.findByBxLicenseno(params);
- if(ObjectUtils.isEmpty(byBxLicenseno)){
- reason="该数据商业保费有问题";
- }
- }
- // 只查手续费
- params.put("isOther","0");
- params.put("isNotCar",isNotCar);
- InsPlyIncome insPlyIncome = baseMapper.findByBxLicenseno(params);
- if(ObjectUtils.isNotEmpty(insPlyIncome) && open){
- open=false;
- resultMap.put("companyId",insPlyIncome.getCompanyId()); // 保险公司id
- resultMap.put("partnerCompaniesId",insPlyIncome.getPartnerCompaniesId()); //合作公司id
- resultMap.put("agreementId",insPlyIncome.getAgreementId()); //协议id
- }
- if(ObjectUtils.isNotEmpty(insPlyIncome)){ // 比配上汇总金额 未匹配则返回到数据当中
- strBuilder.append(insPlyIncome.getId()).append(",");
- if( insPlyIncome.getCommissionFeevalue()!=null && insPlyIncome.getCommissionFeevalue().compareTo(BigDecimal.ZERO)!=0){
- totalAmount = totalAmount.add(insPlyIncome.getCommissionFeevalue()); //添加总手续费
- }
- }else {
- HashMap<String, Object> noMatching = new HashMap<>();
- if(StringUtils.isNotEmpty(excelItem.getLicenseno())){
- noMatching.put("licenseno",excelItem.getLicenseno());
- }
- if(StringUtils.isNotEmpty(excelItem.getPolicyno())){
- noMatching.put("policyno",excelItem.getPolicyno());
- }
- if(StringUtils.isNotEmpty(excelItem.getSyPolicyno())){
- noMatching.put("syPolicyno",excelItem.getSyPolicyno());
- }
- resultList.add(noMatching);
- }
- resultMap.put("reason",reason);
- }
- }
- if(strBuilder.length() >0){
- ids = strBuilder.deleteCharAt(strBuilder.length() - 1).toString();
- }
- resultMap.put("ids",ids);
- resultMap.put("totalAmount",totalAmount);
- resultMap.put("resultList",resultList);
- return resultMap;
- } catch (IOException e) {
- throw new SystemException("导入失败!");
- }
- }
- @Override
- public HashMap<String, Object> bxImportNoData(MultipartFile multipartFile,String isNotCar) {
- BigDecimal totalAmount=BigDecimal.ZERO;
- HashMap<String, Object> params = new HashMap<>();
- HashMap<String, Object> resultMap = new HashMap<>();
- ArrayList<HashMap<String, Object>> resultList = new ArrayList<>();
- StringBuffer strBuilder = new StringBuffer();
- String ids="";
- try {
- Integer i=0;
- List<InsBxNoPlyIncomeExcelDto> dtoList = ExcelEasypoiUtils.importExcel(multipartFile, InsBxNoPlyIncomeExcelDto.class, 0, 1, 1);
- if(!CollectionUtils.isEmpty(dtoList)){
- for (InsBxNoPlyIncomeExcelDto excelItem : dtoList) {
- String reason ="";
- i=i+1;
- params.clear();
- if(StringUtils.isNotEmpty(excelItem.getLicenseno())){
- String licenseno = excelItem.getLicenseno();//车牌号
- params.put("licenseno",licenseno);
- InsPlyIncome byBxLicenseno = baseMapper.findByBxLicenseno(params);
- if(ObjectUtils.isEmpty(byBxLicenseno)){
- reason="该数据车牌号有问题";
- }
- }
- if(StringUtils.isNotEmpty(excelItem.getNoPolicyno())){
- String policyno = excelItem.getNoPolicyno(); //非车保单号
- params.put("NoPolicyno",policyno);
- InsPlyIncome byBxLicenseno = baseMapper.findByBxLicenseno(params);
- if(ObjectUtils.isEmpty(byBxLicenseno)){
- reason="该数据非车保单号有问题";
- }
- }
- if(excelItem.getNoPremium() !=null && excelItem.getNoPremium().compareTo(BigDecimal.ZERO)!=0){
- params.put("noPolicyno",excelItem.getNoPremium());
- InsPlyIncome byBxLicenseno = baseMapper.findByBxLicenseno(params);
- if(ObjectUtils.isEmpty(byBxLicenseno)){
- reason="该数据非车保费有问题";
- }
- }
- if( excelItem.getNoSuperviseCostsPremiums() !=null && excelItem.getNoSuperviseCostsPremiums().compareTo(BigDecimal.ZERO)!=0){
- params.put("noSuperviseCostsPremiums",excelItem.getNoSuperviseCostsPremiums());
- InsPlyIncome byBxLicenseno = baseMapper.findByBxLicenseno(params);
- if(ObjectUtils.isEmpty(byBxLicenseno)){
- reason="该数据非车手续费有问题";
- }
- }
- if(excelItem.getNoSuperviseCostsProportion() != null && excelItem.getNoSuperviseCostsProportion().compareTo(BigDecimal.ZERO)!=0){
- params.put("noSuperviseCostsProportion",excelItem.getNoSuperviseCostsProportion());
- InsPlyIncome byBxLicenseno = baseMapper.findByBxLicenseno(params);
- if(ObjectUtils.isEmpty(byBxLicenseno)){
- reason="该数据非车手续费比例有问题";
- }
- }
- // 只查手续费
- params.put("isOther","0");
- params.put("isNotCar",isNotCar);
- InsPlyIncome insPlyIncome = baseMapper.findByBxLicenseno(params);
- if(i==dtoList.size() && ObjectUtils.isNotEmpty(insPlyIncome)){
- resultMap.put("companyId",insPlyIncome.getCompanyId()); // 保险公司id
- resultMap.put("partnerCompaniesId",insPlyIncome.getPartnerCompaniesId()); //合作公司id
- resultMap.put("agreementId",insPlyIncome.getAgreementId()); //协议id
- }
- if(ObjectUtils.isNotEmpty(insPlyIncome)){ // 比配上汇总金额 未匹配则返回到数据当中
- strBuilder.append(insPlyIncome.getId()).append(",");
- if( insPlyIncome.getCommissionFeevalue()!=null && insPlyIncome.getCommissionFeevalue().compareTo(BigDecimal.ZERO)!=0){
- totalAmount = totalAmount.add(insPlyIncome.getCommissionFeevalue()); //添加总手续费
- }
- }else {
- HashMap<String, Object> noMatching = new HashMap<>();
- if(StringUtils.isNotEmpty(excelItem.getLicenseno())){
- noMatching.put("licenseno",excelItem.getLicenseno());
- }
- if(StringUtils.isNotEmpty(excelItem.getNoPolicyno())){
- noMatching.put("NoPolicyno",excelItem.getNoPolicyno());
- }
- resultList.add(noMatching);
- }
- resultMap.put("reason",reason);
- }
- if(strBuilder.length() >0){
- ids = strBuilder.deleteCharAt(strBuilder.length() - 1).toString();
- }
- resultMap.put("ids",ids);
- resultMap.put("totalAmount",totalAmount);
- resultMap.put("resultList",resultList);
- }
- return resultMap;
- } catch (IOException e) {
- throw new SystemException("导入失败!");
- }
- }
- @Override
- public HttpResult bxOtherDetailsExcel(InsPlyIncomeVo insPlyIncomeVo, HttpServletRequest request, HttpServletResponse response) {
- HashMap<String, Object> params = new HashMap<>();
- params =this.saveParams(insPlyIncomeVo,params);
- List<InsPlyIncome> insPlyIncomes = baseMapper.queryNew(params);
- ExportParams exportParams = new ExportParams("保险跟单明细导出", null, ExcelType.HSSF);
- exportParams.setStyle(ExcelStyleUtil.class);
- List<BxOtherDetailsExcel> resultList = new ArrayList<>();
- for (InsPlyIncome item :insPlyIncomes){
- BxOtherDetailsExcel bxOtherDetailsExcel = new BxOtherDetailsExcel();
- BeanUtils.copyProperties(item, bxOtherDetailsExcel);
- resultList.add(bxOtherDetailsExcel);
- }
- String uploadPath = this.uploadPath + "/excel/";
- Path path = Paths.get(uploadPath);
- if (!Files.exists(path)) {
- try {
- Files.createDirectories(path);
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- String fileName = EasyExcelUtils.downExcel(uploadPath, "保险跟单明细导出", BxOtherDetailsExcel.class, resultList);
- return HttpResult.ok("",uploadUrl + "excel/" + fileName);
- }
- /**
- *
- * @param insPlyIncomeVo 传参字段
- * ids 通过ids中的id进行开票分组
- *
- * @return
- */
- @Override
- public HttpResult<List<HashMap<String,Object>>> invicdetail(InsPlyIncomeVo insPlyIncomeVo) {
- HashMap<String, Object> params = new HashMap<>();
- params =this.saveParams(insPlyIncomeVo,params);
- if (StringUtils.isEmpty(insPlyIncomeVo.getIsSettlement())){
- params.put("isSettlement","1");
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getSettlementStatus())){
- params.put("settlementStatus",insPlyIncomeVo.getSettlementStatus());
- }
- List<HashMap<String, Object>> resultList = settlementDocumentaryFeesService.getOtherSettldetail(params);
- if (resultList.size() > 0) {
- return HttpResult.ok(resultList);
- }
- return HttpResult.ok();
- }
- /***
- *
- * @param insPlyIncomeVo
- * @param request
- * @param response
- * @return 保险非车跟单明细导出
- */
- @Override
- public HttpResult bxNoOtherDetailsExcel(InsPlyIncomeVo insPlyIncomeVo, HttpServletRequest request, HttpServletResponse response) {
- HashMap<String, Object> params = new HashMap<>();
- params =this.saveParams(insPlyIncomeVo,params);
- List<InsPlyIncome> insPlyIncomes = baseMapper.queryNew(params);
- ExportParams exportParams = new ExportParams("保险非车跟单明细导出", null, ExcelType.HSSF);
- exportParams.setStyle(ExcelStyleUtil.class);
- List<BxNoOtherDetailsExcel> resultList = new ArrayList<>();
- for (InsPlyIncome item :insPlyIncomes){
- BxNoOtherDetailsExcel bxNoOtherDetailsExcel = new BxNoOtherDetailsExcel();
- BeanUtils.copyProperties(item, bxNoOtherDetailsExcel);
- resultList.add(bxNoOtherDetailsExcel);
- }
- String uploadPath = this.uploadPath + "/excel/";
- Path path = Paths.get(uploadPath);
- if (!Files.exists(path)) {
- try {
- Files.createDirectories(path);
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- String fileName = EasyExcelUtils.downExcel(uploadPath, "保险非车跟单明细导出", BxNoOtherDetailsExcel.class, resultList);
- return HttpResult.ok("",uploadUrl + "excel/" + fileName);
- }
- /**
- *
- * @param insPlyIncomeVo 开票ids
- * @return 返回开票号 开票金额 开票时间
- */
- @Override
- public HttpResult<List<HashMap<String, Object>>> otherSettldetail(InsPlyIncomeVo insPlyIncomeVo) {
- HashMap<String, Object> params = new HashMap<>();
- params =this.saveParams(insPlyIncomeVo,params);
- List<HashMap<String, Object>> resultList = settlementDocumentaryFeesService.getOtherSettldetail(params);
- if (resultList.size() > 0) {
- return HttpResult.ok(resultList);
- }
- return HttpResult.ok();
- }
- @Override
- public InsPlyIncome getEntityById(String id) {
- return baseMapper.getEntityById(id);
- }
- @Override
- @Transactional
- public void updateByEntity(InsPlyIncomeVo insPlyIncomeVo) {
- // 根据协议 如果是含增值税结算 用保费 * 如果是 不含税保费
- InsPlyIncome insPlyIncome = new InsPlyIncome();
- BeanUtils.copyProperties(insPlyIncomeVo, insPlyIncome);
- this.amountCalculate(insPlyIncomeVo,insPlyIncome);
- baseMapper.updateById(insPlyIncome);
- insPlyIncomeVo.setCrudStatus("2");
- this.saveLog(insPlyIncomeVo);
- }
- /**
- *
- * @param insPlyIncomeVo
- * @param insPlyIncome
- *
- * 重新计算金额 通过比例
- * 计算逻辑 交强不含税保费* 交强跟单比例 = 交强跟单金额
- */
- private void amountCalculate(InsPlyIncomeVo insPlyIncomeVo,InsPlyIncome insPlyIncome) {
- if("1".equals(insPlyIncomeVo.getAgreementType())){ //平台
- // 平台 手续费 +跟单费 = 应收 手续费 = 手续费比例*保费 应收比例=手续费比例 + 跟单比例
- BigDecimal jqSuperviseCostsProportion = initializationBigdecimal(insPlyIncomeVo.getJqSuperviseCostsProportion());//交强手续费比例
- BigDecimal sySuperviseCostsProportion = initializationBigdecimal(insPlyIncomeVo.getSySuperviseCostsProportion()); //商业手续费比例
- BigDecimal noSuperviseCostsProportion = initializationBigdecimal(insPlyIncomeVo.getNoSuperviseCostsProportion()); //非车手续费比例
- BigDecimal jqOtherCostsProportion = initializationBigdecimal(insPlyIncomeVo.getJqOtherCostsProportion()); //交强跟单比例
- BigDecimal syOtherCostsProportion = initializationBigdecimal(insPlyIncomeVo.getSyOtherCostsProportion()); //商业跟单比例
- BigDecimal noOtherCostsProportion = initializationBigdecimal(insPlyIncomeVo.getNoOtherCostsProportion()); //非车跟单比例
- BigDecimal jqPremium = initializationBigdecimal(insPlyIncomeVo.getJqPremium()); //交强保费
- BigDecimal syPremium = initializationBigdecimal(insPlyIncomeVo.getSyPremium()); //商业保费
- BigDecimal noPremium = initializationBigdecimal(insPlyIncomeVo.getNoPremium()); //非车保费
- //手续费比例
- insPlyIncome.setCommissionFeerate(this.calculateTotal(jqSuperviseCostsProportion,sySuperviseCostsProportion,noSuperviseCostsProportion)); //手续费比例 = 商业手续费比例 + 交强手续费比例 + 非车手续费比例
- if(jqSuperviseCostsProportion !=null && jqPremium!=null ){
- insPlyIncome.setJqSuperviseCostsPremiums(this.algorithmAmount(jqPremium,jqSuperviseCostsProportion)); //交强手续费
- }
- if(sySuperviseCostsProportion !=null && syPremium !=null){
- insPlyIncome.setSySuperviseCostsPremiums(this.algorithmAmount(syPremium,sySuperviseCostsProportion)); //商业手续费
- }
- if(noSuperviseCostsProportion !=null && noPremium!=null){
- insPlyIncome.setNoSuperviseCostsPremiums(this.algorithmAmount(noPremium,noSuperviseCostsProportion)); //非车手续费
- }
- if(jqOtherCostsProportion !=null && jqPremium!=null ){
- insPlyIncome.setJqOtherCostsPremium(this.algorithmAmount(jqPremium,jqOtherCostsProportion)); //交强跟单费
- }
- if(syOtherCostsProportion !=null && syPremium !=null ){
- insPlyIncome.setSyOtherCostsPremium(this.algorithmAmount(syPremium,syOtherCostsProportion)); //商业跟单费
- }
- if(noOtherCostsProportion !=null && noPremium !=null){
- insPlyIncome.setNoOtherCostsPremium(this.algorithmAmount(noPremium,noOtherCostsProportion)); //非车跟单费
- }
- insPlyIncome.setCommissionFeevalue(this.calculateTotal(insPlyIncome.getJqSuperviseCostsPremiums(),insPlyIncome.getSySuperviseCostsPremiums(),insPlyIncome.getNoSuperviseCostsPremiums())); //手续费
- insPlyIncome.setCommissionFeerate(this.calculateTotal(jqSuperviseCostsProportion,sySuperviseCostsProportion,noSuperviseCostsProportion)); //手续费比例
- insPlyIncome.setOtherFeevalue(this.calculateTotal(insPlyIncome.getJqOtherCostsPremium(),insPlyIncome.getSyOtherCostsPremium(),insPlyIncome.getNoOtherCostsPremium())); //跟单费金额
- insPlyIncome.setOtherFeerate(this.calculateTotal(jqOtherCostsProportion,syOtherCostsProportion,noOtherCostsProportion)); //跟单费比例
- insPlyIncome.setAllFeeValue(this.calculateTotal(insPlyIncome.getCommissionFeevalue(),insPlyIncome.getOtherFeevalue(),null)); // 总费用 = 手续费+跟单费
- //应收比例 交强应收比例=交强手续费比例+交强非跟单比例
- insPlyIncome.setJqReceivableProportion(this.calculateTotal(jqSuperviseCostsProportion,jqOtherCostsProportion,null)); //交强应收
- insPlyIncome.setSyReceivableProportion(this.calculateTotal(sySuperviseCostsProportion,syOtherCostsProportion,null)); //商业应收
- insPlyIncome.setNoReceivableProportion(this.calculateTotal(noSuperviseCostsProportion,noOtherCostsProportion,null)); //非车应收
- }else {
- BigDecimal jqNoTaxPremium = insPlyIncomeVo.getJqNoTaxPremium();// 交强手续费 按照思路 交强不含税保费* 交强手续费比例 =交强手续费
- BigDecimal syNoTaxPremium = insPlyIncomeVo.getSyNoTaxPremium();// 商业手续费 按照思路 商业不含税保费* 商业手续费比例 =商业手续费
- BigDecimal noNoTaxPremium = insPlyIncomeVo.getNoNoTaxPremium();// 非车手续费 按照思路 非车不含税保费* 非车手续费比例 =非车手续费
- if(insPlyIncomeVo.getJqSuperviseCostsProportion().compareTo(BigDecimal.ZERO) != 0){
- BigDecimal jqhandingFee = jqNoTaxPremium.multiply(insPlyIncomeVo.getJqSuperviseCostsProportion().divide(new BigDecimal(100)));
- insPlyIncome.setJqSuperviseCostsPremiums(jqhandingFee);
- }
- if(insPlyIncomeVo.getSySuperviseCostsProportion().compareTo(BigDecimal.ZERO) != 0){
- BigDecimal syhandingFee = syNoTaxPremium.multiply(insPlyIncomeVo.getSySuperviseCostsProportion().divide(new BigDecimal(100)));
- insPlyIncome.setSySuperviseCostsPremiums(syhandingFee);
- }
- if(insPlyIncomeVo.getNoSuperviseCostsProportion().compareTo(BigDecimal.ZERO) != 0){
- BigDecimal nohandingFee = noNoTaxPremium.multiply(insPlyIncomeVo.getNoSuperviseCostsProportion().divide(new BigDecimal(100)));
- insPlyIncome.setNoSuperviseCostsPremiums(nohandingFee);
- }
- if(insPlyIncomeVo.getJqOtherCostsProportion().compareTo(BigDecimal.ZERO) != 0){
- BigDecimal jqother = jqNoTaxPremium.multiply(insPlyIncomeVo.getJqOtherCostsProportion().divide(new BigDecimal(100)));//交强跟单费 按照思路 交强不含税保费* 交强跟单比例 = 交强跟单金额
- insPlyIncome.setJqOtherCostsPremium(jqother);
- }
- if(insPlyIncomeVo.getSyOtherCostsProportion().compareTo(BigDecimal.ZERO) != 0){
- BigDecimal syother = syNoTaxPremium.multiply(insPlyIncomeVo.getSyOtherCostsProportion().divide(new BigDecimal(100)));//交强跟单费 按照思路 交强不含税保费* 交强跟单比例 = 交强跟单金额
- insPlyIncome.setSyOtherCostsPremium(syother);
- }
- if(insPlyIncomeVo.getNoOtherCostsProportion().compareTo(BigDecimal.ZERO) != 0){
- BigDecimal syother = syNoTaxPremium.multiply(insPlyIncomeVo.getNoOtherCostsProportion().divide(new BigDecimal(100)));//非车跟单费 按照思路 非车不含税保费* 非车跟单比例 = 非车跟单金额
- insPlyIncome.setNoOtherCostsPremium(syother);
- }
- if("0".equals(insPlyIncomeVo.getIsNotDocumentary()) && "0".equals(insPlyIncomeVo.getIsNotCar())){ //保险 手续费 =不含税保费* 手续费比例
- insPlyIncome.setCommissionFeevalue(this.calculateTotal(insPlyIncome.getJqSuperviseCostsPremiums(),insPlyIncome.getSySuperviseCostsPremiums(),null)); // 手续费
- insPlyIncome.setCommissionFeerate(this.calculateTotal(insPlyIncome.getJqSuperviseCostsProportion(),insPlyIncome.getSySuperviseCostsProportion(),null));//手续费比例
- insPlyIncome.setAllFeeValue(this.calculateTotal(insPlyIncome.getCommissionFeevalue(),null,null));//总金额
- }else if ("1".equals(insPlyIncomeVo.getIsNotDocumentary()) && "0".equals(insPlyIncomeVo.getIsNotCar())){ //保险跟单费 交强跟单+商业跟单
- insPlyIncome.setOtherFeevalue(this.calculateTotal(insPlyIncome.getJqOtherCostsPremium(),insPlyIncome.getSyOtherCostsPremium(),null));
- insPlyIncome.setOtherFeerate(this.calculateTotal(insPlyIncome.getJqOtherCostsProportion(),insPlyIncome.getSyOtherCostsProportion(),null));
- insPlyIncome.setAllFeeValue(this.calculateTotal(insPlyIncome.getOtherFeevalue(),null,null));//总金额
- }
- if("0".equals(insPlyIncomeVo.getIsNotDocumentary()) && "1".equals(insPlyIncomeVo.getIsNotCar())){// 非车
- insPlyIncome.setCommissionFeevalue(this.calculateTotal(insPlyIncome.getNoSuperviseCostsPremiums(),null,null)); // 非车手续费
- insPlyIncome.setCommissionFeerate(this.calculateTotal(insPlyIncome.getNoSuperviseCostsProportion(),null,null)); //非车比例
- insPlyIncome.setAllFeeValue(this.calculateTotal(insPlyIncome.getCommissionFeevalue(),null,null));//总金额
- }else if ("1".equals(insPlyIncomeVo.getIsNotDocumentary()) && "1".equals(insPlyIncomeVo.getIsNotCar())){ //非车跟单
- insPlyIncome.setOtherFeevalue(this.calculateTotal(insPlyIncome.getNoOtherCostsPremium(),null,null)); //非车跟单金额
- insPlyIncome.setOtherFeerate(this.calculateTotal(insPlyIncome.getNoOtherCostsProportion(),null,null)); // 非车跟单比例
- insPlyIncome.setAllFeeValue(this.calculateTotal(insPlyIncome.getOtherFeevalue(),null,null));//总金额
- }
- }
- }
- /**
- *
- * @param value1 保费
- * @param value2 比例
- * @return 费用
- */
- private BigDecimal algorithmAmount(BigDecimal value1, BigDecimal value2) {
- return value1.multiply(value2.divide(new BigDecimal(100)));
- }
- private BigDecimal initializationBigdecimal(BigDecimal value) {
- return value != null ? value : BigDecimal.ZERO;
- }
- private void saveLog(InsPlyIncomeVo insPlyIncomeVo) {
- // 添加记录
- SettlementDocumentaryLogEntity settlementDocumentaryLogEntity = new SettlementDocumentaryLogEntity();
- settlementDocumentaryLogEntity.setCrudStatus(insPlyIncomeVo.getCrudStatus());
- settlementDocumentaryLogEntity.setAmount(insPlyIncomeVo.getOtherFeevalue());
- settlementDocumentaryLogEntity.setSettlementDocumentaryId(insPlyIncomeVo.getId());
- settlementDocumentaryLogEntity.setAmountType("2");
- settlementDocumentaryLogService.save(settlementDocumentaryLogEntity);
- }
- @Override
- @Transactional
- public HttpResult<InsPlyIncome> insertByEntity(InsPlyIncomeVo insPlyIncomeVo) {
- Long id = new SnowFlakeUtil().nextId();
- InsPlyIncome insPlyIncome = new InsPlyIncome();
- insPlyIncomeVo.setOrderno(id.toString());
- BeanUtils.copyProperties(insPlyIncomeVo, insPlyIncome);
- insPlyIncome.setUserId(BaseController.getUser().getId());
- insPlyIncome.setDocumentaryFeesStatus("0");
- insPlyIncome.setHandlingFeesStatus("0");
- insPlyIncome.setIsNotCar(insPlyIncomeVo.getIsNotCar()); // 是否是非车
- insPlyIncome.setIsNotDocumentary(insPlyIncomeVo.getIsNotDocumentary()); //是否是跟单
- HashMap<String, Object> params = new HashMap<>();
- params.put("companyId",insPlyIncomeVo.getCompanyId());
- params.put("partnerCompaniesId",insPlyIncomeVo.getPartnerCompaniesId());
- PtlAgreement ptlAgreement = ptlAgreementService.selectAgreeId(params);
- if(ObjectUtils.isEmpty(ptlAgreement)){
- return HttpResult.error("协议匹配不上");
- }
- insPlyIncome.setAgreementId(ptlAgreement.getId());
- baseMapper.insert(insPlyIncome);
- insPlyIncomeVo.setId(insPlyIncome.getId());
- insPlyIncomeVo.setCrudStatus("1");
- this.saveLog(insPlyIncomeVo); //添加日志
- // HashMap<String, Object> params = new HashMap<>();
- //
- // if(StringUtils.isNotEmpty(insPlyIncomeVo.getIsNotCar())){
- // params.put("isNotCar",insPlyIncomeVo.getIsNotCar());
- // }
- // params.put("isOther","1");
- // if(StringUtils.isNotEmpty(insPlyIncomeVo.getYear())){
- // params.put("year",insPlyIncomeVo.getYear());
- // }
- // if(StringUtils.isNotEmpty(insPlyIncomeVo.getCompanyId())){
- // params.put("companyId",insPlyIncomeVo.getCompanyId());
- // }
- //
- // List<InsPlyIncome> list= this.baseMapper.NonSettlementQuery(params);
- // if(!CollectionUtils.isEmpty(list)){
- // for (InsPlyIncome item :list){
- // return HttpResult.ok(item.getIds());
- // }
- // }
- return HttpResult.ok();
- }
- @Override
- @Transactional
- public HttpResult<InsPlyIncome> deleteById(InsPlyIncomeVo insPlyIncomeVo) {
- HashMap<String, Object> params = new HashMap<>();
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getIsNotCar())){
- params.put("isNotCar",insPlyIncomeVo.getIsNotCar());
- }
- params.put("isOther","1");
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getYear())){
- params.put("year",insPlyIncomeVo.getYear());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getCompanyId())){
- params.put("companyId",insPlyIncomeVo.getCompanyId());
- }
- baseMapper.deleteById(insPlyIncomeVo.getId());
- insPlyIncomeVo.setCrudStatus("3");
- this.saveLog(insPlyIncomeVo);
- List<InsPlyIncome> list = this.baseMapper.NonSettlementQuery(params);
- if (!CollectionUtils.isEmpty(list)) {
- for (InsPlyIncome item : list) {
- return HttpResult.ok(item.getIds());
- }
- } else {
- return HttpResult.ok(null);
- }
- return HttpResult.ok("删除成功");
- }
- @Override
- @Transactional
- public void uodateBalance(InsPlyIncomeVo insPlyIncomeVo) {
- InsPlyIncome insPlyIncome = new InsPlyIncome();
- insPlyIncomeVo.setHandlingFeesStatus("1");
- insPlyIncomeVo.setSettlementTime(LocalDate.now());
- BeanUtils.copyProperties(insPlyIncomeVo, insPlyIncome);
- baseMapper.updateById(insPlyIncome);
- // 生成记录
- SettlementDocumentaryLogEntity settlementDocumentaryLogEntity = new SettlementDocumentaryLogEntity();
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getAgreementType()) && "1".equals(insPlyIncomeVo.getAgreementType())){
- // 只有平台协议 才会跟单费一笔结算
- settlementDocumentaryLogEntity.setAmount(insPlyIncomeVo.getOtherFeevalue()); // 跟单费金额
- }
- settlementDocumentaryLogEntity.setHandingAmount(insPlyIncomeVo.getCommissionFeevalue()); // 手续费金额
- settlementDocumentaryLogEntity.setSettlementDocumentaryId(insPlyIncomeVo.getId()); // 关联id
- settlementDocumentaryLogEntity.setAmountType("1"); //手续费结算
- settlementDocumentaryLogEntity.setCreateTime(new Date());
- settlementDocumentaryLogService.save(settlementDocumentaryLogEntity);
- }
- @Override
- @Transactional
- public HttpResult<BasePageResult<InsPlyIncome>> totalQuery(InsPlyIncomeVo insPlyIncomeVo) {
- HashMap<String, Object> params = new HashMap<>();
- PageInfo<List<InsPlyIncome>> pageHelper = null;
- if(insPlyIncomeVo.getStartDate()!=null){
- params.put("startDate",insPlyIncomeVo.getStartDate().toString());
- }
- if(insPlyIncomeVo.getEndDate()!=null){
- params.put("endDate",insPlyIncomeVo.getEndDate().toString());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getYear())){
- params.put("year",insPlyIncomeVo.getYear());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getIsNotCar())){
- params.put("isNotCar",insPlyIncomeVo.getIsNotCar());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getIsNotDocumentary())){
- params.put("isOther",insPlyIncomeVo.getIsNotDocumentary());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getDocumentaryFeesStatus())){
- params.put("documentaryFeesStatus",insPlyIncomeVo.getDocumentaryFeesStatus());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getCompanyId())){
- params.put("companyId",insPlyIncomeVo.getCompanyId());
- }
- params.put("pageNum",insPlyIncomeVo.getPageNum());
- params.put("pageSize",insPlyIncomeVo.getPageSize());
- List<InsPlyIncome> list= this.baseMapper.totalQuery(params);
- pageHelper=new PageInfo(list);
- return HttpResult.ok(new BasePageResult<>(insPlyIncomeVo.getPageNum(), insPlyIncomeVo.getPageSize(), pageHelper.getTotal(), pageHelper.getPages(), list));
- }
- /**
- *
- * @param insPlyIncomeVo ids ins_ply_income 这个表的ids incomeIds settlement_documentary_fees 这个表的ids
- * @return
- */
- /**
- * 跟单费结算 有分批结算的情况
- * @param insPlyIncomeVo
- * @return
- */
- @Override
- @Transactional
- public HttpResult batchBalance(InsPlyIncomeVo insPlyIncomeVo) {
- // 通过ids 查出跟单非结算单
- BigDecimal allAmount = BigDecimal.ZERO;
- // 分批结算
- SettlementDocumentaryFeesVo settlementDocumentaryFeesVo = new SettlementDocumentaryFeesVo();
- settlementDocumentaryFeesVo.setInvoiceId(insPlyIncomeVo.getInvoicId()); //开票号
- settlementDocumentaryFeesVo.setSettlementTime(insPlyIncomeVo.getSettlementTime()); //结算时间
- settlementDocumentaryFeesVo.setSettlementStatus("2"); //2为结算状态
- settlementDocumentaryFeesVo.setCompanyId(insPlyIncomeVo.getCompanyId()); // 保险公司id
- settlementDocumentaryFeesVo.setPartnerCompaniesId(insPlyIncomeVo.getPartnerCompaniesId()); //合作公司id
- settlementDocumentaryFeesVo.setUnsettledAmount(insPlyIncomeVo.getInvoicCommissionFeevalue().subtract(insPlyIncomeVo.getSettlementAmount())); //未结算金额
- settlementDocumentaryFeesVo.setIsNotCar(insPlyIncomeVo.getIsNotCar()); // 是否是非车
- settlementDocumentaryFeesVo.setInvoicingMethod(insPlyIncomeVo.getInvoicingMethod()); //开票方式
- settlementDocumentaryFeesVo.setTaxPoints(insPlyIncomeVo.getTaxPoints()); //税点
- if ("0".equals(insPlyIncomeVo.getInvoicingMethod())) {
- settlementDocumentaryFeesVo.setExpendAmount(insPlyIncomeVo.getSettlementAmount().multiply(BigDecimal.ONE.subtract(insPlyIncomeVo.getTaxPoints().divide(new BigDecimal(100)))));
- } else {
- settlementDocumentaryFeesVo.setExpendAmount(insPlyIncomeVo.getSettlementAmount()); //进账金额
- }
- settlementDocumentaryFeesVo.setSettlementAmount(insPlyIncomeVo.getSettlementAmount()); //进账金额
- settlementDocumentaryFeesVo.setHandlingFeesStatus(insPlyIncomeVo.getHandlingFeesStatus());
- settlementDocumentaryFeesVo.setTotalAmount(insPlyIncomeVo.getInvoicCommissionFeevalue());
- settlementDocumentaryFeesVo.setCreateTime(LocalDateTime.now());
- settlementDocumentaryFeesVo.setParentId(insPlyIncomeVo.getId());
- settlementDocumentaryFeesVo.setAgreementType("2"); //1平台 2 保险
- settlementDocumentaryFeesService.inertSettle(settlementDocumentaryFeesVo);
- return HttpResult.ok();
- }
- /**
- *
- * @param insPlyIncomeVo
- * @return
- */
- @Override
- public List<InsPlyIncome> totalBxAmount(InsPlyIncomeVo insPlyIncomeVo) {
- HashMap<String, Object> params = new HashMap<>();
- params=this.saveParams(insPlyIncomeVo,params);
- params.remove("handlingFeesStatus");
- List<InsPlyIncome> resultList = baseMapper.totalBxAmount(params);
- // 数据库数据太多是 用sql拼接id会丢失 所以只能逻辑拼接
- List<InsPlyIncome> idList=baseMapper.getIncomeIdList(params);
- if(!CollectionUtils.isEmpty(idList) && !CollectionUtils.isEmpty(resultList)){
- this.splicingIds(idList,resultList);
- }
- return resultList;
- }
- /**
- *
- * @param idList 要开票的数据集合
- * @param resultList 总返回数据
- */
- private void splicingIds(List<InsPlyIncome> idList, List<InsPlyIncome> resultList) {
- // 使用Map来存储agreementId到其id列表的映射
- Map<String, List<String>> idMap = new HashMap<>();
- for (InsPlyIncome idItem : idList) {
- String partnerCompaniesId = idItem.getPartnerCompaniesId();
- idMap.computeIfAbsent(partnerCompaniesId, k -> new ArrayList<>()).add(idItem.getId());
- }
- for (InsPlyIncome resultItem : resultList) {
- List<String> ids = idMap.getOrDefault(resultItem.getPartnerCompaniesId(), Collections.emptyList());
- String idsString = String.join(",", ids);
- resultItem.setIds(idsString);
- }
- }
- /**
- *
- * @param insPlyIncomeVo
- * @return 保险手续费改成多次结算
- */
- @Override
- @Transactional
- public HttpResult<Object> batchInvoicing(InsPlyIncomeVo insPlyIncomeVo) {
- ImportResult importResult = importAsyncService.getById(insPlyIncomeVo.getSelectIds().get(0)); // 查询 任务
- HashMap<String, Object> params = new HashMap<>();
- if (StringUtils.isNotEmpty(importResult.getId())) {
- params.put("companyId",importResult.getCompanyId());
- params.put("partnerCompaniesId",importResult.getPartnerCompaniesId());
- params.put("isOther","0");
- if (StringUtils.isNotEmpty(importResult.getHandStatus())) {
- if ("0".equals(importResult.getHandStatus())) {
- params.put("isNotCar", "0");
- } else if ("1".equals(importResult.getHandStatus())) {
- params.put("isNotCar", "1");
- }
- }
- List<InsPlyIncome> insPlyIncomes = baseMapper.queryNew(params);
- if (!CollectionUtils.isEmpty(insPlyIncomes)) {
- if (insPlyIncomeVo != null) { // 确保insPlyIncomeVo不是null
- for (InsPlyIncome item : insPlyIncomes) {
- item.setInvoicTime(LocalDate.now());
- item.setInvoicId(insPlyIncomeVo.getInvoicId());
- item.setHandlingFeesStatus("2");
- if (StringUtils.isNotEmpty(item.getTaskId())) {
- return HttpResult.error("该单据已经开票 ");
- } else {
- item.setTaskId(importResult.getId());
- baseMapper.updateById(item);
- }
- }
- }
- }
- }
- insPlyIncomeVo.setNoInvoicCommissionFeevalue(importResult.getTotalAmount());
- insPlyIncomeVo.setOtherFeevalue(importResult.getTotalAmount());
- insPlyIncomeVo.setHandlingFeesStatus("0"); // 0手续费 1 跟单费
- insPlyIncomeVo.setIsNotCar(insPlyIncomeVo.getIsNotCar());
- insPlyIncomeVo.setAgreementId(importResult.getAgreementId());
- insPlyIncomeVo.setPartnerCompaniesId(importResult.getPartnerCompaniesId());
- insPlyIncomeVo.setSettlementAmount(importResult.getTotalAmount());
- insPlyIncomeVo.setContractId(insPlyIncomeVo.getInvoicId());
- insPlyIncomeVo.setCompanyId(importResult.getCompanyId());
- insPlyIncomeVo.setTaskId(importResult.getId());
- this.batchInvoic(insPlyIncomeVo);
- return HttpResult.ok();
- }
- @Override
- public HttpResult<InsPlyIncome> queryInvoicing(InsPlyIncomeVo insPlyIncomeVo) {
- HashMap<String, Object> params = new HashMap<>();
- params = this.saveParams(insPlyIncomeVo, params);
- InsPlyIncome result= baseMapper.queryInvoicing(params); //总金额
- params.put("handlingFeesStatus","0");
- InsPlyIncome noResult= baseMapper.queryInvoicing(params); //未结算金额
- result.setReadyCommissionFeevalue(noResult.getCommissionFeevalue());
- return HttpResult.ok(result);
- }
- @Override
- public HttpResult<Object> batchBxBalance(InsPlyIncomeVo insPlyIncomeVo) {
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getIds())){// 判断 ins_ply_income 是否完全结算完 如果结算完则改为已结算状态
- this.changeHandStatus(insPlyIncomeVo.getIds(),insPlyIncomeVo);
- }
- // 分批结算
- SettlementDocumentaryFeesVo settlementDocumentaryFeesVo = new SettlementDocumentaryFeesVo();
- settlementDocumentaryFeesVo.setInvoiceId(insPlyIncomeVo.getInvoicId()); //开票号
- settlementDocumentaryFeesVo.setSettlementTime(insPlyIncomeVo.getSettlementTime()); //结算时间
- settlementDocumentaryFeesVo.setSettlementStatus("2"); //2为结算状态
- settlementDocumentaryFeesVo.setCompanyId(insPlyIncomeVo.getCompanyId()); // 保险公司id
- settlementDocumentaryFeesVo.setPartnerCompaniesId(insPlyIncomeVo.getPartnerCompaniesId()); //合作公司id
- settlementDocumentaryFeesVo.setIsNotCar(insPlyIncomeVo.getIsNotCar()); // 是否是非车
- settlementDocumentaryFeesVo.setInvoicingMethod(insPlyIncomeVo.getInvoicingMethod()); //开票方式
- settlementDocumentaryFeesVo.setTaxPoints(insPlyIncomeVo.getTaxPoints()); //税点
- settlementDocumentaryFeesVo.setExpendAmount(insPlyIncomeVo.getInvoicCommissionFeevalue().multiply(BigDecimal.ONE.subtract(insPlyIncomeVo.getTaxPoints().divide(new BigDecimal(100)))));
- settlementDocumentaryFeesVo.setSettlementAmount(insPlyIncomeVo.getSettlementAmount()); //进账金额
- settlementDocumentaryFeesVo.setTotalAmount(insPlyIncomeVo.getInvoicCommissionFeevalue());
- settlementDocumentaryFeesVo.setHandlingFeesStatus("0");
- settlementDocumentaryFeesVo.setParentId(insPlyIncomeVo.getId());
- settlementDocumentaryFeesVo.setSettlementImageId(insPlyIncomeVo.getSettlementImageId());
- settlementDocumentaryFeesVo.setCreateTime(LocalDateTime.now());
- settlementDocumentaryFeesVo.setAgreementType("2"); //1平台 2 保险
- settlementDocumentaryFeesService.inertSettle(settlementDocumentaryFeesVo);
- return HttpResult.ok();
- }
- private void changeHandStatus(String ids, InsPlyIncomeVo insPlyIncomeVo) {
- String[] split = ids.split(",");
- SettlementDocumentaryFeesEntity byId = settlementDocumentaryFeesService.getById(insPlyIncomeVo.getId());
- BigDecimal totalAmount = byId.getTotalAmount(); //开票总金额
- BigDecimal settlementAmount = insPlyIncomeVo.getSettlementAmount(); //本次结算金额
- //多次结算 表中已经结算的金额
- SettlementDocumentaryFeesEntity settlementAmountEntity = settlementDocumentaryFeesService.getByParentSettlementAmount(insPlyIncomeVo.getId());
- if(ObjectUtils.isNotEmpty(settlementAmountEntity)){
- BigDecimal all = settlementAmount.add(settlementAmountEntity.getTotalAmount());
- if(all.equals(totalAmount)){
- baseMapper.updateByIds(split);
- }
- }
- }
- @Override
- public HttpResult<InsPlyIncome> querySettInvoicing(InsPlyIncomeVo insPlyIncomeVo) {
- HashMap<String, Object> params = new HashMap<>();
- params = this.saveParams(insPlyIncomeVo, params);
- InsPlyIncome insPlyIncome = baseMapper.queryInvoicing(params); //已经开票
- return HttpResult.ok(insPlyIncome);
- }
- /**
- *
- * @param insPlyIncomeVo
- * @return
- */
- @Override
- public HttpResult<List<InsPlyIncome>> allOtherAmount(InsPlyIncomeVo insPlyIncomeVo) {
- HashMap<String, Object> params = new HashMap<>();
- params = this.saveParams(insPlyIncomeVo, params);
- List<InsPlyIncome> result = baseMapper.allOtherAmount(params);
- return HttpResult.ok(result);
- }
- @Override
- @Transactional
- public HttpResult<Object> batchInvoic(InsPlyIncomeVo insPlyIncomeVo) {
- SettlementDocumentaryFeesVo settlementDocumentaryFeesVo = new SettlementDocumentaryFeesVo(); // 生成跟单费结算表
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getYear())){
- settlementDocumentaryFeesVo.setTimeFrame(insPlyIncomeVo.getYear());//年度
- }
- if(!CollectionUtils.isEmpty(insPlyIncomeVo.getMultipleSelection())){
- InsPlyIncomeVo insPlyIncomeVo1 = insPlyIncomeVo.getMultipleSelection().get(0);
- insPlyIncomeVo.setSettlementAmount(insPlyIncomeVo1.getSettlementAmount());
- insPlyIncomeVo.setOtherFeevalue(insPlyIncomeVo1.getAllTotalOtherFeevalue());
- YearMonth yearMonth = YearMonth.parse(insPlyIncomeVo1.getMonthYear());
- LocalDate signingTime = yearMonth.atDay(1);
- settlementDocumentaryFeesVo.setSigningTime(signingTime);
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getYear())){
- settlementDocumentaryFeesVo.setYear(insPlyIncomeVo.getYear());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getMonth())){
- settlementDocumentaryFeesVo.setMonth(insPlyIncomeVo.getMonth());
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getDay())){
- settlementDocumentaryFeesVo.setDay(insPlyIncomeVo.getDay());
- }
- settlementDocumentaryFeesVo.setCompanyId(insPlyIncomeVo.getCompanyId());// 保险公司id
- settlementDocumentaryFeesVo.setPartnerCompaniesId(insPlyIncomeVo.getPartnerCompaniesId()); //合作公司id
- settlementDocumentaryFeesVo.setAgreementId(insPlyIncomeVo.getAgreementId());
- settlementDocumentaryFeesVo.setTotalAmount(insPlyIncomeVo.getOtherFeevalue()); //其他费用金额
- settlementDocumentaryFeesVo.setUnsettledAmount(insPlyIncomeVo.getNoInvoicCommissionFeevalue().subtract(insPlyIncomeVo.getSettlementAmount())); //未结算
- settlementDocumentaryFeesVo.setSettlementAmount(insPlyIncomeVo.getSettlementAmount());//已经开票
- settlementDocumentaryFeesVo.setCreateTime(LocalDateTime.now());
- settlementDocumentaryFeesVo.setSettlementStatus("1");
- settlementDocumentaryFeesVo.setIsNotCar(insPlyIncomeVo.getIsNotCar());
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getContractId())){
- settlementDocumentaryFeesVo.setInvoiceId(insPlyIncomeVo.getContractId()); //开票号
- }
- if(StringUtils.isNotEmpty(insPlyIncomeVo.getTaskId())){
- settlementDocumentaryFeesVo.setTaskId(insPlyIncomeVo.getTaskId());
- }
- settlementDocumentaryFeesVo.setHandlingFeesStatus(insPlyIncomeVo.getHandlingFeesStatus());
- settlementDocumentaryFeesVo.setInvoicingMethod(insPlyIncomeVo.getInvoicingMethod()); //开票方式
- settlementDocumentaryFeesVo.setTaxPoints(insPlyIncomeVo.getTaxPoints()); //税点
- settlementDocumentaryFeesVo.setIds(insPlyIncomeVo.getIds());
- // 税点支出
- if( "0".equals(insPlyIncomeVo.getInvoicingMethod()) && BigDecimalUtils.nullToZero(insPlyIncomeVo.getTaxPoints()) !=null && insPlyIncomeVo.getTaxPoints().compareTo(BigDecimal.ZERO) != 0 && BigDecimalUtils.nullToZero(insPlyIncomeVo.getSettlementAmount()) !=null){
- BigDecimal settlementAmount = insPlyIncomeVo.getSettlementAmount();
- settlementDocumentaryFeesVo.setExpendAmount(settlementAmount.multiply(BigDecimal.ONE.subtract(insPlyIncomeVo.getTaxPoints().divide(new BigDecimal(100)))));
- }else {
- settlementDocumentaryFeesVo.setExpendAmount(insPlyIncomeVo.getSettlementAmount());
- }
- return settlementDocumentaryFeesService.inertSettle(settlementDocumentaryFeesVo);
- }
- @Override
- public HttpResult pinHandlingexcel(InsPlyIncomeVo insPlyIncomeVo, HttpServletRequest request, HttpServletResponse response) {
- HashMap<String, Object> params = new HashMap<>();
- params =this.saveParams(insPlyIncomeVo,params);
- List<InsPlyIncome> insPlyIncomes = baseMapper.queryNew(params);
- ExportParams exportParams = new ExportParams("平台手续费", null, ExcelType.HSSF);
- exportParams.setStyle(ExcelStyleUtil.class);
- List<SettlementFeesExcel> resultList = new ArrayList<>();
- for (InsPlyIncome item :insPlyIncomes){
- SettlementFeesExcel bxSettlementFeesExcel = new SettlementFeesExcel();
- BeanUtils.copyProperties(item, bxSettlementFeesExcel);
- if("1".equals(item.getHandlingFeesStatus())){
- bxSettlementFeesExcel.setHandlingFeesStatus("已结算");
- }else {
- bxSettlementFeesExcel.setHandlingFeesStatus("未结算");
- }
- resultList.add(bxSettlementFeesExcel);
- }
- String uploadPath = this.uploadPath + "/excel/";
- Path path = Paths.get(uploadPath);
- if (!Files.exists(path)) {
- try {
- Files.createDirectories(path);
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- String fileName = EasyExcelUtils.downExcel(uploadPath, "平台手续费导出", SettlementFeesExcel.class, resultList);
- return HttpResult.ok("",uploadUrl + "excel/" + fileName);
- }
- @Override
- public HttpResult bxHandlingexcel(InsPlyIncomeVo insPlyIncomeVo, HttpServletRequest request, HttpServletResponse response) {
- HashMap<String, Object> params = new HashMap<>();
- params =this.saveParams(insPlyIncomeVo,params);
- List<InsPlyIncome> insPlyIncomes = baseMapper.queryNew(params);
- ExportParams exportParams = new ExportParams("保险手续费", null, ExcelType.HSSF);
- exportParams.setStyle(ExcelStyleUtil.class);
- List<BxSettlementFeesExcel> resultList = new ArrayList<>();
- for (InsPlyIncome item :insPlyIncomes){
- BxSettlementFeesExcel bxSettlementFeesExcel = new BxSettlementFeesExcel();
- LocalDateTime signDate = item.getSignDate();
- BeanUtils.copyProperties(item, bxSettlementFeesExcel);
- resultList.add(bxSettlementFeesExcel);
- }
- String uploadPath = this.uploadPath + "/excel/";
- Path path = Paths.get(uploadPath);
- if (!Files.exists(path)) {
- try {
- Files.createDirectories(path);
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- String fileName = EasyExcelUtils.downExcel(uploadPath, "保险手续费导出", BxSettlementFeesExcel.class, resultList);
- return HttpResult.ok("",uploadUrl + "excel/" + fileName);
- }
- @Override
- public HttpResult bxOtherExcel(InsPlyIncomeVo insPlyIncomeVo, HttpServletRequest request, HttpServletResponse response) {
- HashMap<String, Object> params = new HashMap<>();
- params =this.saveParams(insPlyIncomeVo,params);
- params.put("agreementType","2");
- params.put("isOther","1");
- params.put("isNotCar","0");
- List<InsPlyIncome> insPlyIncomes = baseMapper.allOtherAmount(params);
- ExportParams exportParams = new ExportParams("跟单费导出", null, ExcelType.HSSF);
- exportParams.setStyle(ExcelStyleUtil.class);
- List<BxOtherExcel> resultList = new ArrayList<>();
- for (InsPlyIncome item :insPlyIncomes){
- BxOtherExcel bxSettlementFeesExcel = new BxOtherExcel();
- BeanUtils.copyProperties(item, bxSettlementFeesExcel);
- resultList.add(bxSettlementFeesExcel);
- }
- String uploadPath = this.uploadPath + "/excel/";
- Path path = Paths.get(uploadPath);
- if (!Files.exists(path)) {
- try {
- Files.createDirectories(path);
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- String fileName = EasyExcelUtils.downExcel(uploadPath, "跟单费导出", BxOtherExcel.class, resultList);
- return HttpResult.ok("",uploadUrl + "excel/" + fileName);
- }
- @Override
- public InsPlyIncome bxTotalAmount(InsPlyIncomeVo insPlyIncomeVo) {
- HashMap<String, Object> params = new HashMap<>();
- params = this.saveParams(insPlyIncomeVo, params);
- InsPlyIncome totalledAmount =baseMapper.bxTotalAmount(params); //总金额
- return totalledAmount;
- }
- @Override
- public InsPlyIncome ptTotalAmount(InsPlyIncomeVo insPlyIncomeVo) {
- HashMap<String, Object> params = new HashMap<>();
- params = this.saveParams(insPlyIncomeVo, params);
- InsPlyIncome totalledAmount =baseMapper.ptTotalAmount(params); //总金额
- return totalledAmount;
- }
- @Override
- public HttpResult<List<HashMap<String,Object>>> otherTimeDetail(InsPlyIncomeVo insPlyIncomeVo) {
- HashMap<String, Object> params = new HashMap<>();
- this.saveParams(insPlyIncomeVo,params);
- List<HashMap<String,Object>> resultMap=baseMapper.otherTimeDetail(params);
- Set<String> uniqueYears = new HashSet<>();
- for (Map<String, Object> map : resultMap) {
- // 假设年份是以 "year" 为键的,并且它的值是 String 类型
- String year = String.valueOf(map.get("year")) ;
- if (year != null) { // 确保年份不是 null
- uniqueYears.add(year);
- }
- }
- this.addMonthYear(uniqueYears,resultMap);
- return HttpResult.ok(resultMap);
- }
- /**
- * uniqueYears 年份间隔 resultMap 返回结果
- * @param uniqueYears
- * @param resultMap 返回一到十二月数据
- */
- private void addMonthYear(Set<String> uniqueYears, List<HashMap<String, Object>> resultMap) {
- // 存储已存在的年份-月份组合,以便快速查找
- Set<String> existingYearMonths = new HashSet<>();
- for (Map<String, Object> entry : resultMap) {
- String year = String.valueOf(entry.get("year")) ;
- int month = (Integer) entry.get("monthNumber");
- existingYearMonths.add(year + "-" + month);
- }
- // 遍历所有年份和月份,并添加缺失的条目
- for (String year : uniqueYears) {
- for (int month = 1; month <= 12; month++) {
- String yearMonth = year + "-" + month;
- if (!existingYearMonths.contains(yearMonth)) {
- // 创建一个新的条目并添加到resultMap中
- HashMap<String, Object> newEntry = new HashMap<>();
- newEntry.put("year", year);
- newEntry.put("monthNumber", month);
- newEntry.put("allTotalOtherFeevalue", 0);
- newEntry.put("invoicCommissionFeevalue", 0);
- newEntry.put("monthYear", yearMonth);
- newEntry.put("noInvoicCommissionFeevalue", 0);
- resultMap.add(newEntry);
- }
- }
- }
- // 使用自定义Comparator对resultMap进行排序
- Collections.sort(resultMap, new Comparator<HashMap<String, Object>>() {
- @Override
- public int compare(HashMap<String, Object> o1, HashMap<String, Object> o2) {
- // 比较 year
- String year1 = String.valueOf(o1.get("year")) ;
- String year2 =String.valueOf(o2.get("year"));
- int yearComparison = year1.compareTo(year2);
- if (yearComparison != 0) {
- return yearComparison;
- }
- // 如果 year 相同,则比较 monthNumber
- Integer monthNum1 = (Integer) o1.get("monthNumber");
- Integer monthNum2 = (Integer) o2.get("monthNumber");
- return monthNum1.compareTo(monthNum2);
- }
- });
- }
- @Override
- public HttpResult<Object> singleInvoic(InsPlyIncomeVo insPlyIncomeVo) {
- // 通过ids 查出跟单非结算单
- SettlementDocumentaryFeesVo settlementDocumentaryFeesVo = new SettlementDocumentaryFeesVo(); // 生成跟单费结算表
- if (!CollectionUtils.isEmpty(insPlyIncomeVo.getMultipleSelection())) {
- for (InsPlyIncomeVo insPlyIncomeVo1 : insPlyIncomeVo.getMultipleSelection()) {
- insPlyIncomeVo.setSettlementAmount(insPlyIncomeVo1.getSettlementAmount());
- insPlyIncomeVo.setOtherFeevalue(insPlyIncomeVo1.getAllTotalOtherFeevalue());
- YearMonth yearMonth = YearMonth.parse(insPlyIncomeVo1.getMonthYear());
- LocalDate signingTime = yearMonth.atDay(1);
- settlementDocumentaryFeesVo.setSigningTime(signingTime);
- }
- }
- if (StringUtils.isNotEmpty(insPlyIncomeVo.getYear())) {
- settlementDocumentaryFeesVo.setTimeFrame(insPlyIncomeVo.getYear());//年度
- }
- if (StringUtils.isNotEmpty(insPlyIncomeVo.getYear())) {
- settlementDocumentaryFeesVo.setYear(insPlyIncomeVo.getYear());
- }
- if (StringUtils.isNotEmpty(insPlyIncomeVo.getMonth())) {
- settlementDocumentaryFeesVo.setMonth(insPlyIncomeVo.getMonth());
- }
- if (StringUtils.isNotEmpty(insPlyIncomeVo.getDay())) {
- settlementDocumentaryFeesVo.setDay(insPlyIncomeVo.getDay());
- }
- settlementDocumentaryFeesVo.setCompanyId(insPlyIncomeVo.getCompanyId());// 保险公司id
- settlementDocumentaryFeesVo.setPartnerCompaniesId(insPlyIncomeVo.getPartnerCompaniesId()); //合作公司id
- settlementDocumentaryFeesVo.setTotalAmount(insPlyIncomeVo.getOtherFeevalue()); //其他费用金额
- settlementDocumentaryFeesVo.setUnsettledAmount(insPlyIncomeVo.getNoInvoicCommissionFeevalue().subtract(insPlyIncomeVo.getSettlementAmount())); //未结算
- settlementDocumentaryFeesVo.setSettlementAmount(insPlyIncomeVo.getSettlementAmount());//已经开票
- settlementDocumentaryFeesVo.setCreateTime(LocalDateTime.now());
- settlementDocumentaryFeesVo.setIds(insPlyIncomeVo.getIncomeIds());
- settlementDocumentaryFeesVo.setSettlementStatus("1");
- settlementDocumentaryFeesVo.setIsNotCar(insPlyIncomeVo.getIsNotCar());
- if (StringUtils.isNotEmpty(insPlyIncomeVo.getContractId())) {
- settlementDocumentaryFeesVo.setInvoiceId(insPlyIncomeVo.getContractId()); //开票号
- }
- settlementDocumentaryFeesVo.setHandlingFeesStatus(insPlyIncomeVo.getHandlingFeesStatus());
- settlementDocumentaryFeesVo.setInvoicingMethod(insPlyIncomeVo.getInvoicingMethod()); //开票方式
- settlementDocumentaryFeesVo.setTaxPoints(insPlyIncomeVo.getTaxPoints()); //税点
- settlementDocumentaryFeesVo.setIds(insPlyIncomeVo.getIds());
- settlementDocumentaryFeesVo.setSigningTime(insPlyIncomeVo.getSettlementTime()); //签单日期
- // 税点支出
- if (BigDecimalUtils.nullToZero(insPlyIncomeVo.getTaxPoints()) != null && BigDecimalUtils.nullToZero(insPlyIncomeVo.getSettlementAmount()) != null) {
- BigDecimal settlementAmount = insPlyIncomeVo.getSettlementAmount();
- settlementDocumentaryFeesVo.setExpendAmount(settlementAmount.multiply(BigDecimal.ONE.subtract(insPlyIncomeVo.getTaxPoints().divide(new BigDecimal(100)))));
- }
- settlementDocumentaryFeesService.inertSettle(settlementDocumentaryFeesVo);
- return HttpResult.ok();
- }
- @Override
- public void batchUpdate(InsPlyIncomeVo insPlyIncomeVo) {
- HashMap<String, Object> params = new HashMap<>();
- params= this.saveParams(insPlyIncomeVo,params);
- List<InsPlyIncome> list= this.baseMapper.queryNew(params);
- for ( InsPlyIncome item : list){
- item.setContractFileId( insPlyIncomeVo.getContractFileId());
- item.setSettleOtherStatus("1");
- baseMapper.updateById(item);
- }
- }
- @Override
- @Transactional
- public HashMap<String, Object> bxImportOther(MultipartFile multipartFile,String isNotCar) {
- HashMap<String, Object> resultMap = new HashMap<>();
- List<HashMap<String,Object>> resultList=new ArrayList<>();
- HashMap<String, Object> params = new HashMap<>();
- BigDecimal allAmount = BigDecimal.ZERO;
- params.put("isNotCar",isNotCar);
- try {
- List<InsBxOtherExcelDto> dtoList = ExcelEasypoiUtils.importExcel(multipartFile, InsBxOtherExcelDto.class, 0, 1, 1);
- for (InsBxOtherExcelDto item : dtoList){
- if(StringUtils.isNotEmpty(item.getLicenseno())){
- params.put("licenseno",item.getLicenseno());
- }
- if(StringUtils.isNotEmpty(item.getPolicyno())){
- params.put("policyno",item.getPolicyno());
- }
- if(StringUtils.isNotEmpty(item.getSyPolicyno())){
- params.put("syPolicyno",item.getSyPolicyno());
- }
- params.put("handlingFeesStatus","0");
- InsPlyIncome byBxLicenseno = baseMapper.findByBxLicenseno(params);
- if (item.getJqOtherCostsProportion() ==null){
- item.setJqOtherCostsProportion(BigDecimal.ZERO);
- }
- if(item.getSyOtherCostsProportion() == null){
- item.setSyOtherCostsProportion(BigDecimal.ZERO);
- }
- if(byBxLicenseno.getJqOtherCostsProportion().compareTo(item.getJqOtherCostsProportion()) !=0 || byBxLicenseno.getSyOtherCostsProportion().compareTo(item.getSyOtherCostsProportion()) != 0){
- // 如果比例不相等
- BigDecimal jqOtherCostsProportion = item.getJqOtherCostsProportion();
- BigDecimal syOtherCostsProportion = item.getSyOtherCostsProportion();
- BigDecimal jqNoTaxPremium = byBxLicenseno.getJqNoTaxPremium();//交强不含税保费
- BigDecimal syNoTaxPremium = byBxLicenseno.getSyNoTaxPremium();// 商业不含税比例
- BigDecimal jqOtherAmount = jqNoTaxPremium.multiply(item.getJqOtherCostsProportion().divide(new BigDecimal(100))); //交强跟单费用
- BigDecimal syOtherAmount = syNoTaxPremium.multiply(item.getSyOtherCostsProportion().divide(new BigDecimal(100)));
- byBxLicenseno.setJqOtherCostsPremium(jqOtherAmount);
- byBxLicenseno.setSyOtherCostsPremium(syOtherAmount);
- byBxLicenseno.setJqOtherCostsProportion(jqOtherCostsProportion);
- byBxLicenseno.setSyOtherCostsProportion(syOtherCostsProportion);
- byBxLicenseno.setOtherFeevalue(this.calculateTotal(jqOtherAmount,syOtherAmount,null));
- byBxLicenseno.setOtherFeerate(this.calculateTotal(jqOtherCostsProportion,syOtherCostsProportion ,null));
- baseMapper.updateById(byBxLicenseno);
- HashMap<String, Object> map = new HashMap<>();
- map.put("licenseno",item.getLicenseno());
- map.put("policyno",item.getPolicyno());
- map.put("syPolicyno",item.getSyPolicyno());
- map.put("jqOtherCostsPremium",jqOtherAmount);
- map.put("syOtherCostsProportion",syOtherAmount);
- map.put("otherFeevalue",byBxLicenseno.getOtherFeevalue());
- map.put("otherFeerate",byBxLicenseno.getOtherFeerate());
- resultList.add(map);
- allAmount = allAmount.add(jqOtherAmount).add(syOtherAmount);
- }
- }
- resultMap.put("allAmount",allAmount);
- resultMap.put("resultList",resultList);
- } catch (IOException e) {
- throw new RuntimeException(e);
- }
- return resultMap;
- }
- @Override
- @Transactional
- public HashMap<String, Object> noBxImportOther(MultipartFile multipartFile, String isNotCar) {
- HashMap<String, Object> resultMap = new HashMap<>();
- List<HashMap<String,Object>> resultList=new ArrayList<>();
- HashMap<String, Object> params = new HashMap<>();
- BigDecimal allAmount = BigDecimal.ZERO;
- params.put("isNotCar",isNotCar);
- try {
- List<InsNoBxOtherExcelDto> dtoList = ExcelEasypoiUtils.importExcel(multipartFile, InsNoBxOtherExcelDto.class, 0, 1, 1);
- for (InsNoBxOtherExcelDto item : dtoList){
- if(StringUtils.isNotEmpty(item.getLicenseno())){
- params.put("licenseno",item.getLicenseno());
- }
- if(StringUtils.isNotEmpty(item.getNoPolicyno())){
- params.put("noPolicyno",item.getNoPolicyno());
- }
- params.put("handlingFeesStatus","0");
- InsPlyIncome byBxLicenseno = baseMapper.findByBxLicenseno(params);
- if(byBxLicenseno.getNoOtherCostsProportion().compareTo(item.getNoOtherCostsProportion()) !=0 ){
- // 如果比例不相等
- BigDecimal noOtherCostsProportion = item.getNoOtherCostsProportion();
- BigDecimal noNoTaxPremium = byBxLicenseno.getNoNoTaxPremium();
- BigDecimal noOtherAmount = noNoTaxPremium.multiply(item.getNoOtherCostsProportion().divide(new BigDecimal(100))); //交强跟单费用
- byBxLicenseno.setOtherFeevalue(this.calculateTotal(noOtherAmount,null,null));
- byBxLicenseno.setOtherFeerate(this.calculateTotal(noOtherCostsProportion,null ,null));
- baseMapper.updateById(byBxLicenseno);
- resultMap.put("licenseno",item.getLicenseno());
- resultMap.put("noPolicyno",item.getNoPolicyno());
- resultMap.put("noOtherCostsPremium",noOtherAmount);
- resultMap.put("otherFeevalue",byBxLicenseno.getOtherFeevalue());
- resultMap.put("otherFeerate",byBxLicenseno.getOtherFeerate());
- resultList.add(resultMap);
- allAmount = allAmount.add(noOtherAmount);
- }
- }
- resultMap.put("allAmount",allAmount);
- } catch (IOException e) {
- throw new RuntimeException(e);
- }
- return resultMap;
- }
- @Override
- public void batchUpdateVoucher(InsPlyIncomeVo insPlyIncomeVo) {
- String s = insPlyIncomeVo.getSelectIds().get(0);
- ImportResult importResult = importAsyncService.getById(s);
- String[] split = importResult.getIds().split(",");
- InsPlyIncome insPlyIncome = new InsPlyIncome();
- for (String id :split){
- insPlyIncome.setId(id);
- insPlyIncome.setSettlementImageId(insPlyIncomeVo.getSettlementImageId());
- insPlyIncome.setSettleOtherStatus("1");
- baseMapper.updateById(insPlyIncome);
- }
- }
- }
|