BatteryServiceImpl.java 185 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239
  1. package com.hz.business.service.impl;
  2. import com.alibaba.excel.EasyExcel;
  3. import com.alibaba.excel.ExcelWriter;
  4. import com.alibaba.excel.support.ExcelTypeEnum;
  5. import com.alibaba.excel.write.metadata.WriteSheet;
  6. import com.alibaba.fastjson.JSON;
  7. import com.alibaba.fastjson.JSONArray;
  8. import com.alibaba.fastjson.JSONObject;
  9. import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
  10. import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
  11. import com.baomidou.mybatisplus.core.toolkit.Assert;
  12. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  13. import com.github.pagehelper.PageHelper;
  14. import com.github.pagehelper.PageInfo;
  15. import com.hz.business.base.*;
  16. import com.hz.business.domain.*;
  17. import com.hz.business.dto.BatteryFolderDto;
  18. import com.hz.business.dto.TagDto;
  19. import com.hz.business.enums.*;
  20. import com.hz.business.mapper.*;
  21. import com.hz.business.req.*;
  22. import com.hz.business.req.BatteryParam;
  23. import com.hz.business.service.IBatteryService;
  24. import com.hz.business.util.CustomerTitleHandler;
  25. import com.hz.business.util.PhoenixUtils;
  26. import com.hz.business.util.StrUtils;
  27. import com.hz.business.vo.*;
  28. import com.hz.common.config.HzConfig;
  29. import com.hz.common.constant.Constants;
  30. import com.hz.common.core.domain.entity.SysDictData;
  31. import com.hz.common.utils.*;
  32. import com.hz.system.mapper.SysDictDataMapper;
  33. import lombok.extern.slf4j.Slf4j;
  34. import org.apache.commons.lang3.StringUtils;
  35. import com.hz.common.utils.bean.BeanUtils;
  36. import org.springframework.beans.factory.annotation.Value;
  37. import org.springframework.cache.annotation.Cacheable;
  38. import org.springframework.core.io.InputStreamResource;
  39. import org.springframework.http.HttpHeaders;
  40. import org.springframework.http.MediaType;
  41. import org.springframework.http.ResponseEntity;
  42. import org.springframework.stereotype.Service;
  43. import org.apache.commons.collections.CollectionUtils;
  44. import org.springframework.transaction.annotation.Transactional;
  45. import javax.annotation.Resource;
  46. import javax.servlet.http.HttpServletResponse;
  47. import java.io.*;
  48. import java.math.BigDecimal;
  49. import java.math.RoundingMode;
  50. import java.sql.*;
  51. import java.text.DecimalFormat;
  52. import java.text.ParseException;
  53. import java.text.SimpleDateFormat;
  54. import java.util.*;
  55. import java.util.Date;
  56. import java.util.stream.Collectors;
  57. /**
  58. * 电池信息Service业务层处理
  59. *
  60. * @author zyg
  61. * @date 2022-02-15
  62. */
  63. @Slf4j
  64. @Service
  65. public class BatteryServiceImpl extends ServiceImpl<BatteryMapper, Battery> implements IBatteryService {
  66. private static final String FAST_CHARGE = "C111";
  67. @Value("${lindorm.database:}")
  68. private String database;
  69. @Value("${lindorm.talbeName:}")
  70. private String tableName;
  71. @Value("${lindorm.behaviorTable:}")
  72. private String behaviorTable;
  73. @Value("${lindorm.batteryTable:}")
  74. private String batteryTable;
  75. @Value("${lindorm.energyTable:}")
  76. private String energyTable;
  77. @Resource
  78. TagMapper tagMapper;
  79. @Resource
  80. BatteryTagMapper batteryTagMapper;
  81. @Resource
  82. BatteryFolderMapper batteryFolderMapper;
  83. @Resource
  84. BatteryCoreMapper batteryCoreMapper;
  85. @Resource
  86. BatteryModelMapper batteryModelMapper;
  87. @Resource
  88. TagChildMapper tagChildMapper;
  89. @Resource
  90. FolderMapper folderMapper;
  91. @Resource
  92. BatteryMapper batteryMapper;
  93. @Resource
  94. AlarmMsgMapper alarmMsgMapper;
  95. @Resource
  96. SysDictDataMapper dictDataMapper;
  97. @Resource
  98. ElectricQuantityMapper eqMapper;
  99. @Resource
  100. SohItemQuantityMapper sohMapper;
  101. @Resource
  102. SohOdoMapper sohOdoMapper;
  103. @Resource
  104. FastChargeBatteryMapper fastChargeBatteryMapper;
  105. @Resource
  106. KilometreCountMapper kilometreCountMapper;
  107. @Resource
  108. ModelAdjustableParamEntityMapper adjustableParamEntityMapper;
  109. /**
  110. * 查询电池信息
  111. *
  112. * @param id 电池信息主键
  113. * @return 电池信息
  114. */
  115. @Override
  116. public BatteryVo getBatteryDetail(Long id) throws SQLException {
  117. //查询数据
  118. Battery battery = this.getById(id);
  119. //类型转换
  120. BatteryVo vo = new BatteryVo();
  121. BeanUtils.copyProperties(battery, vo);
  122. String model = vo.getPackModelCode() + vo.getCellModelCode();
  123. Set<String> batteryModelSet = new HashSet<>();
  124. batteryModelSet.add(model);
  125. List<BatteryModel> batteryModelList = new ArrayList<>();
  126. if (batteryModelSet.size() > 0) {
  127. batteryModelList = batteryModelMapper.getModel(model);
  128. }
  129. //翻译字段
  130. //SOH
  131. float soh = 0f;
  132. try {
  133. soh = batteryModelMapper.getSohBySn(vo.getSn());
  134. } catch (Exception e) {
  135. }
  136. vo.setSoh(String.valueOf(soh));
  137. List<BatteryCore> batteryCoreList = new ArrayList<>();
  138. if (vo.getBatteryCoreType() != null) {
  139. LambdaQueryWrapper<BatteryCore> wp = new LambdaQueryWrapper<>();
  140. wp.in(BatteryCore::getBatteryCoreType, vo.getBatteryCoreType());
  141. wp.eq(BatteryCore::getIsDelete, 0);
  142. wp.select(BatteryCore::getBatteryCoreType, BatteryCore::getName);
  143. batteryCoreList = batteryCoreMapper.selectList(wp);
  144. }
  145. List<AlarmMsg> alarmMsgList = new ArrayList<>();
  146. if (vo.getSn() != null) {
  147. LambdaQueryWrapper<AlarmMsg> wp = new LambdaQueryWrapper<>();
  148. wp.eq(AlarmMsg::getSn, vo.getSn());
  149. wp.eq(AlarmMsg::getIsDelete, 0);
  150. wp.select(AlarmMsg::getAlarmStatus, AlarmMsg::getSn);
  151. alarmMsgList = alarmMsgMapper.selectList(wp);
  152. }
  153. vo.setChargeStatusText(ChargeStatusEnum.getDesc(vo.getChargeStatus()));
  154. vo.setBatteryStatusText(BatteryStatusEnum.getDesc(vo.getBatteryStatus()));
  155. if (batteryCoreList.size() > 0) {
  156. batteryCoreList.forEach(m -> {
  157. if (vo.getBatteryCoreType() != null && m.getBatteryCoreType().equals(vo.getBatteryCoreType())) {
  158. vo.setBatteryCoreTypeText(m.getName());
  159. }
  160. });
  161. }
  162. if (alarmMsgList.size() > 0) {
  163. alarmMsgList.forEach(m -> {
  164. if (vo.getSn() != null && m.getSn().equals(vo.getSn())) {
  165. vo.setFaultStatus(m.getAlarmStatus());
  166. }
  167. });
  168. }
  169. if (!CollectionUtils.isEmpty(batteryModelList)) {
  170. batteryModelList.forEach(m -> {
  171. if (vo.getPackModelCode() != null && m.getPackModel().equals(vo.getPackModelCode()) &&
  172. vo.getCellModelCode() != null && m.getCellModel().equals(vo.getCellModelCode())) {
  173. vo.setBatteryModel(m.getBatteryModel());
  174. }
  175. });
  176. }
  177. vo.setFaultStatusText(FaultStatusEnum.getDesc(vo.getFaultStatus()));
  178. //计算剩余里程
  179. List<Map<String, Object>> flinkMapList = getFlinkMapList(batteryTable, vo.getSn());
  180. if (flinkMapList.size() > 0 && flinkMapList.get(0).get("remain_odo") != null) {
  181. vo.setCurrentOdo(new BigDecimal(flinkMapList.get(0).get("remain_odo").toString()).setScale(2, RoundingMode.UP));
  182. }
  183. Connection conn = null;
  184. PreparedStatement psSelect = null;
  185. //周均能耗 能耗排名
  186. try {
  187. conn = PhoenixUtils.getConnection();
  188. psSelect = conn.prepareStatement(" use " + database + " ");
  189. psSelect.setFetchSize(1000);
  190. psSelect.close();
  191. String sql = "select energy,eg_rank from " + energyTable + " where sn ='" + vo.getSn() + "' order by id desc limit 1";
  192. psSelect = conn.prepareStatement(sql);
  193. ResultSet resultSet = psSelect.executeQuery();
  194. List<Map<String, Object>> mapList = ResultSetToJson.toListMap(resultSet, false);
  195. if (mapList.size() > 0) {
  196. vo.setEnergyConsumeWeek(new BigDecimal(mapList.get(0).get("energy").toString()));
  197. vo.setEnergyConsumeOrder(Integer.valueOf(mapList.get(0).get("eg_rank").toString()));
  198. }
  199. } catch (Exception e) {
  200. } finally {
  201. if (psSelect != null) {
  202. psSelect.close();
  203. }
  204. if (conn != null) {
  205. conn.close();
  206. }
  207. }
  208. return vo;
  209. }
  210. /**
  211. * 通过sn获取电池详细信息
  212. *
  213. * @param sn 参数
  214. * @return 电池信息
  215. */
  216. @Override
  217. public BatteryVo getDetailInfo(String sn) throws SQLException {
  218. //todo
  219. //查询数据
  220. Battery battery = this.getOne(new LambdaQueryWrapper<Battery>()
  221. .last(" limit 1 ")
  222. .eq(Battery::getIsDelete, 0)
  223. .and(StringUtils.isNotBlank(sn), p -> p.like(Battery::getSn, sn)
  224. .or().like(Battery::getVin, sn)));
  225. //类型转换
  226. BatteryVo vo = new BatteryVo();
  227. BeanUtils.copyProperties(battery, vo);
  228. String model = vo.getPackModelCode() + vo.getCellModelCode();
  229. Set<String> batteryModelSet = new HashSet<>();
  230. batteryModelSet.add(model);
  231. List<BatteryModel> batteryModelList = new ArrayList<>();
  232. if (batteryModelSet.size() > 0) {
  233. batteryModelList = batteryModelMapper.getModel(model);
  234. }
  235. //翻译字段
  236. List<BatteryCore> batteryCoreList = new ArrayList<>();
  237. if (vo.getBatteryCoreType() != null) {
  238. LambdaQueryWrapper<BatteryCore> wp = new LambdaQueryWrapper<>();
  239. wp.in(BatteryCore::getBatteryCoreType, vo.getBatteryCoreType());
  240. wp.eq(BatteryCore::getIsDelete, 0);
  241. wp.select(BatteryCore::getBatteryCoreType, BatteryCore::getName);
  242. batteryCoreList = batteryCoreMapper.selectList(wp);
  243. }
  244. List<AlarmMsg> alarmMsgList = new ArrayList<>();
  245. if (vo.getSn() != null) {
  246. LambdaQueryWrapper<AlarmMsg> wp = new LambdaQueryWrapper<>();
  247. wp.eq(AlarmMsg::getSn, vo.getSn());
  248. wp.eq(AlarmMsg::getIsDelete, 0);
  249. wp.select(AlarmMsg::getAlarmStatus, AlarmMsg::getSn);
  250. alarmMsgList = alarmMsgMapper.selectList(wp);
  251. }
  252. vo.setChargeStatusText(ChargeStatusEnum.getDesc(vo.getChargeStatus()));
  253. vo.setBatteryStatusText(BatteryStatusEnum.getDesc(vo.getBatteryStatus()));
  254. if (batteryCoreList.size() > 0) {
  255. batteryCoreList.forEach(m -> {
  256. if (vo.getBatteryCoreType() != null && m.getBatteryCoreType().equals(vo.getBatteryCoreType())) {
  257. vo.setBatteryCoreTypeText(m.getName());
  258. }
  259. });
  260. }
  261. if (alarmMsgList.size() > 0) {
  262. alarmMsgList.forEach(m -> {
  263. if (vo.getSn() != null && m.getSn().equals(vo.getSn())) {
  264. vo.setFaultStatus(m.getAlarmStatus());
  265. }
  266. });
  267. }
  268. if (!CollectionUtils.isEmpty(batteryModelList)) {
  269. batteryModelList.forEach(m -> {
  270. if (vo.getPackModelCode() != null && m.getPackModel().equals(vo.getPackModelCode()) &&
  271. vo.getCellModelCode() != null && m.getCellModel().equals(vo.getCellModelCode())) {
  272. vo.setBatteryModel(m.getBatteryModel());
  273. }
  274. });
  275. }
  276. vo.setFaultStatusText(FaultStatusEnum.getDesc(vo.getFaultStatus()));
  277. //翻译字段
  278. //SOH
  279. float soh = 0f;
  280. try {
  281. soh = batteryModelMapper.getSohBySn(vo.getSn());
  282. } catch (Exception e) {
  283. }
  284. vo.setSoh(String.valueOf(soh));
  285. //计算剩余里程
  286. try {
  287. List<Map<String, Object>> flinkMapList = getFlinkMapList(batteryTable, vo.getSn());
  288. if (flinkMapList.size() > 0 && flinkMapList.get(0).get("remain_odo") != null) {
  289. vo.setCurrentOdo(new BigDecimal(flinkMapList.get(0).get("remain_odo").toString()).setScale(2, RoundingMode.UP));
  290. }
  291. } catch (Exception e) {
  292. }
  293. Connection conn = null;
  294. PreparedStatement psSelect = null;
  295. //周均能耗 能耗排名
  296. try {
  297. conn = PhoenixUtils.getConnection();
  298. psSelect = conn.prepareStatement(" use " + database + " ");
  299. psSelect.setFetchSize(1000);
  300. psSelect.close();
  301. String sql = "select energy,eg_rank from " + energyTable + " where sn ='" + vo.getSn() + "' order by id desc limit 1";
  302. psSelect = conn.prepareStatement(sql);
  303. ResultSet resultSet = psSelect.executeQuery();
  304. List<Map<String, Object>> mapList = ResultSetToJson.toListMap(resultSet, false);
  305. if (mapList.size() > 0) {
  306. vo.setEnergyConsumeWeek(new BigDecimal(mapList.get(0).get("energy").toString()));
  307. vo.setEnergyConsumeOrder(Integer.valueOf(mapList.get(0).get("eg_rank").toString()));
  308. }
  309. } catch (Exception e) {
  310. } finally {
  311. if (psSelect != null) {
  312. psSelect.close();
  313. }
  314. if (conn != null) {
  315. conn.close();
  316. }
  317. }
  318. return vo;
  319. }
  320. /**
  321. * 查询自定义分析-电池编号精确查询
  322. *
  323. * @param sn 参数
  324. * @return 电池信息
  325. */
  326. @Override
  327. public BatteryVo getBattery(String sn) {
  328. String[] sns = sn.split(",");
  329. //类型转换
  330. BatteryVo vo = new BatteryVo();
  331. //查询数据
  332. for (String sn1 : sns) {
  333. Battery battery = this.getOne(new QueryWrapper<Battery>()
  334. .last(" limit 1 ")
  335. .eq("is_delete", 0)
  336. .and(p -> p.eq("sn", sn1)
  337. .or().eq("vin", sn1)));
  338. Assert.notNull(battery, "未找到电池编号为" + sn1 + "的电池信息");
  339. BeanUtils.copyProperties(battery, vo);
  340. }
  341. String model = vo.getPackModelCode() + vo.getCellModelCode();
  342. Set<String> batteryModelSet = new HashSet<>();
  343. batteryModelSet.add(model);
  344. List<BatteryModel> batteryModelList = new ArrayList<>();
  345. if (batteryModelSet.size() > 0) {
  346. batteryModelList = batteryModelMapper.getModel(model);
  347. }
  348. //翻译字段
  349. List<BatteryCore> batteryCoreList = new ArrayList<>();
  350. if (vo.getBatteryCoreType() != null) {
  351. LambdaQueryWrapper<BatteryCore> wp = new LambdaQueryWrapper<>();
  352. wp.in(BatteryCore::getBatteryCoreType, vo.getBatteryCoreType());
  353. wp.eq(BatteryCore::getIsDelete, 0);
  354. wp.select(BatteryCore::getBatteryCoreType, BatteryCore::getName);
  355. batteryCoreList = batteryCoreMapper.selectList(wp);
  356. }
  357. List<AlarmMsg> alarmMsgList = new ArrayList<>();
  358. if (vo.getSn() != null) {
  359. LambdaQueryWrapper<AlarmMsg> wp = new LambdaQueryWrapper<>();
  360. wp.eq(AlarmMsg::getSn, vo.getSn());
  361. wp.eq(AlarmMsg::getIsDelete, 0);
  362. wp.select(AlarmMsg::getAlarmStatus, AlarmMsg::getSn);
  363. alarmMsgList = alarmMsgMapper.selectList(wp);
  364. }
  365. vo.setChargeStatusText(ChargeStatusEnum.getDesc(vo.getChargeStatus()));
  366. vo.setBatteryStatusText(BatteryStatusEnum.getDesc(vo.getBatteryStatus()));
  367. if (batteryCoreList.size() > 0) {
  368. batteryCoreList.forEach(m -> {
  369. if (vo.getBatteryCoreType() != null && m.getBatteryCoreType().equals(vo.getBatteryCoreType())) {
  370. vo.setBatteryCoreTypeText(m.getName());
  371. }
  372. });
  373. }
  374. if (alarmMsgList.size() > 0) {
  375. alarmMsgList.forEach(m -> {
  376. if (vo.getSn() != null && m.getSn().equals(vo.getSn())) {
  377. vo.setFaultStatus(m.getAlarmStatus());
  378. }
  379. });
  380. }
  381. if (!CollectionUtils.isEmpty(batteryModelList)) {
  382. batteryModelList.forEach(m -> {
  383. if (vo.getPackModelCode() != null && m.getPackModel().equals(vo.getPackModelCode()) &&
  384. vo.getCellModelCode() != null && m.getCellModel().equals(vo.getCellModelCode())) {
  385. vo.setBatteryModel(m.getBatteryModel());
  386. }
  387. });
  388. }
  389. vo.setFaultStatusText(FaultStatusEnum.getDesc(vo.getFaultStatus()));
  390. return vo;
  391. }
  392. /**
  393. * 查询电池信息列表
  394. *
  395. * @param param 电池信息
  396. * @return 电池信息集合
  397. */
  398. @Override
  399. public PageInfo<BatteryVo> selectBatteryList(BatteryParam param) {
  400. //电池类型
  401. List<String> cellList = new ArrayList<>();
  402. List<String> packList = new ArrayList<>();
  403. if (!param.getBatteryModel().isEmpty()) {
  404. List<BatteryModel> batteryModel = batteryModelMapper.selectList(new LambdaQueryWrapper<BatteryModel>().in(!param.getBatteryModel().isEmpty(), BatteryModel::getId, param.getBatteryModel()));
  405. batteryModel.forEach(o -> {
  406. cellList.add(o.getCellModel());
  407. packList.add(o.getPackModel());
  408. });
  409. }
  410. //故障状态
  411. Set<String> snSet = new HashSet<>();
  412. List<Map<String, Object>> alarmMsgList = batteryMapper.getFaultDeviceList(null);
  413. if (alarmMsgList.size() > 0) {
  414. alarmMsgList.forEach(o -> {
  415. if (o != null && o.get("sn") != null) {
  416. snSet.add(o.get("sn").toString());
  417. }
  418. });
  419. }
  420. /*LambdaQueryWrapper<AlarmMsg> wap = new LambdaQueryWrapper<>();
  421. wap.eq(AlarmMsg::getIsDelete, 0);
  422. wap.isNull(AlarmMsg::getAlarmFreeTime);
  423. wap.select(AlarmMsg::getSn);
  424. List<AlarmMsg> alarmMsgList = alarmMsgMapper.selectList(wap);
  425. if (alarmMsgList.size() > 0) {
  426. alarmMsgList.forEach(o -> snSet.add(o.getSn()));
  427. }*/
  428. if (param.getFaultStatus() != null) {
  429. if (param.getFaultStatus() == 1) {
  430. if (CollectionUtils.isEmpty(snSet)) {
  431. return new PageInfo<>();
  432. }
  433. }
  434. }
  435. //用户标签
  436. Set<Long> batteryIdSet = new HashSet<>();
  437. if (StringUtils.isNotBlank(param.getTag())) {
  438. List<String> tags = new ArrayList<>();
  439. tags = Arrays.asList(param.getTag().split(","));
  440. Set<Long> tagIdSet = new HashSet<>();
  441. tags.forEach(o -> tagIdSet.add(Long.parseLong(o)));
  442. if (tags.size() > 0) {
  443. LambdaQueryWrapper<BatteryTag> wp = new LambdaQueryWrapper<>();
  444. wp.in(BatteryTag::getTagId, tagIdSet);
  445. wp.eq(BatteryTag::getTagType, 0);
  446. wp.eq(BatteryTag::getIsDelete, 0);
  447. wp.isNotNull(BatteryTag::getBatteryId);
  448. wp.select(BatteryTag::getBatteryId);
  449. List<BatteryTag> batteryTags = batteryTagMapper.selectList(wp);
  450. if (batteryTags.size() > 0) {
  451. batteryTags.forEach(o -> batteryIdSet.add(o.getBatteryId()));
  452. }
  453. }
  454. if (CollectionUtils.isEmpty(batteryIdSet)) {
  455. return new PageInfo<>();
  456. }
  457. }
  458. PageHelper.startPage(param.getPageIndex(), param.getPageSize());
  459. QueryWrapper<Battery> wrapper = new QueryWrapper<>();
  460. wrapper.and(StringUtils.isNotBlank(param.getSn()), p -> p.like("sn", param.getSn())
  461. .or().like("vin", param.getSn()));
  462. wrapper.in(!packList.isEmpty(), "pack_model_code", packList);
  463. wrapper.in(!cellList.isEmpty(), "cell_model_code", cellList);
  464. wrapper.eq("is_delete", 0);
  465. wrapper.eq(StringUtils.isNotBlank(param.getBatteryCoreType()), "battery_core_type", param.getBatteryCoreType());
  466. wrapper.in(batteryIdSet.size() > 0, "id", batteryIdSet);
  467. wrapper.in((param.getFaultStatus() != null && param.getFaultStatus() == 1 && snSet.size() > 0), "sn", snSet);
  468. wrapper.notIn((param.getFaultStatus() != null && param.getFaultStatus() == 0 && snSet.size() > 0), "sn", snSet);
  469. wrapper.orderByDesc("update_time");
  470. //查询结果
  471. List<Battery> list = this.list(wrapper);
  472. PageInfo<Battery> orderPageInfo = new PageInfo<>(list);
  473. List<BatteryVo> batteryVoList = new ArrayList<>();
  474. //准备翻译
  475. List<Tag> tagList = new ArrayList<>();
  476. List<BatteryFolder> batteryFolderList = new ArrayList<>();
  477. List<BatteryModel> batteryModelList = new ArrayList<>();
  478. List<BatteryCore> batteryCorelList = new ArrayList<>();
  479. Set<String> batteryCoreSet = new HashSet<>();
  480. Set<Long> collectIdSet = new HashSet<>();
  481. Set<String> snFaultSet = new HashSet<>();
  482. List<ModelDetailVo> modelList = new ArrayList<>();
  483. List<String> batteryModelSet = new ArrayList<>();
  484. orderPageInfo.getList().forEach(o -> {
  485. if (o.getBatteryCoreType() != null) {
  486. batteryCoreSet.add(o.getBatteryCoreType());
  487. }
  488. if (o.getPackModelCode() != null && o.getCellModelCode() != null) {
  489. String model = o.getPackModelCode() + o.getCellModelCode();
  490. if (!batteryModelSet.contains(model)) {
  491. batteryModelSet.add(model);
  492. }
  493. }
  494. collectIdSet.add(o.getId());
  495. snFaultSet.add(o.getSn());
  496. });
  497. if (snFaultSet.size() > 0) {
  498. String[] strArray = snFaultSet.toArray(new String[snFaultSet.size()]);
  499. List<Map<String, Object>> modelDetailList = batteryMapper.getFaultDetail(strArray);
  500. if (!CollectionUtils.isEmpty(modelDetailList)) {
  501. modelList = JSONArray.parseArray(JSON.toJSONString(modelDetailList), ModelDetailVo.class);
  502. }
  503. }
  504. if (batteryModelSet.size() > 0) {
  505. batteryModelList = batteryModelMapper.getModelByPackAndCellModel(batteryModelSet);
  506. }
  507. List<SysDictData> batteryCoreList = getDictDataByType("business_battery_core_type");
  508. if (batteryCoreSet.size() > 0) {
  509. LambdaQueryWrapper<BatteryCore> wp = new LambdaQueryWrapper<>();
  510. wp.in(BatteryCore::getBatteryCoreType, batteryCoreSet);
  511. wp.eq(BatteryCore::getIsDelete, 0);
  512. wp.select(BatteryCore::getBatteryCoreType, BatteryCore::getName);
  513. batteryCorelList = batteryCoreMapper.selectList(wp);
  514. }
  515. if (collectIdSet.size() > 0) {
  516. LambdaQueryWrapper<BatteryFolder> wp = new LambdaQueryWrapper<>();
  517. wp.in(BatteryFolder::getBatteryId, collectIdSet);
  518. wp.eq(BatteryFolder::getFolderType, 0);
  519. wp.eq(BatteryFolder::getIsDelete, 0);
  520. wp.eq(BatteryFolder::getUserId, SecurityUtils.getUserId());
  521. wp.select(BatteryFolder::getBatteryId);
  522. batteryFolderList = batteryFolderMapper.selectList(wp);
  523. tagList = tagMapper.getTagList(collectIdSet, 0);
  524. }
  525. List<BatteryModel> finalBatteryModelList = batteryModelList;
  526. List<Tag> finalTagList = tagList;
  527. List<BatteryCore> finalBatteryCorelList = batteryCorelList;
  528. List<BatteryFolder> finalBatteryFolderList = batteryFolderList;
  529. List<ModelDetailVo> finalModelDetailVoList = modelList;
  530. orderPageInfo.getList().forEach(o -> {
  531. BatteryVo vo = new BatteryVo();
  532. BeanUtils.copyProperties(o, vo);
  533. vo.setChargeStatusText(ChargeStatusEnum.getDesc(vo.getChargeStatus()));
  534. if (!CollectionUtils.isEmpty(finalBatteryCorelList)) {
  535. finalBatteryCorelList.forEach(m -> {
  536. if (o.getBatteryCoreType() != null && m.getBatteryCoreType().equals(o.getBatteryCoreType())) {
  537. vo.setBatteryCoreTypeText(m.getName());
  538. }
  539. });
  540. }
  541. if (finalBatteryFolderList.size() > 0) {
  542. finalBatteryFolderList.forEach(m -> {
  543. if (o.getId() != null && m.getBatteryId().equals(o.getId())) {
  544. vo.setCollected(1);
  545. }
  546. });
  547. }
  548. if (finalBatteryModelList.size() > 0) {
  549. finalBatteryModelList.forEach(m -> {
  550. if (o.getPackModelCode() != null && m.getPackModel().equals(o.getPackModelCode()) &&
  551. o.getCellModelCode() != null && m.getCellModel().equals(o.getCellModelCode())) {
  552. vo.setBatteryModel(m.getBatteryModel());
  553. }
  554. });
  555. }
  556. if (finalModelDetailVoList.size() > 0) {
  557. finalModelDetailVoList.forEach(m -> {
  558. if (m.getSn().equals(o.getSn())) {
  559. vo.setAlarmName(m.getAlgoName());
  560. vo.setFaultLocation(m.getFaultLocation());
  561. vo.setFaultInfluence(m.getFaultInfluence());
  562. }
  563. });
  564. }
  565. if (finalTagList.size() > 0) {
  566. Set<String> tagIdList = new HashSet<>();
  567. Set<String> tagNameList = new HashSet<>();
  568. finalTagList.forEach(m -> {
  569. if (o.getId() != null && m.getBatteryId().equals(o.getId())) {
  570. tagIdList.add(String.valueOf(m.getId()));
  571. tagNameList.add(m.getTagName());
  572. }
  573. });
  574. if (tagIdList.size() > 0) {
  575. vo.setTag(String.join(",", tagIdList));
  576. vo.setTagText(String.join(",", tagNameList));
  577. }
  578. }
  579. vo.setFaultStatus(FaultStatusEnum.GOOD.code());
  580. if (snSet.size() > 0) {
  581. if (o.getSn() != null && snSet.contains(o.getSn())) {
  582. vo.setFaultStatus(FaultStatusEnum.BAD.code());
  583. }
  584. }
  585. vo.setFaultStatusText(FaultStatusEnum.getDesc(vo.getFaultStatus()));
  586. batteryVoList.add(vo);
  587. });
  588. PageInfo<BatteryVo> result = new PageInfo<>(batteryVoList);
  589. result.setTotal(orderPageInfo.getTotal());
  590. return result;
  591. }
  592. /**
  593. * 查询快充电池信息列表
  594. *
  595. * @param param 电池信息
  596. * @return 电池信息集合
  597. */
  598. @Override
  599. public PageInfo<FastChargeBatteryVo> selectFastChargeBatteryList(BatteryParam param) {
  600. //电池类型
  601. List<String> cellList = new ArrayList<>();
  602. List<String> packList = new ArrayList<>();
  603. if (!param.getBatteryModel().isEmpty()) {
  604. List<BatteryModel> batteryModel = batteryModelMapper.selectList(new LambdaQueryWrapper<BatteryModel>().in(!param.getBatteryModel().isEmpty(), BatteryModel::getId, param.getBatteryModel()));
  605. batteryModel.forEach(o -> {
  606. cellList.add(o.getCellModel());
  607. packList.add(o.getPackModel());
  608. });
  609. }
  610. //故障状态
  611. Set<String> snSet = new HashSet<>();
  612. List<Map<String, Object>> alarmMsgList = batteryMapper.getFaultDeviceList(FAST_CHARGE);
  613. if (alarmMsgList.size() > 0) {
  614. alarmMsgList.forEach(o -> {
  615. if (o != null && o.get("sn") != null) {
  616. snSet.add(o.get("sn").toString());
  617. }
  618. });
  619. }
  620. /*LambdaQueryWrapper<AlarmMsg> wap = new LambdaQueryWrapper<>();
  621. wap.eq(AlarmMsg::getIsDelete, 0);
  622. wap.eq(AlarmMsg::getModelCode, FAST_CHARGE);
  623. wap.isNull(AlarmMsg::getAlarmFreeTime);
  624. wap.select(AlarmMsg::getSn);
  625. List<AlarmMsg> alarmMsgList = alarmMsgMapper.selectList(wap);
  626. if (alarmMsgList.size() > 0) {
  627. alarmMsgList.forEach(o -> snSet.add(o.getSn()));
  628. }*/
  629. if (param.getFaultStatus() != null) {
  630. if (param.getFaultStatus() == 1) {
  631. if (CollectionUtils.isEmpty(snSet)) {
  632. return new PageInfo<>();
  633. }
  634. }
  635. }
  636. //用户标签
  637. Set<Long> batteryIdSet = new HashSet<>();
  638. if (StringUtils.isNotBlank(param.getTag())) {
  639. List<String> tags = new ArrayList<>();
  640. tags = Arrays.asList(param.getTag().split(","));
  641. Set<Long> tagIdSet = new HashSet<>();
  642. tags.forEach(o -> tagIdSet.add(Long.parseLong(o)));
  643. if (tags.size() > 0) {
  644. LambdaQueryWrapper<BatteryTag> wp = new LambdaQueryWrapper<>();
  645. wp.in(BatteryTag::getTagId, tagIdSet);
  646. wp.eq(BatteryTag::getTagType, 0);
  647. wp.eq(BatteryTag::getIsDelete, 0);
  648. wp.isNotNull(BatteryTag::getBatteryId);
  649. wp.select(BatteryTag::getBatteryId);
  650. List<BatteryTag> batteryTags = batteryTagMapper.selectList(wp);
  651. if (batteryTags.size() > 0) {
  652. batteryTags.forEach(o -> batteryIdSet.add(o.getBatteryId()));
  653. }
  654. }
  655. if (CollectionUtils.isEmpty(batteryIdSet)) {
  656. return new PageInfo<>();
  657. }
  658. }
  659. PageHelper.startPage(param.getPageIndex(), param.getPageSize());
  660. QueryWrapper<FastChargeBattery> wrapper = new QueryWrapper<>();
  661. wrapper.and(StringUtils.isNotBlank(param.getSn()), p -> p.like("sn", param.getSn())
  662. .or().like("vin", param.getSn()));
  663. wrapper.in(!packList.isEmpty(), "pack_model_code", packList);
  664. wrapper.in(!cellList.isEmpty(), "cell_model_code", cellList);
  665. wrapper.eq(StringUtils.isNotBlank(param.getBatteryCoreType()), "battery_core_type", param.getBatteryCoreType());
  666. wrapper.in(batteryIdSet.size() > 0, "id", batteryIdSet);
  667. wrapper.in((param.getFaultStatus() != null && param.getFaultStatus() == 1 && snSet.size() > 0), "sn", snSet);
  668. wrapper.notIn((param.getFaultStatus() != null && param.getFaultStatus() == 0 && snSet.size() > 0), "sn", snSet);
  669. wrapper.orderByDesc("update_time");
  670. //查询结果
  671. List<FastChargeBattery> list = fastChargeBatteryMapper.selectList(wrapper);
  672. PageInfo<FastChargeBattery> orderPageInfo = new PageInfo<>(list);
  673. List<FastChargeBatteryVo> batteryVoList = new ArrayList<>();
  674. //准备翻译
  675. List<Tag> tagList = new ArrayList<>();
  676. List<BatteryFolder> batteryFolderList = new ArrayList<>();
  677. List<BatteryModel> batteryModelList = new ArrayList<>();
  678. List<BatteryCore> batteryCorelList = new ArrayList<>();
  679. Set<String> batteryCoreSet = new HashSet<>();
  680. Set<Long> collectIdSet = new HashSet<>();
  681. List<String> batteryModelSet = new ArrayList<>();
  682. orderPageInfo.getList().forEach(o -> {
  683. if (o.getBatteryCoreType() != null) {
  684. batteryCoreSet.add(o.getBatteryCoreType());
  685. }
  686. if (o.getPackModelCode() != null && o.getCellModelCode() != null) {
  687. String model = o.getPackModelCode() + o.getCellModelCode();
  688. if (!batteryModelSet.contains(model)) {
  689. batteryModelSet.add(model);
  690. }
  691. }
  692. collectIdSet.add(o.getId());
  693. });
  694. if (batteryModelSet.size() > 0) {
  695. batteryModelList = batteryModelMapper.getModelByPackAndCellModel(batteryModelSet);
  696. }
  697. if (batteryCoreSet.size() > 0) {
  698. LambdaQueryWrapper<BatteryCore> wp = new LambdaQueryWrapper<>();
  699. wp.in(BatteryCore::getBatteryCoreType, batteryCoreSet);
  700. wp.eq(BatteryCore::getIsDelete, 0);
  701. wp.select(BatteryCore::getBatteryCoreType, BatteryCore::getName);
  702. batteryCorelList = batteryCoreMapper.selectList(wp);
  703. }
  704. if (collectIdSet.size() > 0) {
  705. LambdaQueryWrapper<BatteryFolder> wp = new LambdaQueryWrapper<>();
  706. wp.in(BatteryFolder::getBatteryId, collectIdSet);
  707. wp.eq(BatteryFolder::getFolderType, 0);
  708. wp.eq(BatteryFolder::getIsDelete, 0);
  709. wp.eq(BatteryFolder::getUserId, SecurityUtils.getUserId());
  710. wp.select(BatteryFolder::getBatteryId);
  711. batteryFolderList = batteryFolderMapper.selectList(wp);
  712. tagList = tagMapper.getTagList(collectIdSet, 0);
  713. }
  714. List<BatteryModel> finalBatteryModelList = batteryModelList;
  715. List<Tag> finalTagList = tagList;
  716. List<BatteryCore> finalBatteryCorelList = batteryCorelList;
  717. List<BatteryFolder> finalBatteryFolderList = batteryFolderList;
  718. orderPageInfo.getList().forEach(o -> {
  719. FastChargeBatteryVo vo = new FastChargeBatteryVo();
  720. BeanUtils.copyProperties(o, vo);
  721. if (!CollectionUtils.isEmpty(finalBatteryCorelList)) {
  722. finalBatteryCorelList.forEach(m -> {
  723. if (o.getBatteryCoreType() != null && m.getBatteryCoreType().equals(o.getBatteryCoreType())) {
  724. vo.setBatteryCoreTypeText(m.getName());
  725. }
  726. });
  727. }
  728. if (finalBatteryFolderList.size() > 0) {
  729. finalBatteryFolderList.forEach(m -> {
  730. if (o.getId() != null && m.getBatteryId().equals(o.getId())) {
  731. vo.setCollected(1);
  732. }
  733. });
  734. }
  735. if (finalBatteryModelList.size() > 0) {
  736. finalBatteryModelList.forEach(m -> {
  737. if (o.getPackModelCode() != null && m.getPackModel().equals(o.getPackModelCode()) &&
  738. o.getCellModelCode() != null && m.getCellModel().equals(o.getCellModelCode())) {
  739. vo.setBatteryModel(m.getBatteryModel());
  740. }
  741. });
  742. }
  743. if (finalTagList.size() > 0) {
  744. Set<String> tagIdList = new HashSet<>();
  745. Set<String> tagNameList = new HashSet<>();
  746. finalTagList.forEach(m -> {
  747. if (o.getId() != null && m.getBatteryId().equals(o.getId())) {
  748. tagIdList.add(String.valueOf(m.getId()));
  749. tagNameList.add(m.getTagName());
  750. }
  751. });
  752. if (tagIdList.size() > 0) {
  753. vo.setTag(String.join(",", tagIdList));
  754. vo.setTagText(String.join(",", tagNameList));
  755. }
  756. }
  757. vo.setFaultStatus(FaultStatusEnum.GOOD.code());
  758. if (snSet.size() > 0) {
  759. if (o.getSn() != null && snSet.contains(o.getSn())) {
  760. vo.setFaultStatus(FaultStatusEnum.BAD.code());
  761. }
  762. }
  763. vo.setFaultStatusText(FaultStatusEnum.getDesc(vo.getFaultStatus()));
  764. batteryVoList.add(vo);
  765. });
  766. PageInfo<FastChargeBatteryVo> result = new PageInfo<>(batteryVoList);
  767. result.setTotal(orderPageInfo.getTotal());
  768. return result;
  769. }
  770. private void setTotalBatteryTotal(TodayCompareOtherVo bsVo, BatteryOverviewParam param, List<String> carModelList) {
  771. //车型数据
  772. //当日 、昨日、上周、上月 字符串
  773. Date yesDate = new Date(System.currentTimeMillis() - 1000 * 60 * 60 * 24);
  774. SimpleDateFormat sf = new SimpleDateFormat("yyyy-MM-dd 23:59:59");
  775. String yesterday = sf.format(yesDate);
  776. String today = sf.format(new Date());
  777. String lastWeek = DateUtil.getPreviousWeekSunday() + " 23:59:59";
  778. String lastMonth = DateUtil.getLastMaxMonthDate() + " 23:59:59";
  779. //找到了数据
  780. String carModel = carModelList.size() > 0 ? "'" + String.join("','", carModelList) + "'" : null;
  781. int yes = batteryMapper.getBatteryTotalCountByDate(yesterday, carModel, param.getPackModel());
  782. int tod = batteryMapper.getBatteryTotalCountByDate(today, carModel, param.getPackModel());
  783. int law = batteryMapper.getBatteryTotalCountByDate(lastWeek, carModel, param.getPackModel());
  784. int lam = batteryMapper.getBatteryTotalCountByDate(lastMonth, carModel, param.getPackModel());
  785. bsVo.setCount("0");
  786. bsVo.setYesterday("0");
  787. bsVo.setYesterdayFlag(null);
  788. bsVo.setWeek("0");
  789. bsVo.setWeekFlag(null);
  790. bsVo.setMonth("0");
  791. bsVo.setMonthFlag(null);
  792. //当日数据提前准备
  793. bsVo.setCount(DecimalFormat.getNumberInstance().format(tod));
  794. bsVo.setYesterday(calculateRate(BigDecimal.valueOf(tod), BigDecimal.valueOf(yes)));
  795. int res = setFlag(BigDecimal.valueOf(tod), BigDecimal.valueOf(yes));
  796. bsVo.setYesterdayFlag(res);
  797. bsVo.setWeek(calculateRate(BigDecimal.valueOf(tod), BigDecimal.valueOf(law)));
  798. res = setFlag(BigDecimal.valueOf(tod), BigDecimal.valueOf(law));
  799. bsVo.setWeekFlag(res);
  800. bsVo.setMonth(calculateRate(BigDecimal.valueOf(tod), BigDecimal.valueOf(lam)));
  801. res = setFlag(BigDecimal.valueOf(tod), BigDecimal.valueOf(lam));
  802. bsVo.setMonthFlag(res);
  803. }
  804. /**
  805. * 获取电池数据概览
  806. *
  807. * @return com.hz.business.vo.BatteryStatisticsVo
  808. */
  809. private void setBatteryStatistics(BatteryStatisticsVo bsVo, BatteryOverviewParam param, List<String> carModelList, int total) {
  810. //
  811. Date nowDate = new Date(System.currentTimeMillis() - 1000 * 60 * 60 * 24);
  812. Date yesDate = new Date(System.currentTimeMillis() - 1000 * 60 * 60 * 24 * 2);
  813. //两点前数据为更新完毕的情况,采用t+2数据
  814. Date frontDates = new Date(System.currentTimeMillis() - 1000 * 60 * 60 * 24 * 3);
  815. SimpleDateFormat sf = new SimpleDateFormat("yyyy-MM-dd");
  816. SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
  817. SimpleDateFormat sdf2 = new SimpleDateFormat("yyyyMMdd020000");
  818. //今日
  819. String today = sf.format(nowDate).replaceAll("-", "");
  820. //T+1
  821. String yesterday = sf.format(yesDate).replaceAll("-", "");
  822. String lastWeek = DateUtil.getPreviousWeekSundayYes(nowDate);
  823. String todays = sf.format(yesDate).replaceAll("-", "");
  824. //T+2
  825. String yesterdays = sf.format(frontDates).replaceAll("-", "");
  826. String lastWeeks = DateUtil.getPreviousWeekSundayYes(yesDate);
  827. String lastMonth = DateUtil.getLastMaxMonthDateYes();
  828. lastWeek = lastWeek.replaceAll("-", "");
  829. lastMonth = lastMonth.replaceAll("-", "");
  830. lastWeeks = lastWeeks.replaceAll("-", "");
  831. List<String> dateStrList = new ArrayList<>();
  832. if (Long.valueOf(sdf.format(new Date())) > Long.valueOf(sdf2.format(new Date()))) {
  833. dateStrList.add(today);
  834. dateStrList.add(yesterday);
  835. dateStrList.add(lastWeek);
  836. } else {
  837. dateStrList.add(todays);
  838. dateStrList.add(yesterdays);
  839. dateStrList.add(lastWeeks);
  840. }
  841. dateStrList.add(lastMonth);
  842. String[] strArray = dateStrList.toArray(new String[dateStrList.size()]);
  843. String carModel = carModelList.size() > 0 ? "'" + String.join("','", carModelList) + "'" : null;
  844. List<Map<String, Object>> mapList = batteryMapper.getHistoryData(carModel, param.getPackModel(), param.getCellModel(), strArray);
  845. List<QuantityItemDateStaticVo> quantityItemVoList = new ArrayList<>();
  846. if (mapList.size() > 0) {
  847. quantityItemVoList = JSONArray.parseArray(JSON.toJSONString(mapList), QuantityItemDateStaticVo.class);
  848. }
  849. //1-电池总量 2-24小时充电总电能(kWh) 3-放电总时长 4-行驶总里程 5-电池类型 6-在线电池总量
  850. //电池总量
  851. TodayCompareOtherVo totalBatteryCountVo = new TodayCompareOtherVo();
  852. totalBatteryCountVo.setTitle("电池总数(台)");
  853. totalBatteryCountVo.setContent("统计平台接入电池的总数");
  854. setYesWeekMonthData(totalBatteryCountVo, quantityItemVoList, BatteryOverviewEnum.TOTAL.code(), today, yesterday, lastWeek, todays, yesterdays, lastWeeks, lastMonth, total);
  855. bsVo.setTotalBatteryCountVo(totalBatteryCountVo);
  856. //装机总量指标
  857. TodayCompareOtherVo totalElectricQuantityVo = new TodayCompareOtherVo();
  858. totalElectricQuantityVo.setTitle("装机总能量(kWh)");
  859. totalElectricQuantityVo.setContent("统计所有电池的能量总和");
  860. setWeekMonthData(totalElectricQuantityVo, quantityItemVoList, BatteryOverviewEnum.CAPACITY.code(), today, yesterday, lastWeek, todays, yesterdays, lastWeeks, lastMonth, total);
  861. bsVo.setTotalElectricQuantityVo(totalElectricQuantityVo);
  862. int count = Integer.parseInt(totalBatteryCountVo.getCount().replaceAll(",", ""));
  863. //24小时充电总能量
  864. TodayCompareOtherVo allDayChargeVo = new TodayCompareOtherVo();
  865. allDayChargeVo.setTitle("昨日充电总能量(kWh)");
  866. allDayChargeVo.setContent("昨日电池充入的总能量");
  867. setYesWeekMonthData(allDayChargeVo, quantityItemVoList, BatteryOverviewEnum.CHARGE.code(), today, yesterday, lastWeek, todays, yesterdays, lastWeeks, lastMonth, count);
  868. bsVo.setAllDayChargeVo(allDayChargeVo);
  869. //行驶总里程
  870. TodayCompareOtherVo totalMileageVo = new TodayCompareOtherVo();
  871. totalMileageVo.setTitle("行驶总里程(百万公里)");
  872. totalMileageVo.setContent("所有车辆行驶里程数的总和");
  873. setYesWeekMonthData(totalMileageVo, quantityItemVoList, BatteryOverviewEnum.ODO.code(), today, yesterday, lastWeek, todays, yesterdays, lastWeeks, lastMonth, count);
  874. if (totalMileageVo.getCount() != null) {
  875. String res = DecimalFormat.getNumberInstance().format(new BigDecimal(totalMileageVo.getCount().replaceAll(",", ""))
  876. .divide(BigDecimal.valueOf(1000000), 2, RoundingMode.HALF_UP));
  877. totalMileageVo.setCount(res);
  878. }
  879. bsVo.setTotalMileageVo(totalMileageVo);
  880. //在线电池总量
  881. TodayCompareOtherVo onLineBatteryVo = new TodayCompareOtherVo();
  882. onLineBatteryVo.setTitle("昨日上线电池数(台)");
  883. onLineBatteryVo.setPrompt("昨日上线电池比例(%)");
  884. onLineBatteryVo.setContent("昨日上线电池数及比例,比例计算方式:昨日上线电池数/昨日电池总量*100%");
  885. setYesWeekMonthData(onLineBatteryVo, quantityItemVoList, BatteryOverviewEnum.ONLINE.code(), today, yesterday, lastWeek, todays, yesterdays, lastWeeks, lastMonth, count);
  886. //千分位处理
  887. //setOnLineBatteryData(onLineBatteryVo, param, BigDecimal.valueOf(total), carModelList);
  888. bsVo.setOnLineBatteryVo(onLineBatteryVo);
  889. }
  890. private void setWeekMonthData(TodayCompareOtherVo bsVo, List<QuantityItemDateStaticVo> quantityItemVoList,
  891. Integer type, String today, String yesterday, String lastWeek, String todays, String yesterdays, String lastWeeks, String lastMonth, int total) {
  892. SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
  893. SimpleDateFormat sdf2 = new SimpleDateFormat("yyyyMMdd020000");
  894. bsVo.setCount("0");
  895. bsVo.setYesterday("0");
  896. bsVo.setYesterdayFlag(null);
  897. bsVo.setWeek("0");
  898. bsVo.setWeekFlag(null);
  899. bsVo.setMonth("0");
  900. bsVo.setMonthFlag(null);
  901. //当日数据提前准备
  902. if (quantityItemVoList.size() > 0) {
  903. BigDecimal tod = BigDecimal.ZERO;
  904. BigDecimal yes = BigDecimal.ZERO;
  905. BigDecimal law = BigDecimal.ZERO;
  906. BigDecimal lam = BigDecimal.ZERO;
  907. List<QuantityItemDateStaticVo> list = quantityItemVoList.stream()
  908. .filter(o -> String.valueOf(type).equals(o.getItem())).collect(Collectors.toList());
  909. for (QuantityItemDateStaticVo vo : list) {
  910. if (Long.valueOf(sdf.format(new Date())) > Long.valueOf(sdf2.format(new Date()))) {
  911. if (vo.getStaticDate().equals(today)) {
  912. tod = vo.getQuantity();
  913. }
  914. if (vo.getStaticDate().equals(lastWeek)) {
  915. law = vo.getQuantity();
  916. }
  917. } else {
  918. if (vo.getStaticDate().equals(todays)) {
  919. tod = vo.getQuantity();
  920. }
  921. if (vo.getStaticDate().equals(lastWeeks)) {
  922. law = vo.getQuantity();
  923. }
  924. }
  925. if (vo.getStaticDate().equals(lastMonth)) {
  926. lam = vo.getQuantity();
  927. }
  928. }
  929. if (type == 8) {
  930. bsVo.setCount(DecimalFormat.getNumberInstance().format(tod.divide(BigDecimal.valueOf(1L), 2, RoundingMode.HALF_UP)));
  931. } else {
  932. bsVo.setCount(DecimalFormat.getNumberInstance().format(tod));
  933. }
  934. boolean percent = false;
  935. if (type.equals(BatteryOverviewEnum.CAPACITY.code())) {
  936. percent = true;
  937. }
  938. if (percent) {
  939. if (law.compareTo(BigDecimal.ZERO) != 0 && yes.compareTo(BigDecimal.ZERO) != 0 && lam.compareTo(BigDecimal.ZERO) != 0) {
  940. bsVo.setYesterday(calculateRate(tod, yes));
  941. int res;
  942. bsVo.setWeek(calculateRate(tod, law));
  943. res = setFlag(tod, law);
  944. bsVo.setWeekFlag(res);
  945. bsVo.setMonth(calculateRate(tod, lam));
  946. res = setFlag(tod, lam);
  947. bsVo.setMonthFlag(res);
  948. } else {
  949. bsVo.setWeek("0");
  950. bsVo.setMonth("0");
  951. bsVo.setWeekFlag(3);
  952. bsVo.setMonthFlag(3);
  953. }
  954. }
  955. }
  956. }
  957. /**
  958. * 获取电池数据概览
  959. *
  960. * @return com.hz.business.vo.BatteryStatisticsVo
  961. */
  962. @Override
  963. @Cacheable(cacheNames = "query::batteryStatisticsCache", key = "#batteryOverviewParam")
  964. public BatteryStatisticsVo getBatteryStatistics(BatteryOverviewParam batteryOverviewParam) {
  965. BatteryStatisticsVo bsVo = new BatteryStatisticsVo();
  966. //改为合众车型查询
  967. List<String> carModelList1 = new ArrayList<>();
  968. List<String> carModelList = new ArrayList<>();
  969. if (!batteryOverviewParam.getCarModel().isEmpty()) {
  970. carModelList1 = batteryMapper.getCarModelByHzModel(batteryOverviewParam.getCarModel());
  971. if (carModelList1.size() > 0) {
  972. carModelList1.forEach(o -> {
  973. carModelList.addAll(Arrays.asList(o.split(",")));
  974. });
  975. }
  976. }
  977. setBatteryOverviewParam(batteryOverviewParam);
  978. int total = batteryMapper.selectCount(new LambdaQueryWrapper<Battery>()
  979. .select(Battery::getSn)
  980. .eq(Battery::getIsDelete, 0)
  981. .in(carModelList.size() > 0, Battery::getModel, carModelList)
  982. .in(!batteryOverviewParam.getPackModel().isEmpty(), Battery::getPackModelCode, batteryOverviewParam.getPackModel())
  983. .in(!batteryOverviewParam.getCellModel().isEmpty(), Battery::getCellModelCode, batteryOverviewParam.getCellModel())
  984. );
  985. setBatteryStatistics(bsVo, batteryOverviewParam, carModelList, total);
  986. int count = Integer.parseInt(bsVo.getTotalBatteryCountVo().getCount().replaceAll(",", ""));
  987. // //装机总量指标
  988. // TodayCompareOtherVo totalElectricQuantityVo = new TodayCompareOtherVo();
  989. // totalElectricQuantityVo.setTitle("装机总能量(GWh)");
  990. // totalElectricQuantityVo.setContent("统计所有电池的能量总和");
  991. // setTotalElectricQuantityVo(totalElectricQuantityVo, batteryOverviewParam, carModelList);
  992. // bsVo.setTotalElectricQuantityVo(totalElectricQuantityVo);
  993. //当前报警电池总数
  994. TodayCompareOtherVo currentBatteryFaultVo = new TodayCompareOtherVo();
  995. currentBatteryFaultVo.setTitle("累计报警电池数(台)");
  996. currentBatteryFaultVo.setPrompt("累计报警电池比例(%)");
  997. currentBatteryFaultVo.setContent("截⽌昨⽇平台累计报警电池数及比例,比例计算方式:累计报警电池数/电池总量*100%");
  998. setFaultAverageTodayVo(currentBatteryFaultVo, batteryOverviewParam, carModelList, BigDecimal.valueOf(count));
  999. bsVo.setCurrentBatteryFaultVo(currentBatteryFaultVo);
  1000. //上高压电池总量
  1001. TodayCompareOtherVo upperHighVoltageVo = new TodayCompareOtherVo();
  1002. setUpperHighVoltageVo(upperHighVoltageVo, batteryOverviewParam, BigDecimal.valueOf(count), carModelList);
  1003. upperHighVoltageVo.setTitle("上高压电池数(台)");
  1004. upperHighVoltageVo.setPrompt("上高压电池比例(%)");
  1005. upperHighVoltageVo.setContent("车辆最后一条状态数据为上高压时的所有电池数及比例,比例计算方式:上高压电池数/电池总量*100%");
  1006. bsVo.setUpperHighVoltageVo(upperHighVoltageVo);
  1007. //SOH>80%电池数量
  1008. TodayCompareOtherVo sohOverServerPercentVo = new TodayCompareOtherVo();
  1009. sohOverServerPercentVo.setTitle("SOH≥80%电池数(台)");
  1010. sohOverServerPercentVo.setPrompt("SOH≥80%电池比例(%)");
  1011. sohOverServerPercentVo.setContent("所有SOH大于80%的电池数及比例,比例计算方式:SOH>80%的电池数/电池总量*100%");
  1012. setSoh(sohOverServerPercentVo, batteryOverviewParam, BigDecimal.valueOf(count), carModelList);
  1013. bsVo.setSohOverServerPercentVo(sohOverServerPercentVo);
  1014. //运营车数量
  1015. TodayCompareOtherVo businessCarVo = new TodayCompareOtherVo();
  1016. businessCarVo.setTitle("运营车辆数(辆)");
  1017. businessCarVo.setPrompt("运营车辆比例(%)");
  1018. businessCarVo.setContent("当前运营车辆数及比例,比例计算方式:运营车辆数/电池总量*100%");
  1019. setBusinessVo(businessCarVo, batteryOverviewParam, BigDecimal.valueOf(count), carModelList);
  1020. bsVo.setBusinessCarVo(businessCarVo);
  1021. return bsVo;
  1022. }
  1023. private void setBatteryOverviewParam(BatteryOverviewParam batteryOverviewParam) {
  1024. List<Integer> ids = batteryOverviewParam.getBatteryModel();
  1025. if (!ids.isEmpty()) {
  1026. List<BatteryModel> batteryModelList = batteryModelMapper.getBatteryModelListByIds(ids);
  1027. List<String> cellList = new ArrayList<>();
  1028. List<String> packList = new ArrayList<>();
  1029. batteryModelList.forEach(o -> {
  1030. cellList.add(o.getCellModel());
  1031. packList.add(o.getPackModel());
  1032. });
  1033. batteryOverviewParam.setCellModel(cellList);
  1034. batteryOverviewParam.setPackModel(packList);
  1035. }
  1036. }
  1037. /**
  1038. * 运营车数量
  1039. *
  1040. * @param bsVo 实体类
  1041. */
  1042. private void setBusinessVo(TodayCompareOtherVo bsVo, BatteryOverviewParam param, BigDecimal total, List<String> carModelList) {
  1043. bsVo.setCount("0");
  1044. bsVo.setYesterday("0");
  1045. bsVo.setYesterdayFlag(null);
  1046. bsVo.setWeek("0");
  1047. bsVo.setWeekFlag(null);
  1048. bsVo.setMonth("0");
  1049. bsVo.setMonthFlag(null);
  1050. //车型数据
  1051. String carModel = carModelList.size() > 0 ? "'" + String.join("','", carModelList) + "'" : null;
  1052. long todayNum = 0L;
  1053. try {
  1054. todayNum = batteryMapper.getBusinessCount(carModel, param.getPackModel(), param.getCellModel());
  1055. } catch (Exception e) {
  1056. }
  1057. BigDecimal todayCount = BigDecimal.valueOf(todayNum);
  1058. //当日数据提前准备
  1059. bsVo.setCount(DecimalFormat.getNumberInstance().format(todayCount));
  1060. bsVo.setYesterday(calculatePercent(todayCount, total));
  1061. }
  1062. /**
  1063. * 装机总能量
  1064. *
  1065. * @param bsVo 参数
  1066. * @param param 参数
  1067. */
  1068. private void setTotalElectricQuantityVo(TodayCompareOtherVo bsVo, BatteryOverviewParam param, List<String> carModelList) {
  1069. SimpleDateFormat sf = new SimpleDateFormat("yyyyMMdd");
  1070. SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
  1071. SimpleDateFormat sdf2 = new SimpleDateFormat("yyyyMMdd020000");
  1072. Date nowDate = new Date(System.currentTimeMillis());
  1073. Date yesDate = new Date(System.currentTimeMillis() - 1000 * 60 * 60 * 24);
  1074. Date yessDate = new Date(System.currentTimeMillis() - 1000 * 60 * 60 * 24 * 2);
  1075. String today = sf.format(nowDate);
  1076. String todays = sf.format(yesDate);
  1077. String lastWeek = DateUtil.getPreviousWeekSundayYes(yesDate);
  1078. String lastWeeks = DateUtil.getPreviousWeekSundayYes(yessDate);
  1079. String lastMonth = DateUtil.getLastMaxMonthDate();
  1080. lastWeek = lastWeek.replaceAll("-", "");
  1081. lastMonth = lastMonth.replaceAll("-", "");
  1082. List<String> dateStrList = new ArrayList<>();
  1083. if (Long.valueOf(sdf.format(new Date())) > Long.valueOf(sdf2.format(new Date()))) {
  1084. dateStrList.add(today);
  1085. dateStrList.add(lastWeek);
  1086. } else {
  1087. dateStrList.add(todays);
  1088. dateStrList.add(lastWeeks);
  1089. }
  1090. dateStrList.add(lastMonth);
  1091. List<ElectricQuantity> voList = eqMapper.getSomeData(dateStrList);
  1092. bsVo.setCount("0");
  1093. bsVo.setYesterday("0");
  1094. bsVo.setYesterdayFlag(null);
  1095. bsVo.setWeek("0");
  1096. bsVo.setWeekFlag(null);
  1097. bsVo.setMonth("0");
  1098. bsVo.setMonthFlag(null);
  1099. //当日数据提前准备
  1100. BigDecimal todayCount = BigDecimal.ZERO;
  1101. for (ElectricQuantity bms : voList) {
  1102. if (Long.valueOf(sdf.format(new Date())) > Long.valueOf(sdf2.format(new Date()))) {
  1103. if (bms.getDateInfo().equals(today)) {
  1104. JSONObject object = JSONObject.parseObject(bms.getDataJson());
  1105. if (carModelList.size() > 0) {
  1106. final BigDecimal[] modelTotal = {BigDecimal.ZERO};
  1107. if (carModelList.size() > 0) {
  1108. carModelList.forEach(o -> {
  1109. if (object.getBigDecimal(o) != null) {
  1110. modelTotal[0] = modelTotal[0].add(object.getBigDecimal(o));
  1111. }
  1112. });
  1113. }
  1114. todayCount = modelTotal[0];
  1115. } else {
  1116. todayCount = new BigDecimal(object.get("total").toString());
  1117. }
  1118. break;
  1119. }
  1120. } else {
  1121. if (bms.getDateInfo().equals(todays)) {
  1122. JSONObject object = JSONObject.parseObject(bms.getDataJson());
  1123. if (carModelList.size() > 0) {
  1124. final BigDecimal[] modelTotal = {BigDecimal.ZERO};
  1125. if (carModelList.size() > 0) {
  1126. carModelList.forEach(o -> {
  1127. if (object.getBigDecimal(o) != null) {
  1128. modelTotal[0] = modelTotal[0].add(object.getBigDecimal(o));
  1129. }
  1130. });
  1131. }
  1132. todayCount = modelTotal[0];
  1133. } else {
  1134. todayCount = new BigDecimal(object.get("total").toString());
  1135. }
  1136. break;
  1137. }
  1138. }
  1139. }
  1140. BigDecimal divide = todayCount.divide(BigDecimal.valueOf(1000000L), 2, RoundingMode.HALF_UP);
  1141. bsVo.setCount(DecimalFormat.getNumberInstance().format(divide));
  1142. BigDecimal finalTodayCount = todayCount;
  1143. String finalLastWeek = lastWeek;
  1144. String finalLastMonth = lastMonth;
  1145. voList.forEach(o -> {
  1146. if (Long.valueOf(sdf.format(new Date())) > Long.valueOf(sdf2.format(new Date()))) {
  1147. if (o.getDateInfo().equals(finalLastWeek)) {
  1148. JSONObject object = JSONObject.parseObject(o.getDataJson());
  1149. BigDecimal week = BigDecimal.ZERO;
  1150. if (!param.getCarModel().isEmpty()) {
  1151. final BigDecimal[] modelTotal = {BigDecimal.ZERO};
  1152. if (carModelList.size() > 0) {
  1153. carModelList.forEach(om -> {
  1154. if (object.getBigDecimal(om) != null) {
  1155. modelTotal[0] = modelTotal[0].add(object.getBigDecimal(om));
  1156. }
  1157. });
  1158. }
  1159. week = modelTotal[0];
  1160. } else {
  1161. week = new BigDecimal(object.get("total").toString());
  1162. }
  1163. bsVo.setWeek(calculateRate(finalTodayCount, week));
  1164. if (bsVo.getWeek() == null) {
  1165. bsVo.setWeekFlag(null);
  1166. } else {
  1167. int res = setFlag(finalTodayCount, week);
  1168. bsVo.setWeekFlag(res);
  1169. }
  1170. }
  1171. } else {
  1172. if (o.getDateInfo().equals(lastWeeks)) {
  1173. JSONObject object = JSONObject.parseObject(o.getDataJson());
  1174. BigDecimal week = BigDecimal.ZERO;
  1175. if (!param.getCarModel().isEmpty()) {
  1176. final BigDecimal[] modelTotal = {BigDecimal.ZERO};
  1177. if (carModelList.size() > 0) {
  1178. carModelList.forEach(om -> {
  1179. if (object.getBigDecimal(om) != null) {
  1180. modelTotal[0] = modelTotal[0].add(object.getBigDecimal(om));
  1181. }
  1182. });
  1183. }
  1184. week = modelTotal[0];
  1185. } else {
  1186. week = new BigDecimal(object.get("total").toString());
  1187. }
  1188. bsVo.setWeek(calculateRate(finalTodayCount, week));
  1189. if (bsVo.getWeek() == null) {
  1190. bsVo.setWeekFlag(null);
  1191. } else {
  1192. int res = setFlag(finalTodayCount, week);
  1193. bsVo.setWeekFlag(res);
  1194. }
  1195. }
  1196. }
  1197. if (o.getDateInfo().equals(finalLastMonth)) {
  1198. BigDecimal mon = BigDecimal.ZERO;
  1199. JSONObject object = JSONObject.parseObject(o.getDataJson());
  1200. if (!param.getCarModel().isEmpty()) {
  1201. final BigDecimal[] modelTotal = {BigDecimal.ZERO};
  1202. if (carModelList.size() > 0) {
  1203. carModelList.forEach(om -> {
  1204. if (object.getBigDecimal(om) != null) {
  1205. modelTotal[0] = modelTotal[0].add(object.getBigDecimal(om));
  1206. }
  1207. });
  1208. }
  1209. mon = modelTotal[0];
  1210. } else {
  1211. mon = new BigDecimal(object.get("total").toString());
  1212. }
  1213. bsVo.setMonth(calculateRate(finalTodayCount, mon));
  1214. if (bsVo.getMonth() == null) {
  1215. bsVo.setMonthFlag(null);
  1216. } else {
  1217. int res = setFlag(finalTodayCount, mon);
  1218. bsVo.setMonthFlag(res);
  1219. }
  1220. }
  1221. });
  1222. }
  1223. /**
  1224. * 电池总量
  1225. *
  1226. * @param bsVo 实体类
  1227. */
  1228. private void setTotalBatteryCountData(TodayCompareOtherVo bsVo, BatteryOverviewParam param, Integer type, List<String> carModelList) {
  1229. //车型数据
  1230. //当日 、昨日、上周、上月 字符串
  1231. Date yesDate = new Date(System.currentTimeMillis() - 1000 * 60 * 60 * 24 * 2);
  1232. SimpleDateFormat sf = new SimpleDateFormat("yyyy-MM-dd");
  1233. String yesterday = sf.format(yesDate);
  1234. Date nowDate = new Date(System.currentTimeMillis() - 1000 * 60 * 60 * 24);
  1235. String today = sf.format(nowDate);
  1236. String lastWeek = DateUtil.getPreviousWeekSundayYes(nowDate);
  1237. String lastMonth = DateUtil.getLastMaxMonthDateYes();
  1238. List<String> dateStrList = new ArrayList<>();
  1239. dateStrList.add(yesterday);
  1240. dateStrList.add(today);
  1241. dateStrList.add(lastWeek);
  1242. dateStrList.add(lastMonth);
  1243. //找到了数据
  1244. List<BatteryModelStatistics> voList = new ArrayList<>();
  1245. switch (type) {
  1246. case 0:
  1247. voList = batteryMapper.getBatteryModelData(dateStrList);
  1248. break;
  1249. case 1:
  1250. voList = batteryMapper.getAllDayChargeData(dateStrList);
  1251. break;
  1252. case 2:
  1253. voList = batteryMapper.getDischargeData(dateStrList);
  1254. break;
  1255. case 3:
  1256. voList = batteryMapper.getTotalMileage(dateStrList);
  1257. break;
  1258. default:
  1259. }
  1260. bsVo.setCount("0");
  1261. bsVo.setYesterday("0");
  1262. bsVo.setYesterdayFlag(null);
  1263. bsVo.setWeek("0");
  1264. bsVo.setWeekFlag(null);
  1265. bsVo.setMonth("0");
  1266. bsVo.setMonthFlag(null);
  1267. //当日数据提前准备
  1268. BigDecimal todayCount = BigDecimal.ZERO;
  1269. for (BatteryModelStatistics bms : voList) {
  1270. if (sf.format(bms.getTimeInfo()).contains(today)) {
  1271. if (carModelList.size() > 0) {
  1272. JSONObject object = JSONObject.parseObject(bms.getData());
  1273. final BigDecimal[] modelTotal = {BigDecimal.ZERO};
  1274. if (carModelList.size() > 0) {
  1275. carModelList.forEach(o -> {
  1276. if (object.getBigDecimal(o) != null) {
  1277. modelTotal[0] = modelTotal[0].add(object.getBigDecimal(o));
  1278. }
  1279. });
  1280. }
  1281. todayCount = modelTotal[0];
  1282. //todayCount = object != null ? object.getBigDecimal(param.getCarModel()) : BigDecimal.ZERO;
  1283. } else {
  1284. todayCount = bms.getTotal();
  1285. }
  1286. break;
  1287. }
  1288. }
  1289. bsVo.setCount(DecimalFormat.getNumberInstance().format(todayCount == null ? 0 : todayCount));
  1290. BigDecimal finalTodayCount = todayCount;
  1291. voList.forEach(o -> {
  1292. if (sf.format(o.getTimeInfo()).contains(yesterday)) {
  1293. BigDecimal yes = BigDecimal.ZERO;
  1294. if (!param.getCarModel().isEmpty()) {
  1295. JSONObject object = JSONObject.parseObject(o.getData());
  1296. //yes = object != null ? object.getBigDecimal(param.getCarModel()) : BigDecimal.ZERO;
  1297. final BigDecimal[] modelTotal = {BigDecimal.ZERO};
  1298. if (carModelList.size() > 0) {
  1299. carModelList.forEach(om -> {
  1300. if (object.getBigDecimal(om) != null) {
  1301. modelTotal[0] = modelTotal[0].add(object.getBigDecimal(om));
  1302. }
  1303. });
  1304. }
  1305. yes = modelTotal[0];
  1306. } else {
  1307. yes = o.getTotal();
  1308. }
  1309. bsVo.setYesterday(calculateRate(finalTodayCount, yes));
  1310. if (bsVo.getYesterday() == null) {
  1311. bsVo.setYesterdayFlag(null);
  1312. } else {
  1313. int res = setFlag(finalTodayCount, yes);
  1314. bsVo.setYesterdayFlag(res);
  1315. }
  1316. }
  1317. if (sf.format(o.getTimeInfo()).contains(lastWeek)) {
  1318. BigDecimal week = BigDecimal.ZERO;
  1319. if (!param.getCarModel().isEmpty()) {
  1320. JSONObject object = JSONObject.parseObject(o.getData());
  1321. final BigDecimal[] modelTotal = {BigDecimal.ZERO};
  1322. if (carModelList.size() > 0) {
  1323. carModelList.forEach(om -> {
  1324. if (object.getBigDecimal(om) != null) {
  1325. modelTotal[0] = modelTotal[0].add(object.getBigDecimal(om));
  1326. }
  1327. });
  1328. }
  1329. week = modelTotal[0];
  1330. //week = object != null ? object.getBigDecimal(param.getCarModel()) : BigDecimal.ZERO;
  1331. } else {
  1332. week = o.getTotal();
  1333. }
  1334. bsVo.setWeek(calculateRate(finalTodayCount, week));
  1335. if (bsVo.getWeek() == null) {
  1336. bsVo.setWeekFlag(null);
  1337. } else {
  1338. int res = setFlag(finalTodayCount, week);
  1339. bsVo.setWeekFlag(res);
  1340. }
  1341. }
  1342. if (sf.format(o.getTimeInfo()).contains(lastMonth)) {
  1343. BigDecimal mon = BigDecimal.ZERO;
  1344. if (!param.getCarModel().isEmpty()) {
  1345. JSONObject object = JSONObject.parseObject(o.getData());
  1346. final BigDecimal[] modelTotal = {BigDecimal.ZERO};
  1347. if (carModelList.size() > 0) {
  1348. carModelList.forEach(om -> {
  1349. if (object.getBigDecimal(om) != null) {
  1350. modelTotal[0] = modelTotal[0].add(object.getBigDecimal(om));
  1351. }
  1352. });
  1353. }
  1354. mon = modelTotal[0];
  1355. //mon = object != null ? object.getBigDecimal(param.getCarModel()) : BigDecimal.ZERO;
  1356. } else {
  1357. mon = o.getTotal();
  1358. }
  1359. bsVo.setMonth(calculateRate(finalTodayCount, mon));
  1360. if (bsVo.getMonth() == null) {
  1361. bsVo.setMonthFlag(null);
  1362. } else {
  1363. int res = setFlag(finalTodayCount, mon);
  1364. bsVo.setMonthFlag(res);
  1365. }
  1366. }
  1367. });
  1368. }
  1369. /**
  1370. * 在线电池总量
  1371. *
  1372. * @param bsVo 实体类
  1373. */
  1374. private void setOnLineBatteryData(TodayCompareOtherVo bsVo, BatteryOverviewParam param, BigDecimal total, List<String> carModelList) {
  1375. SimpleDateFormat sf = new SimpleDateFormat("yyyy-MM-dd");
  1376. String today = sf.format(new Date(System.currentTimeMillis() - 1000 * 24 * 60 * 60));
  1377. //找到了数据
  1378. BatteryModelStatistics vo = batteryMapper.getOnlineBatteryData(today);
  1379. if (vo != null) {
  1380. if (!param.getCarModel().isEmpty()) {
  1381. JSONObject object = JSON.parseObject(vo.getData());
  1382. if (object != null) {
  1383. final BigDecimal[] modelTotal = {BigDecimal.ZERO};
  1384. if (carModelList.size() > 0) {
  1385. carModelList.forEach(o -> {
  1386. if (object.getBigDecimal(o) != null) {
  1387. modelTotal[0] = modelTotal[0].add(object.getBigDecimal(o));
  1388. }
  1389. });
  1390. }
  1391. vo.setTotal(modelTotal[0]);
  1392. }
  1393. }
  1394. bsVo.setCount(vo.getTotal() != null ? String.valueOf(vo.getTotal()) : "0");
  1395. bsVo.setYesterday("0");
  1396. if (vo.getTotal() != null && total.compareTo(BigDecimal.ZERO) > 0) {
  1397. BigDecimal percent = new BigDecimal(bsVo.getCount()).multiply(new BigDecimal(100)).divide(total, 2, RoundingMode.HALF_UP);
  1398. bsVo.setYesterday(String.valueOf(percent));
  1399. }
  1400. }
  1401. }
  1402. /**
  1403. * 当前报警电池数
  1404. *
  1405. * @param bsVo 实体类
  1406. */
  1407. private void setFaultAverageTodayVo(TodayCompareOtherVo bsVo, BatteryOverviewParam param, List<String> carModelList, BigDecimal total) {
  1408. //List<Battery> batteryList = this.list(new LambdaQueryWrapper<Battery>()
  1409. // .select(Battery::getSn)
  1410. // .in(carModelList.size() > 0, Battery::getModel, carModelList)
  1411. // .eq(StringUtils.isNotBlank(param.getPackModel()), Battery::getPackModelCode, param.getPackModel())
  1412. // .eq(Battery::getIsDelete, 0));
  1413. //List<String> collect = batteryList.stream().map(Battery::getSn).collect(Collectors.toList());
  1414. //找到了数据
  1415. //String carModel = carModelList.size() > 0 ? "'" + String.join("','", carModelList) + "'" : null;
  1416. int fault = alarmMsgMapper.getAlarmSnCount(param.getPackModel(), param.getCellModel(), carModelList);
  1417. bsVo.setCount(DecimalFormat.getNumberInstance().format(fault));
  1418. bsVo.setYesterday(calculatePercent(BigDecimal.valueOf(fault), total));
  1419. }
  1420. /**
  1421. * 上高压电池量
  1422. *
  1423. * @param bsVo 实体类
  1424. */
  1425. private void setUpperHighVoltageVo(TodayCompareOtherVo bsVo, BatteryOverviewParam param, BigDecimal total, List<String> carModelList) {
  1426. if (!param.getCarModel().isEmpty()) {
  1427. //找到了数据
  1428. int fault = batteryMapper.selectCount(new LambdaQueryWrapper<Battery>()
  1429. .eq(Battery::getUpperHighVoltageStatus, 1)
  1430. .in(carModelList.size() > 0, Battery::getModel, carModelList)
  1431. .isNotNull(Battery::getVin)
  1432. .ne(Battery::getVin, "")
  1433. .in(!param.getPackModel().isEmpty(), Battery::getPackModelCode, param.getPackModel())
  1434. .in(!param.getCellModel().isEmpty(), Battery::getCellModelCode, param.getCellModel())
  1435. .eq(Battery::getIsDelete, 0));
  1436. bsVo.setCount(String.valueOf(fault));
  1437. bsVo.setYesterday(calculatePercent(BigDecimal.valueOf(fault), total));
  1438. } else {
  1439. int fault = batteryMapper.selectCount(new LambdaQueryWrapper<Battery>()
  1440. .eq(Battery::getUpperHighVoltageStatus, 1)
  1441. .in(!param.getPackModel().isEmpty(), Battery::getPackModelCode, param.getPackModel())
  1442. .in(!param.getCellModel().isEmpty(), Battery::getCellModelCode, param.getCellModel())
  1443. .eq(Battery::getIsDelete, 0)
  1444. .isNotNull(Battery::getVin)
  1445. .ne(Battery::getVin, "")
  1446. );
  1447. bsVo.setCount(DecimalFormat.getNumberInstance().format(fault));
  1448. bsVo.setYesterday(calculatePercent(BigDecimal.valueOf(fault), total));
  1449. }
  1450. }
  1451. /**
  1452. * 判断增加还是减少 同比 1-上升 2-下降 3-持平
  1453. *
  1454. * @param source 当前数据
  1455. * @param target 参照
  1456. * @return java.math.BigDecimal
  1457. */
  1458. private Integer setFlag(BigDecimal source, BigDecimal target) {
  1459. int result = 3;
  1460. int res = source.compareTo(target);
  1461. switch (res) {
  1462. case 1:
  1463. result = 1;
  1464. break;
  1465. case -1:
  1466. result = 2;
  1467. break;
  1468. default:
  1469. }
  1470. return result;
  1471. }
  1472. /**
  1473. * 计算对比率
  1474. *
  1475. * @param source 当前数据
  1476. * @param target 参照
  1477. * @return java.math.BigDecimal
  1478. */
  1479. private String calculateRate(BigDecimal source, BigDecimal target) {
  1480. if (source == null || target == null) {
  1481. return null;
  1482. }
  1483. if (target.equals(BigDecimal.ZERO)) {
  1484. return "0";
  1485. }
  1486. BigDecimal result = (source.subtract(target)).multiply(BigDecimal.valueOf(100))
  1487. .divide(target, 2, RoundingMode.HALF_UP);
  1488. return String.valueOf(result.abs());
  1489. }
  1490. /**
  1491. * 计算占比
  1492. *
  1493. * @param source 当前数据
  1494. * @param target 参照
  1495. * @return java.math.BigDecimal
  1496. */
  1497. private String calculatePercent(BigDecimal source, BigDecimal target) {
  1498. if (source == null || target == null) {
  1499. return null;
  1500. }
  1501. if (target.equals(BigDecimal.ZERO)) {
  1502. return "0";
  1503. }
  1504. BigDecimal result = source.multiply(BigDecimal.valueOf(100)).divide(target, 2, RoundingMode.HALF_UP);
  1505. return String.valueOf(result.abs());
  1506. }
  1507. private List<SysDictData> getDictDataByType(String dictType) {
  1508. List<SysDictData> dictDatas = DictUtils.getDictCache(dictType);
  1509. if (com.hz.common.utils.StringUtils.isNotEmpty(dictDatas)) {
  1510. return dictDatas;
  1511. }
  1512. dictDatas = dictDataMapper.selectDictDataByType(dictType);
  1513. if (com.hz.common.utils.StringUtils.isNotEmpty(dictDatas)) {
  1514. DictUtils.setDictCache(dictType, dictDatas);
  1515. return dictDatas;
  1516. }
  1517. return null;
  1518. }
  1519. /**
  1520. * 获取电池环状图信息
  1521. *
  1522. * @return com.hz.business.vo.BatteryCycleDataVo
  1523. */
  1524. @Override
  1525. public BatteryCycleDataVo getBatteryCyclePercentList() {
  1526. BatteryCycleDataVo vo = new BatteryCycleDataVo();
  1527. //电池类型占比
  1528. setBatteryTypePercentList(vo);
  1529. //车型占比
  1530. setCarModelPercentList(vo);
  1531. //SOH占比分布
  1532. setSohPercentList(vo);
  1533. //BMS版本号分布 TODO bms数据缺失 没有数据
  1534. return vo;
  1535. }
  1536. /**
  1537. * SOH占比
  1538. *
  1539. * @param vo 参数
  1540. */
  1541. private void setSohPercentList(BatteryCycleDataVo vo) {
  1542. List<BaseCycleChartVo> carModelPercentList = new ArrayList<>();
  1543. //soh最新信息
  1544. // List<Battery> sohDataList = batteryMapper.getSohData();
  1545. SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd");
  1546. SimpleDateFormat sdf2 = new SimpleDateFormat("yyyyMMddHHmmss");
  1547. SimpleDateFormat sdf3 = new SimpleDateFormat("yyyyMMdd020000");
  1548. String dateStr = sdf.format(new Date());
  1549. String dateStrs = sdf.format(new Date(System.currentTimeMillis() - 1000 * 60 * 60 * 24));
  1550. List<SohItemQuantity> sohDataList = sohMapper.selectList(new LambdaQueryWrapper<SohItemQuantity>()
  1551. .eq(SohItemQuantity::getDateInfo, Long.valueOf(sdf2.format(new Date())) > Long.valueOf(sdf3.format(new Date())) ? dateStr : dateStrs)
  1552. .eq(SohItemQuantity::getIsDelete, 0));
  1553. if (sohDataList.size() > 0) {
  1554. long total = sohDataList.stream().mapToLong(SohItemQuantity::getQuantity).sum();
  1555. sohDataList.forEach(o -> {
  1556. BaseCycleChartVo v = new BaseCycleChartVo();
  1557. v.setName(o.getItem());
  1558. v.setCount(o.getQuantity());
  1559. if (total == 0) {
  1560. v.setPercent(null);
  1561. } else {
  1562. v.setPercent(BigDecimal.valueOf(v.getCount() * 100).divide(BigDecimal.valueOf(total), 2, RoundingMode.HALF_UP));
  1563. }
  1564. carModelPercentList.add(v);
  1565. });
  1566. }
  1567. vo.setSohPercentList(carModelPercentList);
  1568. }
  1569. /**
  1570. * 车型占比
  1571. *
  1572. * @param vo 参数
  1573. */
  1574. private void setCarModelPercentList(BatteryCycleDataVo vo) {
  1575. List<BaseCycleChartVo> carModelPercentList = new ArrayList<>();
  1576. SimpleDateFormat sdf2 = new SimpleDateFormat("yyyyMMddHHmmss");
  1577. SimpleDateFormat sdf3 = new SimpleDateFormat("yyyyMMdd020000");
  1578. List<Battery> batteryList = null;
  1579. if (Long.parseLong(sdf2.format(new Date())) >= Long.parseLong(sdf3.format(new Date()))) {
  1580. batteryList = batteryMapper.getHzCarModelCount(1);
  1581. } else {
  1582. batteryList = batteryMapper.getHzCarModelCount(2);
  1583. }
  1584. List<HzCarModel> hzCarModelList = batteryModelMapper.getHzCarModelList();
  1585. batteryList.forEach(o -> {
  1586. hzCarModelList.forEach(v -> {
  1587. if (v.getSModelCode().contains(o.getItem())) {
  1588. o.setItem(v.getHzModelName());
  1589. }
  1590. });
  1591. });
  1592. Map<String, Long> collect = batteryList.stream().collect(Collectors.groupingBy(Battery::getItem, Collectors.summingLong(Battery::getElectricQuantity)));
  1593. if (!CollectionUtils.isEmpty(batteryList)) {
  1594. long total = batteryList.stream().mapToLong(Battery::getElectricQuantity).sum();
  1595. batteryList.forEach(o -> {
  1596. if (!StringUtils.isNotBlank(o.getItem())) {
  1597. o.setItem("未知车型");
  1598. }
  1599. });
  1600. collect.forEach((k, v) -> {
  1601. BaseCycleChartVo cycleChartVo = new BaseCycleChartVo();
  1602. cycleChartVo.setName(k);
  1603. cycleChartVo.setCount(v);
  1604. if (total == 0) {
  1605. cycleChartVo.setPercent(null);
  1606. } else {
  1607. cycleChartVo.setPercent(BigDecimal.valueOf(cycleChartVo.getCount() * 100).divide(BigDecimal.valueOf(total), 2, RoundingMode.HALF_UP));
  1608. }
  1609. carModelPercentList.add(cycleChartVo);
  1610. });
  1611. }
  1612. vo.setCarModelPercentList(carModelPercentList);
  1613. }
  1614. /**
  1615. * 电池类型占比
  1616. *
  1617. * @param vo 父类
  1618. */
  1619. private void setBatteryTypePercentList(BatteryCycleDataVo vo) {
  1620. // // "total":{"2101TZ" : 3, "2101TS" : 3, "2101TY" : 1}
  1621. // BatteryModelStatistics bms = batteryMapper.getBatteryTypePercent();
  1622. // JSONObject totalObject = JSONObject.parseObject(bms.getData()).getJSONObject("total");
  1623. // Iterator<String> iterator = totalObject.keySet().iterator();
  1624. // List<BaseCycleChartVo> batteryTypePercentList = new ArrayList<>();
  1625. // BigDecimal total = BigDecimal.ZERO;
  1626. // List<String> packCellList = new ArrayList<>();
  1627. // while (iterator.hasNext()) {
  1628. // String key = iterator.next();
  1629. // String val = totalObject.getString(key);
  1630. // BaseCycleChartVo bcVo = new BaseCycleChartVo();
  1631. // bcVo.setName(key);
  1632. // if (!packCellList.contains(key.replace("_", ""))) {
  1633. // packCellList.add(key.replace("_", ""));
  1634. // }
  1635. // bcVo.setCount(Long.parseLong(val));
  1636. // total = total.add(new BigDecimal(val));
  1637. // batteryTypePercentList.add(bcVo);
  1638. // }
  1639. //
  1640. // List<BatteryModel> modelByPackAndCellModel = batteryModelMapper.getModelByPackAndCellModel(packCellList);
  1641. // batteryTypePercentList.forEach(o -> {
  1642. // if (!CollectionUtils.isEmpty(modelByPackAndCellModel)) {
  1643. // modelByPackAndCellModel.forEach(m -> {
  1644. // if (o.getName().replace("_", "").equals(m.getPackModel() + m.getCellModel())) {
  1645. // o.setName(m.getBatteryModel());
  1646. // }
  1647. // });
  1648. // }
  1649. // });
  1650. SimpleDateFormat sdf2 = new SimpleDateFormat("yyyyMMddHHmmss");
  1651. SimpleDateFormat sdf3 = new SimpleDateFormat("yyyyMMdd020000");
  1652. List<BaseCycleChartVo> baseCycleChartVos = new ArrayList<>();
  1653. List<BatteryModelCountVo> maps = new ArrayList<>();
  1654. BigDecimal total = BigDecimal.ZERO;
  1655. if (Long.parseLong(sdf2.format(new Date())) >= Long.parseLong(sdf3.format(new Date()))) {
  1656. maps = batteryModelMapper.getBatteryModelLists(1);
  1657. } else {
  1658. maps = batteryModelMapper.getBatteryModelLists(2);
  1659. }
  1660. for (BatteryModelCountVo map : maps) {
  1661. total = total.add(new BigDecimal(map.getItem()));
  1662. }
  1663. maps.forEach(item -> {
  1664. BaseCycleChartVo baseCycleChartVo = new BaseCycleChartVo();
  1665. baseCycleChartVo.setName(item.getModel());
  1666. baseCycleChartVo.setCount(Math.round(item.getItem()));
  1667. baseCycleChartVos.add(baseCycleChartVo);
  1668. });
  1669. //计算百分比
  1670. if ((total.compareTo(BigDecimal.ZERO) != 0)) {
  1671. if (!CollectionUtils.isEmpty(baseCycleChartVos)) {
  1672. BigDecimal finalTotal = total;
  1673. baseCycleChartVos.forEach(o -> {
  1674. if (o.getCount() != null) {
  1675. o.setPercent(BigDecimal.valueOf(o.getCount() * 100).divide(finalTotal, 2, RoundingMode.HALF_UP));
  1676. }
  1677. });
  1678. }
  1679. }
  1680. vo.setBatteryTypePercentList(baseCycleChartVos);
  1681. }
  1682. /**
  1683. * 获取电池故障类型日趋势信息
  1684. *
  1685. * @return com.hz.business.base.BaseLineChartVo
  1686. */
  1687. @Override
  1688. public BaseLineChartVo getFaultTrend() {
  1689. return null;
  1690. }
  1691. /**
  1692. * 获取性能类实时指标信息
  1693. *
  1694. * @return com.hz.business.vo.BatteryCycleDataVo
  1695. */
  1696. @Override
  1697. public PerformanceRealTimeVo getPerformanceRealTime() {
  1698. return null;
  1699. }
  1700. /**
  1701. * 收藏电池
  1702. *
  1703. * @param dto 电池id
  1704. * @return java.lang.String
  1705. */
  1706. @Override
  1707. public String doCollectBattery(BatteryFolderDto dto) {
  1708. if (dto.getId() != null && dto.getIsDelete() != null && dto.getIsDelete() == 1) {
  1709. BatteryFolder batteryFolder = batteryFolderMapper.selectById(dto.getId());
  1710. batteryFolder.setIsDelete(1);
  1711. int insert = batteryFolderMapper.updateById(batteryFolder);
  1712. if (insert <= 0) {
  1713. return "操作失败";
  1714. }
  1715. } else {
  1716. String res = checkBatteryFolder(dto);
  1717. if (!res.equals(Constants.OK)) {
  1718. return res;
  1719. }
  1720. BatteryFolder batteryFolder = new BatteryFolder();
  1721. BeanUtils.copyProperties(dto, batteryFolder);
  1722. batteryFolder.setFolderType(0);
  1723. batteryFolder.setUserId(SecurityUtils.getUserId());
  1724. int insert = batteryFolderMapper.insert(batteryFolder);
  1725. if (insert <= 0) {
  1726. return "操作失败";
  1727. }
  1728. }
  1729. return Constants.OK;
  1730. }
  1731. /**
  1732. * 校验收藏参数
  1733. *
  1734. * @param dto
  1735. * @return java.lang.String
  1736. */
  1737. private String checkBatteryFolder(BatteryFolderDto dto) {
  1738. if (dto.getBatteryId() == null) {
  1739. return "缺失电池信息";
  1740. }
  1741. if (dto.getFolderId() == null) {
  1742. return "缺失收藏夹信息";
  1743. }
  1744. Battery battery = this.getById(dto.getBatteryId());
  1745. if (battery == null) {
  1746. return "电池信息不存在";
  1747. }
  1748. int count = folderMapper.selectCount(new LambdaQueryWrapper<Folder>()
  1749. .eq(Folder::getUserId, SecurityUtils.getUserId())
  1750. .eq(Folder::getId, dto.getFolderId())
  1751. .eq(Folder::getIsDelete, 0));
  1752. if (count <= 0) {
  1753. return "收藏夹不存在";
  1754. }
  1755. count = batteryFolderMapper.selectCount(new LambdaQueryWrapper<BatteryFolder>()
  1756. .eq(BatteryFolder::getUserId, SecurityUtils.getUserId())
  1757. .eq(BatteryFolder::getBatteryId, dto.getBatteryId())
  1758. .eq(BatteryFolder::getIsDelete, 0));
  1759. if (count > 0) {
  1760. return "已收藏,请勿重复收藏";
  1761. }
  1762. return Constants.OK;
  1763. }
  1764. /**
  1765. * 添加电池标签
  1766. *
  1767. * @param tagDto 标签类
  1768. * @return java.lang.String
  1769. */
  1770. @Override
  1771. @Transactional
  1772. public String batteryAddTag(TagDto tagDto) {
  1773. BatteryTag batteryTag = new BatteryTag();
  1774. BeanUtils.copyProperties(tagDto, batteryTag);
  1775. batteryTag.setTagType(0);
  1776. return batteryTagMapper.insert(batteryTag) > 0 ? Constants.OK : "添加标签失败";
  1777. }
  1778. /**
  1779. * 修改电池标签
  1780. *
  1781. * @param tagDto 标签类
  1782. * @return java.lang.String
  1783. */
  1784. @Override
  1785. public String batteryEditTag(TagDto tagDto) {
  1786. BatteryTag batteryTag = batteryTagMapper.selectById(tagDto.getId());
  1787. BeanUtils.copyProperties(tagDto, batteryTag);
  1788. batteryTag.setTagType(0);
  1789. return batteryTagMapper.updateById(batteryTag) > 0 ? Constants.OK : "操作失败";
  1790. }
  1791. /**
  1792. * 修改电池标签
  1793. *
  1794. * @param id 唯一标识
  1795. * @return java.lang.String
  1796. */
  1797. @Override
  1798. public String batteryDelTag(Long id) {
  1799. return batteryTagMapper.deleteById(id) > 0 ? Constants.OK : "修改标签失败";
  1800. }
  1801. /**
  1802. * 查询电池历史故障
  1803. *
  1804. * @param sn 电池编号
  1805. * @return java.util.List<com.hz.business.vo.BatteryTagVo>
  1806. */
  1807. @Override
  1808. public BatteryHistoryFaultVo getHistoryFault(String sn) {
  1809. return null;
  1810. }
  1811. /**
  1812. * 查询电池标签
  1813. *
  1814. * @param param 电池id
  1815. * @return java.util.List<com.hz.business.vo.BatteryTagVo>
  1816. */
  1817. @Override
  1818. public PageInfo<BatteryTagVo> batteryQueryTag(BatteryTagParam param) {
  1819. PageHelper.startPage(param.getPageIndex(), param.getPageSize());
  1820. List<BatteryTagVo> batteryTagVoList = new ArrayList<>();
  1821. List<BatteryTag> batteryTags = batteryTagMapper.selectList(new LambdaQueryWrapper<BatteryTag>()
  1822. .eq(BatteryTag::getBatteryId, param.getId())
  1823. .eq(BatteryTag::getTagType, 0)
  1824. .eq(BatteryTag::getIsDelete, 0)
  1825. .orderByDesc(BatteryTag::getUpdateTime));
  1826. PageInfo<BatteryTag> orderPageInfo = new PageInfo<>(batteryTags);
  1827. //准备翻译
  1828. List<Tag> tagList = new ArrayList<>();
  1829. List<TagChild> tagChildList = new ArrayList<>();
  1830. Set<Long> tagSet = new HashSet<>();
  1831. Set<Long> childTagSet = new HashSet<>();
  1832. orderPageInfo.getList().forEach(o -> {
  1833. if (o.getTagId() != null) {
  1834. tagSet.add(o.getTagId());
  1835. }
  1836. if (StringUtils.isNotBlank(o.getChildTagList())) {
  1837. String[] str = o.getChildTagList().split(",");
  1838. List<String> childList = Arrays.asList(str);
  1839. childList.forEach(m -> childTagSet.add(Long.parseLong(m)));
  1840. }
  1841. });
  1842. if (tagSet.size() > 0) {
  1843. LambdaQueryWrapper<Tag> wp = new LambdaQueryWrapper<>();
  1844. wp.in(Tag::getId, tagSet);
  1845. wp.eq(Tag::getIsDelete, 0);
  1846. wp.select(Tag::getId, Tag::getTagName);
  1847. tagList = tagMapper.selectList(wp);
  1848. }
  1849. if (childTagSet.size() > 0) {
  1850. LambdaQueryWrapper<TagChild> wp = new LambdaQueryWrapper<>();
  1851. wp.in(TagChild::getId, childTagSet);
  1852. wp.eq(TagChild::getIsDelete, 0);
  1853. wp.select(TagChild::getId, TagChild::getName, TagChild::getParentId);
  1854. tagChildList = tagChildMapper.selectList(wp);
  1855. }
  1856. List<Tag> finalTagList = tagList;
  1857. List<TagChild> finalTagChildList = tagChildList;
  1858. orderPageInfo.getList().forEach(o -> {
  1859. BatteryTagVo vo = new BatteryTagVo();
  1860. BeanUtils.copyProperties(o, vo);
  1861. if (finalTagList.size() > 0) {
  1862. finalTagList.forEach(m -> {
  1863. if (o.getTagId() != null && m.getId().equals(o.getTagId())) {
  1864. vo.setTagName(m.getTagName());
  1865. }
  1866. });
  1867. }
  1868. if (finalTagChildList.size() > 0) {
  1869. List<String> childList = new ArrayList<>();
  1870. finalTagChildList.forEach(m -> {
  1871. if (o.getChildTagList() != null && o.getTagId() != null
  1872. && m.getParentId() == o.getTagId().longValue()
  1873. && o.getChildTagList().contains(String.valueOf(m.getId()))) {
  1874. childList.add(m.getName());
  1875. }
  1876. });
  1877. vo.setChildTagTextList(String.join(",", childList));
  1878. }
  1879. batteryTagVoList.add(vo);
  1880. });
  1881. PageInfo<BatteryTagVo> result = new PageInfo<>(batteryTagVoList);
  1882. result.setTotal(orderPageInfo.getTotal());
  1883. return result;
  1884. }
  1885. /**
  1886. * 查询电池标签
  1887. *
  1888. * @param id 电池关联标签id
  1889. * @return BatteryTagVo
  1890. */
  1891. @Override
  1892. public BatteryTagVo getBatteryTagDetail(Long id) {
  1893. BatteryTagVo vo = new BatteryTagVo();
  1894. BatteryTag batteryTag = batteryTagMapper.selectById(id);
  1895. if (batteryTag != null) {
  1896. // BeanUtils.copyProperties(batteryTag, vo);
  1897. //准备翻译
  1898. Tag tag = new Tag();
  1899. List<TagChild> tagChildList = new ArrayList<>();
  1900. String tagName = "";
  1901. Set<Long> childTagSet = new HashSet<>();
  1902. if (batteryTag.getTagId() != null) {
  1903. tag = tagMapper.selectById(batteryTag.getTagId());
  1904. tagName = tag.getTagName();
  1905. }
  1906. if (batteryTag.getChildTagList() != null) {
  1907. String[] ids = batteryTag.getChildTagList().split(",");
  1908. for (String str : ids) {
  1909. childTagSet.add(Long.parseLong(str));
  1910. }
  1911. LambdaQueryWrapper<TagChild> wp = new LambdaQueryWrapper<>();
  1912. wp.in(TagChild::getId, childTagSet);
  1913. wp.eq(TagChild::getIsDelete, 0);
  1914. wp.select(TagChild::getId, TagChild::getName, TagChild::getParentId);
  1915. tagChildList = tagChildMapper.selectList(wp);
  1916. }
  1917. BeanUtils.copyProperties(batteryTag, vo);
  1918. if (StringUtils.isNotBlank(tagName)) {
  1919. vo.setTagName(tagName);
  1920. }
  1921. if (tagChildList.size() > 0) {
  1922. List<String> childList = new ArrayList<>();
  1923. tagChildList.forEach(m -> {
  1924. if (batteryTag.getChildTagList() != null
  1925. && batteryTag.getChildTagList().contains(String.valueOf(m.getId()))) {
  1926. childList.add(m.getName());
  1927. }
  1928. });
  1929. vo.setChildTagTextList(String.join(",", childList));
  1930. }
  1931. }
  1932. return vo;
  1933. }
  1934. /**
  1935. * 电池安全诊断
  1936. *
  1937. * @param sn 电池编号
  1938. * @return com.hz.business.vo.BatteryHistoryFaultVo
  1939. */
  1940. @Override
  1941. public BatteryHistoryFaultVo checkBattery(String sn) {
  1942. return null;
  1943. }
  1944. /**
  1945. * 电池列表准备工作
  1946. *
  1947. * @return java.util.List<Tag>
  1948. */
  1949. @Override
  1950. public List<Tag> getTagBattery(Integer type) {
  1951. return tagMapper.selectList(new LambdaQueryWrapper<Tag>()
  1952. .eq(Tag::getTagType, type)
  1953. .eq(Tag::getIsDelete, 0));
  1954. }
  1955. /**
  1956. * 电池概览
  1957. *
  1958. * @param param 参数
  1959. * @return java.util.List<com.hz.business.domain.Tag>
  1960. */
  1961. @Override
  1962. public BatteryOverviewVo getBatteryOverview(BatteryOverviewParam param) {
  1963. return null;
  1964. }
  1965. /**
  1966. * 我的故障收藏
  1967. *
  1968. * @param param 我的故障收藏
  1969. * @return java.util.List<com.hz.business.vo.BatteryFolderVo>
  1970. */
  1971. @Override
  1972. public PageInfo<BatteryFolderVo> getMyCollectData(BatteryFolderParam param) {
  1973. if (param.getFolderId() == null) {
  1974. return new PageInfo<>();
  1975. }
  1976. PageHelper.startPage(param.getPageIndex(), param.getPageSize());
  1977. List<BatteryFolderVo> batteryTagVoList = new ArrayList<>();
  1978. //查询
  1979. List<BatteryFolder> batteryFolders = batteryFolderMapper.selectList(new LambdaQueryWrapper<BatteryFolder>()
  1980. .ge(param.getStartTime() != null, BatteryFolder::getCreateTime, param.getStartTime() + " 00:00:00")
  1981. .le(param.getEndTime() != null, BatteryFolder::getCreateTime, param.getEndTime() + " 23:59:59")
  1982. .and(null != param.getSearchKey(), p -> p.like(BatteryFolder::getSn, param.getSearchKey())
  1983. .or().like(BatteryFolder::getVin, param.getSearchKey()))
  1984. .eq(BatteryFolder::getFolderType, 0)
  1985. .eq(BatteryFolder::getUserId, SecurityUtils.getUserId())
  1986. .eq(param.getFolderId() != null, BatteryFolder::getFolderId, param.getFolderId())
  1987. .eq(BatteryFolder::getIsDelete, 0));
  1988. PageInfo<BatteryFolder> orderPageInfo = new PageInfo<>(batteryFolders);
  1989. //准备翻译
  1990. orderPageInfo.getList().forEach(o -> {
  1991. BatteryFolderVo vo = new BatteryFolderVo();
  1992. BeanUtils.copyProperties(o, vo);
  1993. vo.setCollectionTime(o.getCreateTime());
  1994. batteryTagVoList.add(vo);
  1995. });
  1996. PageInfo<BatteryFolderVo> result = new PageInfo<>(batteryTagVoList);
  1997. result.setTotal(orderPageInfo.getTotal());
  1998. return result;
  1999. }
  2000. /**
  2001. * 获取SOH里程分布图
  2002. *
  2003. * @return java.util.List<com.hz.business.vo.SohMileageVo>
  2004. */
  2005. @Override
  2006. public List<SohMileageVo> getSohMileage() {
  2007. List<SohMileageVo> sohMileageVoList = new ArrayList<>();
  2008. SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd");
  2009. SimpleDateFormat sdf2 = new SimpleDateFormat("yyyyMMddHHmmss");
  2010. SimpleDateFormat sdf3 = new SimpleDateFormat("yyyyMMdd020000");
  2011. String dateStr = sdf.format(new Date());
  2012. String dateStrs = sdf.format(new Date(System.currentTimeMillis() - 1000 * 60 * 60 * 24));
  2013. List<SohOdo> sohOdoList = sohOdoMapper.selectList(new LambdaQueryWrapper<SohOdo>()
  2014. .eq(SohOdo::getDateInfo, Long.valueOf(sdf2.format(new Date())) > Long.valueOf(sdf3.format(new Date())) ? dateStr : dateStrs)
  2015. .eq(SohOdo::getIsDelete, 0));
  2016. //List<Map<String, Object>> mapList = batteryMapper.getSohMileageData();
  2017. if (!CollectionUtils.isEmpty(sohOdoList)) {
  2018. sohMileageVoList = JSONArray.parseArray(sohOdoList.get(0).getData(), SohMileageVo.class);
  2019. }
  2020. return sohMileageVoList;
  2021. }
  2022. /**
  2023. * 查询电池详细信息chart
  2024. *
  2025. * @param param 参数
  2026. * @return 电池信息
  2027. */
  2028. @Override
  2029. public BatteryDetailChartVo getDetailCharts(BatteryDetailChartParam param) throws ParseException, SQLException {
  2030. BatteryDetailChartVo vo = new BatteryDetailChartVo();
  2031. List<FlinkData> flinkDataList = getFlinkData(param);
  2032. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  2033. //时间轴
  2034. List<String> timeList = flinkDataList.stream().map(o -> sdf.format(o.getTime())).collect(Collectors.toList());
  2035. //最高电压
  2036. List<Float> maxVoltageList = new ArrayList<>();
  2037. /*List<Float> maxVoltageList = flinkDataList.stream()
  2038. .map(o -> (o.getCellMaxVol().equals(Constants.BATTERY_ERROR_CODE)) ? null : o.getCellMaxVol() / 1000)
  2039. .collect(Collectors.toList());*/
  2040. //最低电压
  2041. List<Float> minVoltageList = new ArrayList<>();
  2042. /*List<Float> minVoltageList = flinkDataList.stream()
  2043. .map(o -> (o.getCellMinVol().equals(Constants.BATTERY_ERROR_CODE)) ? null : o.getCellMinVol() / 1000)
  2044. .collect(Collectors.toList());*/
  2045. //最高温度
  2046. List<Float> cellMaxTempList = new ArrayList<>();
  2047. /*List<Float> cellMaxTempList = flinkDataList.stream()
  2048. .map(o -> (o.getCellMaxTemp().equals(Constants.BATTERY_ERROR_CODE)) ? null : o.getCellMaxTemp())
  2049. .collect(Collectors.toList());*/
  2050. //最低温度
  2051. List<Float> cellMinTempList = new ArrayList<>();
  2052. /*List<Float> cellMinTempList = flinkDataList.stream()
  2053. .map(o -> (o.getCellMinTemp().equals(Constants.BATTERY_ERROR_CODE)) ? null : o.getCellMinTemp())
  2054. .collect(Collectors.toList());*/
  2055. //总电压
  2056. List<Float> packVoltageList = flinkDataList.stream()
  2057. .map(o -> (o.getPackVoltage().equals(Constants.BATTERY_ERROR_CODE)) ? null : o.getPackVoltage())
  2058. .collect(Collectors.toList());
  2059. //总电流
  2060. List<Float> packCrntList = flinkDataList.stream()
  2061. .map(o -> (o.getPackCrnt().equals(Constants.BATTERY_ERROR_CODE)) ? null : o.getPackCrnt())
  2062. .collect(Collectors.toList());
  2063. //SOC
  2064. List<Float> packSocList = flinkDataList.stream()
  2065. .map(o -> (o.getPackSoc().equals(Constants.BATTERY_ERROR_CODE)) ? null : o.getPackSoc())
  2066. .collect(Collectors.toList());
  2067. //绝缘电阻
  2068. List<Float> insulationRssList = flinkDataList.stream()
  2069. .map(o -> (o.getInsulationRss().equals(Constants.BATTERY_ERROR_CODE)) ? null : o.getInsulationRss())
  2070. .collect(Collectors.toList());
  2071. //压差
  2072. List<Float> voltageDifferenceList = new ArrayList<>();
  2073. /*List<Float> voltageDifferenceList = flinkDataList.stream()
  2074. .map(p -> p.getBmsCellVoltDiff().floatValue())
  2075. .collect(Collectors.toList());*/
  2076. //车速
  2077. List<Float> vehSpdList = flinkDataList.stream()
  2078. .map(o -> (o.getVehSpd() == null || o.getVehSpd().equals(Constants.BATTERY_ERROR_CODE)) ? null : o.getVehSpd())
  2079. .collect(Collectors.toList());
  2080. //单体电压
  2081. List<String> voltDiffList = flinkDataList.stream()
  2082. .map(FlinkData::getCellVoltage)
  2083. .collect(Collectors.toList());
  2084. //单体温度
  2085. List<String> batTempDiffList = flinkDataList.stream()
  2086. .map(o -> (o.getCellTemp().replaceAll(String.valueOf(Constants.BATTERY_ERROR_CODE), "null")))
  2087. .collect(Collectors.toList());
  2088. //if (maxVoltageList.size() <= 0 && minVoltageList.size() <= 0 && voltageDifferenceList.size() <= 0 && voltDiffList.size() > 0) {
  2089. if (voltDiffList.size() > 0) {
  2090. for (String s : voltDiffList) {
  2091. List<String> listTemp = Arrays.asList(s.split(","));
  2092. List<String> list = listTemp.stream().filter(StringUtils::isNotBlank).collect(Collectors.toList());
  2093. if (list.size() > 0) {
  2094. String max = list.stream().max(Comparator.comparing(Float::parseFloat)).get();
  2095. String min = list.stream().min(Comparator.comparing(Float::parseFloat)).get();
  2096. Float maxFloat = Float.parseFloat(max);
  2097. Float minFloat = Float.parseFloat(min);
  2098. maxVoltageList.add(maxFloat);
  2099. minVoltageList.add(minFloat);
  2100. voltageDifferenceList.add(Float.valueOf(String.format("%.2f", (maxFloat - minFloat) * 1000)));
  2101. }
  2102. }
  2103. }
  2104. //if (cellMaxTempList.size() <= 0 && cellMinTempList.size() <= 0 && batTempDiffList.size() > 0) {
  2105. if (batTempDiffList.size() > 0) {
  2106. for (String s : batTempDiffList) {
  2107. List<String> listTemp = Arrays.asList(s.split(","));
  2108. List<String> list = listTemp.stream().filter(StringUtils::isNotBlank).collect(Collectors.toList());
  2109. if (list.size() > 0) {
  2110. String max = list.stream().max(Comparator.comparing(Float::parseFloat)).get();
  2111. String min = list.stream().min(Comparator.comparing(Float::parseFloat)).get();
  2112. Float maxFloat = Float.parseFloat(max);
  2113. Float minFloat = Float.parseFloat(min);
  2114. cellMaxTempList.add(maxFloat);
  2115. cellMinTempList.add(minFloat);
  2116. }
  2117. }
  2118. }
  2119. List<List<Float>> bmsCellVoltDiffList = new ArrayList<>();
  2120. if (voltDiffList.size() > 0) {
  2121. for (int i = 0; i < voltDiffList.size(); i++) {
  2122. if (StringUtils.isNotBlank(voltDiffList.get(i))) {
  2123. String[] split = voltDiffList.get(i).trim().split(",");
  2124. int len = split.length;
  2125. for (int j = 0; j < len; j++) {
  2126. if (bmsCellVoltDiffList.size() <= j) {
  2127. bmsCellVoltDiffList.add(new ArrayList<>());
  2128. }
  2129. float value = Float.parseFloat(StringUtils.isNotBlank(split[j]) ? split[j] : "0");
  2130. bmsCellVoltDiffList.get(j).add((value == Constants.BATTERY_ERROR_CODE) ? null : value);
  2131. }
  2132. }
  2133. }
  2134. }
  2135. List<List<Float>> bmsBatTempDiffList = new ArrayList<>();
  2136. if (batTempDiffList.size() > 0) {
  2137. for (int i = 0; i < batTempDiffList.size(); i++) {
  2138. if (StringUtils.isNotBlank(batTempDiffList.get(i))) {
  2139. String[] split = batTempDiffList.get(i).trim().split(",");
  2140. int len = split.length;
  2141. for (int j = 0; j < len; j++) {
  2142. if (bmsBatTempDiffList.size() <= j) {
  2143. bmsBatTempDiffList.add(new ArrayList<>());
  2144. }
  2145. float value = Float.parseFloat(StringUtils.isNotBlank(split[j]) ? split[j] : "0");
  2146. bmsBatTempDiffList.get(j).add((value == Constants.BATTERY_ERROR_CODE) ? null : value);
  2147. }
  2148. }
  2149. }
  2150. }
  2151. //补充空值
  2152. int maxVoltageSize = 0;
  2153. for (List<Float> list : bmsCellVoltDiffList) {
  2154. if (list.size() > maxVoltageSize) {
  2155. maxVoltageSize = list.size();
  2156. }
  2157. }
  2158. for (List<Float> list : bmsCellVoltDiffList) {
  2159. while (list.size() < maxVoltageSize) {
  2160. list.add(null);
  2161. }
  2162. }
  2163. int maxTemSize = 0;
  2164. for (List<Float> list : bmsBatTempDiffList) {
  2165. if (list.size() > maxTemSize) {
  2166. maxTemSize = list.size();
  2167. }
  2168. }
  2169. for (List<Float> list : bmsBatTempDiffList) {
  2170. while (list.size() < maxTemSize) {
  2171. list.add(null);
  2172. }
  2173. }
  2174. vo.setTimeList(timeList);
  2175. vo.setMaxVoltageList(maxVoltageList);
  2176. vo.setMinVoltageList(minVoltageList);
  2177. vo.setCellMaxTempList(cellMaxTempList);
  2178. vo.setCellMinTempList(cellMinTempList);
  2179. vo.setPackVoltageList(packVoltageList);
  2180. vo.setPackCrntList(packCrntList);
  2181. vo.setPackSocList(packSocList);
  2182. vo.setInsulationRssList(insulationRssList);
  2183. vo.setVoltageDifferenceList(voltageDifferenceList);
  2184. vo.setBmsCellVoltDiffList(bmsCellVoltDiffList);
  2185. vo.setBmsBatTempDiffList(bmsBatTempDiffList);
  2186. vo.setVehSpdList(vehSpdList);
  2187. return vo;
  2188. }
  2189. /**
  2190. * 获取flink数据
  2191. *
  2192. * @param param 参数
  2193. * @return java.util.List<com.hz.business.domain.FlinkData>
  2194. */
  2195. private List<FlinkData> getFlinkData(BatteryDetailChartParam param) throws ParseException, SQLException {
  2196. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  2197. StringBuilder builder = new StringBuilder();
  2198. //SnKey =sn的hashCode 绝对值 + sn + long最大值减去时间戳
  2199. String snKey = Math.abs(param.getSn().hashCode()) + "_" + param.getSn();
  2200. long timeStamp = Long.MAX_VALUE;
  2201. // CellMaxVol,CellMinVol,CellMaxTemp,CellMinTemp,BmsCellVoltDiff,VehSpd
  2202. builder.append("select SN,Time,PackVoltage,PackCrnt,PackSoc,CellVoltage,CellTemp,InsulationRss,Info from ")
  2203. .append(database + "." + tableName).append(" where ");
  2204. if (param.getStartTime() == null && param.getEndTime() == null) {
  2205. long start = System.currentTimeMillis() - 1000 * 24 * 60 * 60;
  2206. long end = System.currentTimeMillis();
  2207. String snKeyStart = snKey + "_" + (timeStamp - start);
  2208. builder.append(" SnKey<='").append(snKeyStart).append("'");
  2209. String snKeyEnd = snKey + "_" + (timeStamp - end);
  2210. builder.append(" and SnKey>='").append(snKeyEnd).append("'");
  2211. } else {
  2212. if (param.getStartTime() != null) {
  2213. long start = sdf.parse(param.getStartTime()).getTime();
  2214. String snKeyStart = snKey + "_" + (timeStamp - start);
  2215. builder.append(" SnKey<='").append(snKeyStart).append("'");
  2216. }
  2217. if (param.getEndTime() != null) {
  2218. long end = sdf.parse(param.getEndTime()).getTime();
  2219. String snKeyEnd = snKey + "_" + (timeStamp - end);
  2220. if (param.getStartTime() != null) {
  2221. builder.append(" and ");
  2222. }
  2223. builder.append(" SnKey>='").append(snKeyEnd).append("'");
  2224. }
  2225. }
  2226. builder.append(" limit 2000");
  2227. List<FlinkData> flinkDataList = new ArrayList<>();
  2228. Connection conn = null;
  2229. PreparedStatement psSelect = null;
  2230. try {
  2231. conn = PhoenixUtils.getConnection();
  2232. //psSelect = conn.prepareStatement(" use " + database + " ");
  2233. //psSelect.setFetchSize(1000);
  2234. //psSelect.execute();
  2235. //psSelect.close();
  2236. psSelect = conn.prepareStatement(builder.toString());
  2237. ResultSet resultSet = psSelect.executeQuery();
  2238. flinkDataList = convertList(resultSet);
  2239. } catch (Exception e) {
  2240. } finally {
  2241. if (psSelect != null) {
  2242. psSelect.close();
  2243. }
  2244. if (conn != null) {
  2245. conn.close();
  2246. }
  2247. }
  2248. List<FlinkData> flinkList = flinkDataList.stream()
  2249. .sorted(Comparator.comparing(FlinkData::getTime))
  2250. .collect(Collectors.toList());
  2251. log.info("OK:{}", sdf.format(new Date()));
  2252. return flinkList;
  2253. }
  2254. /**
  2255. * 获取上个月份的最后一天
  2256. *
  2257. * @return
  2258. */
  2259. public static Date lastMonthEndDay() {
  2260. Calendar instance = Calendar.getInstance();
  2261. // 调整日期到当月第一天
  2262. instance.set(Calendar.DAY_OF_MONTH, 1);
  2263. // 再把日期减去一天即可
  2264. instance.add(Calendar.DAY_OF_MONTH, -1);
  2265. return instance.getTime();
  2266. }
  2267. /**
  2268. * 电池总量
  2269. *
  2270. * @param bsVo 实体类
  2271. */
  2272. private void setSoh(TodayCompareOtherVo bsVo, BatteryOverviewParam param, BigDecimal total, List<String> carModelList) {
  2273. bsVo.setCount("0");
  2274. bsVo.setYesterday("0");
  2275. bsVo.setYesterdayFlag(null);
  2276. bsVo.setWeek("0");
  2277. bsVo.setWeekFlag(null);
  2278. bsVo.setMonth("0");
  2279. bsVo.setMonthFlag(null);
  2280. //车型数据
  2281. //当日 、上周、上月 字符串
  2282. SimpleDateFormat sf = new SimpleDateFormat("yyyy-MM-dd");
  2283. String today = sf.format(new Date(System.currentTimeMillis() - 1000 * 60 * 60 * 24)) + " 23:59:59";
  2284. //找到了数据
  2285. SimpleDateFormat sdf = new SimpleDateFormat("yyyyMM");
  2286. String partNow = "p" + sdf.format(new Date());
  2287. String partBefore = "p" + sdf.format(lastMonthEndDay());
  2288. String partitions = partNow + "," + partBefore;
  2289. String carModel = carModelList.size() > 0 ? "'" + String.join("','", carModelList) + "'" : null;
  2290. int todayNum = batteryMapper.getSohCount(carModel, today, partitions, param.getPackModel(), param.getPackModel());
  2291. BigDecimal todayCount = new BigDecimal(0);
  2292. if (total.compareTo(new BigDecimal(0)) != 0) {
  2293. todayCount = total.subtract(BigDecimal.valueOf(todayNum));
  2294. }
  2295. //当日数据提前准备
  2296. bsVo.setCount(DecimalFormat.getNumberInstance().format(todayCount));
  2297. bsVo.setYesterday(calculatePercent(todayCount, total));
  2298. }
  2299. /**
  2300. * 电池健康度诊断--健康度趋势图
  2301. *
  2302. * @param param 参数
  2303. * @return com.hz.business.base.DateValueVo
  2304. */
  2305. @Override
  2306. public BatteryHealthVo getHealthResult(BatteryHealthParam param) throws ParseException {
  2307. BatteryHealthVo vo = new BatteryHealthVo();
  2308. SimpleDateFormat sf = new SimpleDateFormat("yyyy-MM-dd");
  2309. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  2310. long stamp = System.currentTimeMillis();
  2311. String begin = sf.format(stamp) + " 00:00:00";
  2312. String end = sf.format(stamp) + " 23:59:59";
  2313. //计算查询时间内的分区的范围
  2314. if (param.getStartTime() == null && param.getEndTime() == null) {
  2315. Date yesDate = new Date(stamp - 1000 * 60 * 60 * 24 * 7);
  2316. begin = sf.format(yesDate) + " 00:00:00";
  2317. end = sf.format(stamp) + " 23:59:59";
  2318. } else {
  2319. begin = sf.format(sdf.parse(param.getStartTime() + " 00:00:00"));
  2320. end = sf.format(sdf.parse(param.getEndTime() + " 23:59:59"));
  2321. }
  2322. //获取时间段内的分区
  2323. String partitions = getPartitions(begin, end);
  2324. HealthScore srVo = batteryMapper.getCurrentHealthScore(param.getSn());
  2325. //当前健康度评分
  2326. if (srVo != null && srVo.getHealthState() != null) {
  2327. //当前健康度评分
  2328. vo.setCurrentHealthScore(srVo.getHealthState());
  2329. //性能诊断
  2330. vo.setDiagnosticResult(srVo.getReason());
  2331. }
  2332. List<HealthScore> healthScoreList = batteryMapper.getHistoryHealthScore(param.getSn(), begin, end, partitions);
  2333. List<DateValueVo> healthScoreOverview = new ArrayList<>();
  2334. if (!CollectionUtils.isEmpty(healthScoreList)) {
  2335. healthScoreList.forEach(o -> {
  2336. DateValueVo v = new DateValueVo();
  2337. v.setXValue(o.getTime());
  2338. v.setYValue(o.getHealthState());
  2339. healthScoreOverview.add(v);
  2340. });
  2341. }
  2342. //健康度评分趋势图
  2343. vo.setHealthScoreOverview(healthScoreOverview);
  2344. //诊断结果
  2345. List<DiagnosticVo> diagnosticVoList = setDiagnosticVoList(param.getSn());
  2346. List<DiagnosticVo> collect = diagnosticVoList.stream().sorted(Comparator.comparing(DiagnosticVo::getCollectionTime).reversed()).collect(Collectors.toList());
  2347. vo.setDiagnosticVoList(collect);
  2348. //SOH趋势图
  2349. setSohLineChartVo(vo, param.getSn(), partitions, begin, end);
  2350. //内阻一致性
  2351. setResistanceChartVoList(vo, param.getSn(), partitions, begin, end);
  2352. //SOH一致性
  2353. setSohDiffVoList(vo, param.getSn(), partitions, begin, end);
  2354. //SOC一致性
  2355. setSocChartVoList(vo, param.getSn(), partitions, begin, end);
  2356. //温度一致性
  2357. setTemperatureChartVoList(vo, param.getSn(), partitions, begin, end);
  2358. //电池健康度衰减趋势
  2359. setHealthReduceOverview(vo, param.getSn());
  2360. return vo;
  2361. }
  2362. private void setHealthReduceOverview(BatteryHealthVo vo, String sn) {
  2363. //横轴公里数列表
  2364. List<BigDecimal> odoList = new ArrayList<>();
  2365. //当前电池健康度
  2366. List<Battery> singleList = batteryMapper.getHistoryHealthScoreReduce(sn);
  2367. //odo排序
  2368. singleList = singleList.stream().sorted(Comparator.comparing(Battery::getTimeSt)).collect(Collectors.toList());
  2369. for (int i = 0; i < singleList.size(); i++) {
  2370. if (i > 1) {
  2371. BigDecimal b1 = BigDecimal.valueOf(singleList.get(i).getOdo() - singleList.get(i - 1).getOdo());
  2372. BigDecimal b2 = BigDecimal.valueOf(Double.parseDouble(String.valueOf(singleList.get(i).getTimeSt().getTime() / (1000 * 60 * 60 * 24) - singleList.get(i - 1).getTimeSt().getTime() / (1000 * 60 * 60 * 24))));
  2373. if (b1.compareTo(new BigDecimal(0)) != 0 && b2.compareTo(new BigDecimal(0)) != 0) {
  2374. if (b1.divide(b2, 1, RoundingMode.UP).compareTo(new BigDecimal("400.0")) > 0) {
  2375. singleList.remove(i);
  2376. i--;
  2377. }
  2378. }
  2379. }
  2380. }
  2381. //同种车型电池soh和odo信息
  2382. StringBuilder builder = new StringBuilder();
  2383. for (int i = 1; i < 60; i++) {
  2384. builder.append(" WHEN odo >= ").append(5000 * i).append(" AND odo < ").append(5000 * (i + 1))
  2385. .append(" THEN '").append(5000 * i).append("~").append(5000 * (i + 1)).append("KM").append("' \n ");
  2386. }
  2387. List<Battery> modelList = batteryMapper.getCarModelSoh(sn, builder.toString());
  2388. //odo排序
  2389. modelList = modelList.stream().sorted(Comparator.comparing(Battery::getOdo)).collect(Collectors.toList());
  2390. for (int i = 0; i < modelList.size(); i++) {
  2391. if (i > 1) {
  2392. if (modelList.get(i).getOdo() - modelList.get(i - 1).getOdo() > 50000 && modelList.get(i).getSoh() - modelList.get(i - 1).getSoh() > 5) {
  2393. if (modelList.get(i).getSoh() - modelList.get(i - 1).getSoh() > 5) {
  2394. modelList.remove(i);
  2395. i--;
  2396. }
  2397. }
  2398. }
  2399. }
  2400. // if(battery!=null){
  2401. // modelList.remove(battery);
  2402. // }
  2403. List<BigDecimal> allBatteryList = new ArrayList<>();
  2404. if (singleList.size() > 0) {
  2405. singleList.forEach(o -> {
  2406. allBatteryList.add(new BigDecimal(o.getOdo()));
  2407. });
  2408. List<BigDecimal> list = singleList.stream().map(o -> new BigDecimal(o.getOdo()).setScale(1, RoundingMode.HALF_UP)).collect(Collectors.toList());
  2409. if (list.size() > 0) {
  2410. //添加横轴数据
  2411. odoList.addAll(list);
  2412. }
  2413. }
  2414. if (modelList.size() > 0) {
  2415. modelList.forEach(o -> {
  2416. allBatteryList.add(new BigDecimal(o.getOdo()));
  2417. });
  2418. List<BigDecimal> list1 = modelList.stream().map(o -> new BigDecimal(o.getOdo()).setScale(1, RoundingMode.HALF_UP)).collect(Collectors.toList());
  2419. if (list1.size() > 0) {
  2420. //添加横轴数据
  2421. odoList.addAll(list1);
  2422. }
  2423. }
  2424. //排序
  2425. Collections.sort(odoList);
  2426. //排序
  2427. Collections.sort(allBatteryList);
  2428. //返回值装配
  2429. BaseLineChartOdoVo baseLineChartOdoVo = new BaseLineChartOdoVo();
  2430. //横轴
  2431. baseLineChartOdoVo.setHorizontalAxis(odoList);
  2432. //纵轴
  2433. List<KindFloatValueListVo> kindList = new ArrayList<>();
  2434. //本车电池soh
  2435. KindFloatValueListVo kindValueVo = new KindFloatValueListVo();
  2436. kindValueVo.setName("电池soh");
  2437. //本车型电池平均soh
  2438. KindFloatValueListVo kindValueVo1 = new KindFloatValueListVo();
  2439. kindValueVo1.setName("车型电池平均soh");
  2440. List<BigDecimal> singleSohList = new ArrayList<>();
  2441. List<BigDecimal> modelSohList = new ArrayList<>();
  2442. if (allBatteryList.size() > 0) {
  2443. for (BigDecimal o : allBatteryList) {
  2444. BigDecimal singleSoh = null;
  2445. for (Battery m : singleList) {
  2446. if (o.equals(new BigDecimal(m.getOdo()))) {
  2447. singleSoh = new BigDecimal(m.getSoh()).setScale(2, RoundingMode.HALF_UP);
  2448. break;
  2449. }
  2450. }
  2451. singleSohList.add(singleSoh);
  2452. }
  2453. for (BigDecimal o : allBatteryList) {
  2454. BigDecimal modelSoh = null;
  2455. for (Battery m : modelList) {
  2456. if (o.equals(new BigDecimal(m.getOdo()))) {
  2457. modelSoh = new BigDecimal(m.getSoh()).setScale(2, RoundingMode.HALF_UP);
  2458. break;
  2459. }
  2460. }
  2461. modelSohList.add(modelSoh);
  2462. }
  2463. }
  2464. kindValueVo.setValue(singleSohList);
  2465. kindList.add(kindValueVo);
  2466. kindValueVo1.setValue(modelSohList);
  2467. kindList.add(kindValueVo1);
  2468. baseLineChartOdoVo.setKindList(kindList);
  2469. //返回给前端
  2470. vo.setHealthReduceOverview(baseLineChartOdoVo);
  2471. }
  2472. private void setSohLineChartVo(BatteryHealthVo vo, String sn, String partitions, String begin, String end) {
  2473. BaseLineFloatChartVo v = new BaseLineFloatChartVo();
  2474. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  2475. List<HealthScore> sohDiffList = batteryMapper.getSohLineChartVo(sn, begin, end, partitions);
  2476. if (!CollectionUtils.isEmpty(sohDiffList)) {
  2477. //时间轴
  2478. List<String> timeList = sohDiffList.stream().map(o -> sdf.format(o.getCollectionTime())).collect(Collectors.toList());
  2479. //soh
  2480. String[] split = sohDiffList.get(0).getCoreListStr().split(",");
  2481. int len = split.length;
  2482. Map<String, List<BigDecimal>> map = new HashMap<String, List<BigDecimal>>();
  2483. for (int i = 0; i < len; i++) {
  2484. map.put("cell-" + i, new ArrayList<BigDecimal>());
  2485. }
  2486. for (int i = 0; i < sohDiffList.size(); i++) {
  2487. List<String> list = Arrays.asList(sohDiffList.get(i).getCoreListStr().replaceAll("[\\[|\\]]", "").split(","));
  2488. if (!CollectionUtils.isEmpty(list)) {
  2489. for (int j = 0; j < list.size(); j++) {
  2490. map.get("cell-" + j).add(list.get(j) == null ? BigDecimal.ZERO : new BigDecimal(list.get(j).replace(" ", "")));
  2491. }
  2492. }
  2493. }
  2494. List<KindFloatValueListVo> valueListVos = new ArrayList<>();
  2495. if (map.keySet().size() > 0) {
  2496. for (int i = 0; i < map.size(); i++) {
  2497. int finalIndex = i;
  2498. map.forEach((key, value) -> {
  2499. if (key.equals("cell-" + finalIndex)) {
  2500. KindFloatValueListVo vk = new KindFloatValueListVo();
  2501. vk.setName(key);
  2502. vk.setValue(value);
  2503. valueListVos.add(vk);
  2504. }
  2505. });
  2506. }
  2507. }
  2508. v.setTimeAxis(timeList);
  2509. v.setKindList(valueListVos);
  2510. }
  2511. vo.setSohLineChartVo(v);
  2512. }
  2513. /**
  2514. * 获取分区段
  2515. *
  2516. * @param begin 开始日期
  2517. * @param end 截止日期
  2518. * @return java.lang.String
  2519. */
  2520. private String getPartitions(String begin, String end) {
  2521. //2020-01-01 2020-03-25 ===》 p202001,p202001p202002,p202003
  2522. String partitions = "";
  2523. List<String> tempList = new ArrayList<>();
  2524. //填充时间段内的所有分区
  2525. Set<String> months = DateUtils.getMonths(begin, end);
  2526. if (!CollectionUtils.isEmpty(months)) {
  2527. months.forEach(o -> {
  2528. tempList.add("p" + o);
  2529. });
  2530. partitions = String.join(",", tempList);
  2531. }
  2532. return partitions;
  2533. }
  2534. /**
  2535. * 内阻一致性
  2536. *
  2537. * @param vo 电池信息对象
  2538. * @param sn 电池编号
  2539. * @param partitions 分区列表
  2540. * @param begin 开始时间
  2541. * @param end 截止时间
  2542. */
  2543. private void setResistanceChartVoList(BatteryHealthVo vo, String sn, String partitions, String begin, String end) {
  2544. List<HealthScore> healthScoreList = batteryMapper.setResistanceChartVoList(sn, begin, end, partitions);
  2545. List<DateValueVo> sohDiffList = new ArrayList<>();
  2546. if (!CollectionUtils.isEmpty(healthScoreList)) {
  2547. healthScoreList.forEach(o -> {
  2548. DateValueVo v = new DateValueVo();
  2549. v.setXValue(o.getCollectionTime());
  2550. v.setYValue(o.getResult());
  2551. sohDiffList.add(v);
  2552. });
  2553. }
  2554. vo.setResistanceChartVoList(sohDiffList);
  2555. }
  2556. /**
  2557. * soh一致性
  2558. *
  2559. * @param vo 电池信息对象
  2560. * @param sn 电池编号
  2561. * @param partitions 分区列表
  2562. * @param begin 开始时间
  2563. * @param end 截止时间
  2564. */
  2565. private void setSohDiffVoList(BatteryHealthVo vo, String sn, String partitions, String begin, String end) {
  2566. List<HealthScore> healthScoreList = batteryMapper.setSohDiffVoList(sn, begin, end, partitions);
  2567. List<DateValueVo> sohDiffList = new ArrayList<>();
  2568. if (!CollectionUtils.isEmpty(healthScoreList)) {
  2569. healthScoreList.forEach(o -> {
  2570. DateValueVo v = new DateValueVo();
  2571. v.setXValue(o.getCollectionTime());
  2572. v.setYValue(o.getResult());
  2573. sohDiffList.add(v);
  2574. });
  2575. }
  2576. vo.setSohChartVoList(sohDiffList);
  2577. }
  2578. /**
  2579. * soc一致性
  2580. *
  2581. * @param vo 电池信息对象
  2582. * @param sn 电池编号
  2583. * @param partitions 分区列表
  2584. * @param begin 开始时间
  2585. * @param end 截止时间
  2586. */
  2587. private void setSocChartVoList(BatteryHealthVo vo, String sn, String partitions, String begin, String end) {
  2588. List<HealthScore> healthScoreList = batteryMapper.setSocChartVoList(sn, begin, end, partitions);
  2589. List<DateValueVo> sohDiffList = new ArrayList<>();
  2590. if (!CollectionUtils.isEmpty(healthScoreList)) {
  2591. healthScoreList.forEach(o -> {
  2592. DateValueVo v = new DateValueVo();
  2593. v.setXValue(o.getCollectionTime());
  2594. v.setYValue(o.getResult());
  2595. sohDiffList.add(v);
  2596. });
  2597. }
  2598. vo.setSocChartVoList(sohDiffList);
  2599. }
  2600. /**
  2601. * 温度一致性
  2602. *
  2603. * @param vo 电池信息对象
  2604. * @param sn 电池编号
  2605. * @param partitions 分区列表
  2606. * @param begin 开始时间
  2607. * @param end 截止时间
  2608. */
  2609. private void setTemperatureChartVoList(BatteryHealthVo vo, String sn, String partitions, String begin, String end) {
  2610. List<HealthScore> healthScoreList = batteryMapper.setTemperatureChartVoList(sn, begin, end, partitions);
  2611. List<DateValueVo> sohDiffList = new ArrayList<>();
  2612. if (!CollectionUtils.isEmpty(healthScoreList)) {
  2613. healthScoreList.forEach(o -> {
  2614. DateValueVo v = new DateValueVo();
  2615. v.setXValue(o.getCollectionTime());
  2616. v.setYValue(o.getResult());
  2617. sohDiffList.add(v);
  2618. });
  2619. }
  2620. vo.setTemperatureChartVoList(sohDiffList);
  2621. }
  2622. /**
  2623. * 获取一致性数据
  2624. *
  2625. * @return java.util.List<com.hz.business.vo.DiagnosticVo>
  2626. */
  2627. private List<DiagnosticVo> setDiagnosticVoList(String sn) {
  2628. SimpleDateFormat sdf = new SimpleDateFormat("yyyyMM");
  2629. String partNow = "p" + sdf.format(new Date());
  2630. String partBefore = "p" + sdf.format(lastMonthEndDay());
  2631. List<DiagnosticVo> diagnosticVoList = new ArrayList<>();
  2632. //algo_soh —— cellsoh_diff soh
  2633. List<HealthScore> sohDiffList = batteryMapper.getSohDiff(sn, null, null, partNow, partBefore);
  2634. if (!CollectionUtils.isEmpty(sohDiffList)) {
  2635. DiagnosticVo sohDiff = new DiagnosticVo();
  2636. sohDiff.setProject(UniformityEnum.SOH_DIFF.message());
  2637. sohDiff.setReferenceValue("0~10%");
  2638. sohDiff.setOrder(1);
  2639. sohDiff.setResult(String.valueOf(sohDiffList.get(0).getResult() + "%"));
  2640. sohDiff.setCollectionTime(sohDiffList.get(0).getCollectionTime());
  2641. diagnosticVoList.add(sohDiff);
  2642. }
  2643. List<HealthScore> sohList = batteryMapper.getSoh(sn, null, null, partNow, partBefore);
  2644. if (!CollectionUtils.isEmpty(sohList)) {
  2645. DiagnosticVo soh = new DiagnosticVo();
  2646. soh.setResult(String.valueOf(sohList.get(0).getResult() + "%"));
  2647. soh.setCollectionTime(sohList.get(0).getCollectionTime());
  2648. soh.setProject(UniformityEnum.SOH.message());
  2649. soh.setReferenceValue("80%~100%");
  2650. soh.setOrder(0);
  2651. diagnosticVoList.add(soh);
  2652. }
  2653. //algo_mid_sorout——sor_diff
  2654. List<HealthScore> sorList = batteryMapper.getSorDiff(sn, null, null, partNow, partBefore);
  2655. if (!CollectionUtils.isEmpty(sorList)) {
  2656. DiagnosticVo sor = new DiagnosticVo();
  2657. sor.setResult(String.valueOf(sorList.get(0).getResult() + "mΩ"));
  2658. sor.setCollectionTime(sorList.get(0).getCollectionTime());
  2659. sor.setProject(UniformityEnum.SOR.message());
  2660. sor.setReferenceValue("0~2mΩ");
  2661. sor.setOrder(2);
  2662. diagnosticVoList.add(sor);
  2663. }
  2664. //algo_mid_uniform_result——cellsoc_diff celltemp_diff
  2665. List<HealthScore> socList = batteryMapper.getSocDiff(sn, null, null, partNow, partBefore);
  2666. if (!CollectionUtils.isEmpty(socList)) {
  2667. DiagnosticVo soc = new DiagnosticVo();
  2668. soc.setResult(String.valueOf(socList.get(0).getResult() + "%"));
  2669. soc.setCollectionTime(socList.get(0).getCollectionTime());
  2670. soc.setProject(UniformityEnum.SOC.message());
  2671. soc.setReferenceValue("0~15%");
  2672. soc.setOrder(3);
  2673. diagnosticVoList.add(soc);
  2674. }
  2675. List<HealthScore> tempList = batteryMapper.getTempDiff(sn, null, null, partNow, partBefore);
  2676. if (!CollectionUtils.isEmpty(tempList)) {
  2677. DiagnosticVo temp = new DiagnosticVo();
  2678. temp.setResult(String.valueOf(tempList.get(0).getResult() + "℃"));
  2679. temp.setCollectionTime(tempList.get(0).getCollectionTime());
  2680. temp.setProject(UniformityEnum.TEMP_DIFF.message());
  2681. temp.setReferenceValue("0~15℃");
  2682. temp.setOrder(4);
  2683. diagnosticVoList.add(temp);
  2684. }
  2685. return diagnosticVoList;
  2686. }
  2687. private static List<FlinkData> convertList(ResultSet rs) {
  2688. List<FlinkData> flinkDataList = new ArrayList();
  2689. try {
  2690. List<Map<String, Object>> mapList = new ArrayList();
  2691. ResultSetMetaData md = rs.getMetaData();
  2692. int columnCount = md.getColumnCount();
  2693. while (rs.next()) {
  2694. Map<String, Object> rowData = new HashMap();
  2695. for (int i = 1; i <= columnCount; i++) {
  2696. rowData.put(md.getColumnName(i), rs.getObject(i));
  2697. }
  2698. if (rowData.containsKey("Info")) {
  2699. rowData.putAll(ResultSetToJson.info2Map(rowData.get("Info").toString()));
  2700. }
  2701. mapList.add(rowData);
  2702. }
  2703. flinkDataList = JSONArray.parseArray(JSON.toJSONString(mapList), FlinkData.class);
  2704. } catch (Exception e) {
  2705. }
  2706. return flinkDataList;
  2707. }
  2708. /**
  2709. * 导出电池详情数据
  2710. *
  2711. * @param param 参数
  2712. */
  2713. @Override
  2714. public void exportDetailExcel(BatteryDetailChartParam param, HttpServletResponse response) throws Exception {
  2715. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  2716. //最高电压
  2717. List<BaseExportExcelVo> maxVoltageList = new ArrayList<>();
  2718. //最低电压
  2719. List<BaseExportExcelVo> minVoltageList = new ArrayList<>();
  2720. //最高温度
  2721. List<BaseExportExcelVo> cellMaxTempList = new ArrayList<>();
  2722. //最低温度
  2723. List<BaseExportExcelVo> cellMinTempList = new ArrayList<>();
  2724. //总电压
  2725. List<BaseExportExcelVo> packVoltageList = new ArrayList<>();
  2726. //总电流
  2727. List<BaseExportExcelVo> packCrntList = new ArrayList<>();
  2728. //压差
  2729. List<BaseExportExcelVo> voltageDifferenceList = new ArrayList<>();
  2730. //SOC
  2731. List<BaseExportExcelVo> packSocList = new ArrayList<>();
  2732. //单体电压
  2733. List<BaseExportExcelStringVo> voltVoList = new ArrayList<>();
  2734. //单体温度
  2735. List<BaseExportExcelStringVo> tempVoList = new ArrayList<>();
  2736. //绝缘电阻
  2737. List<BaseExportExcelVo> insulationRssDiffList = new ArrayList<>();
  2738. List<List<?>> indexList = new ArrayList<>();
  2739. List<List<String>> headVoltList = new ArrayList<>();
  2740. List<List<String>> headTempList = new ArrayList<>();
  2741. List<List<String>> cellVoltObjectDiff = new ArrayList<>();
  2742. List<List<String>> batTempObjectDiff = new ArrayList<>();
  2743. List<String> sheetNames = new ArrayList<>();
  2744. sheetNames.add("最高电压");
  2745. sheetNames.add("最低电压");
  2746. sheetNames.add("最高温度");
  2747. sheetNames.add("最低温度");
  2748. sheetNames.add("总电压");
  2749. sheetNames.add("总电流");
  2750. sheetNames.add("压差");
  2751. sheetNames.add("SOC");
  2752. sheetNames.add("单体电压");
  2753. sheetNames.add("单体温度");
  2754. sheetNames.add("绝缘电阻");
  2755. // 输出流
  2756. OutputStream outputStream = null;
  2757. String fileFinalPath = HzConfig.getUploadPath() + File.separator + param.getVin() + ".xlsx";
  2758. File file = new File(fileFinalPath);
  2759. outputStream = new FileOutputStream(fileFinalPath);
  2760. int lenTemp = 0;
  2761. int lenVolt = 0;
  2762. // 导出的数据
  2763. List<FlinkData> flinkDataList = getFlinkData(param);
  2764. if (!CollectionUtils.isEmpty(flinkDataList)) {
  2765. flinkDataList.forEach(o -> {
  2766. String timeStr = sdf.format(o.getTime());
  2767. //总电压
  2768. BaseExportExcelVo packVoltage = new BaseExportExcelVo();
  2769. packVoltage.setTime(timeStr);
  2770. packVoltage.setQuantity(o.getPackVoltage().equals(Constants.BATTERY_ERROR_CODE) ? null : BigDecimal.valueOf(o.getPackVoltage()));
  2771. packVoltageList.add(packVoltage);
  2772. //总电流
  2773. BaseExportExcelVo packCrnt = new BaseExportExcelVo();
  2774. packCrnt.setTime(timeStr);
  2775. packCrnt.setQuantity(o.getPackCrnt().equals(Constants.BATTERY_ERROR_CODE) ? null : BigDecimal.valueOf(o.getPackCrnt()));
  2776. packCrntList.add(packCrnt);
  2777. //SOC
  2778. BaseExportExcelVo packSoc = new BaseExportExcelVo();
  2779. packSoc.setTime(timeStr);
  2780. packSoc.setQuantity(o.getPackSoc().equals(Constants.BATTERY_ERROR_CODE) ? null : BigDecimal.valueOf(o.getPackSoc()));
  2781. packSocList.add(packSoc);
  2782. //绝缘电阻
  2783. BaseExportExcelVo insulationRssDiff = new BaseExportExcelVo();
  2784. insulationRssDiff.setTime(timeStr);
  2785. insulationRssDiff.setQuantity(o.getInsulationRss().equals(Constants.BATTERY_ERROR_CODE) ? null : BigDecimal.valueOf(o.getInsulationRss()));
  2786. insulationRssDiffList.add(insulationRssDiff);
  2787. //单体电压
  2788. BaseExportExcelStringVo baseVoltExportExcelStringVo = new BaseExportExcelStringVo();
  2789. baseVoltExportExcelStringVo.setTime(timeStr);
  2790. baseVoltExportExcelStringVo.setData(o.getCellVoltage());
  2791. voltVoList.add(baseVoltExportExcelStringVo);
  2792. //单体温度
  2793. BaseExportExcelStringVo baseTempExportExcelStringVo = new BaseExportExcelStringVo();
  2794. baseTempExportExcelStringVo.setTime(timeStr);
  2795. baseTempExportExcelStringVo.setData(o.getCellTemp());
  2796. tempVoList.add(baseTempExportExcelStringVo);
  2797. //最高/最低电压 压差
  2798. BaseExportExcelVo voltageDifference = new BaseExportExcelVo();
  2799. BaseExportExcelVo maxVoltage = new BaseExportExcelVo();
  2800. BaseExportExcelVo minVoltage = new BaseExportExcelVo();
  2801. minVoltage.setTime(timeStr);
  2802. maxVoltage.setTime(timeStr);
  2803. voltageDifference.setTime(timeStr);
  2804. if (StringUtils.isNotBlank(o.getCellVoltage())) {
  2805. List<String> listTemp = Arrays.asList(o.getCellVoltage().split(","));
  2806. List<String> list = listTemp.stream().filter(StringUtils::isNotBlank).collect(Collectors.toList());
  2807. if (list.size() > 0) {
  2808. String max = list.stream().max(Comparator.comparing(Float::parseFloat)).get();
  2809. String min = list.stream().min(Comparator.comparing(Float::parseFloat)).get();
  2810. maxVoltage.setQuantity(new BigDecimal(max));
  2811. minVoltage.setQuantity(new BigDecimal(min));
  2812. voltageDifference.setQuantity(maxVoltage.getQuantity().subtract(minVoltage.getQuantity()));
  2813. }
  2814. }
  2815. maxVoltageList.add(maxVoltage);
  2816. minVoltageList.add(minVoltage);
  2817. voltageDifferenceList.add(voltageDifference);
  2818. //最高/最低温度
  2819. BaseExportExcelVo cellMaxTemp = new BaseExportExcelVo();
  2820. cellMaxTemp.setTime(timeStr);
  2821. BaseExportExcelVo cellMinTemp = new BaseExportExcelVo();
  2822. cellMinTemp.setTime(timeStr);
  2823. if (StringUtils.isNotBlank(o.getCellTemp())) {
  2824. List<String> listTemp = Arrays.asList(o.getCellTemp().split(","));
  2825. List<String> list = listTemp.stream().filter(StringUtils::isNotBlank).collect(Collectors.toList());
  2826. if (list.size() > 0) {
  2827. String max = list.stream().max(Comparator.comparing(Float::parseFloat)).get();
  2828. String min = list.stream().min(Comparator.comparing(Float::parseFloat)).get();
  2829. cellMaxTemp.setQuantity(new BigDecimal(max));
  2830. cellMinTemp.setQuantity(new BigDecimal(min));
  2831. }
  2832. }
  2833. cellMaxTempList.add(cellMaxTemp);
  2834. cellMinTempList.add(cellMinTemp);
  2835. });
  2836. if (voltVoList.size() > 0) {
  2837. voltVoList.forEach(o -> {
  2838. String[] split = (o.getTime() + "," + o.getData()).split(",");
  2839. List<String> result = Arrays.asList(split);
  2840. cellVoltObjectDiff.add(result);
  2841. });
  2842. String[] split = voltVoList.get(0).getData().trim().split(",");
  2843. lenVolt = split.length;
  2844. }
  2845. if (tempVoList.size() > 0) {
  2846. tempVoList.forEach(o -> {
  2847. String[] split = (o.getTime() + "," + o.getData()).split(",");
  2848. List<String> result = Arrays.asList(split);
  2849. batTempObjectDiff.add(result);
  2850. });
  2851. String[] split = tempVoList.get(0).getData().trim().split(",");
  2852. lenTemp = split.length;
  2853. }
  2854. }
  2855. List<String> timeList = Arrays.asList("日期时间");
  2856. headVoltList.add(timeList);
  2857. headTempList.add(timeList);
  2858. for (int i = 1; i <= lenVolt; i++) {
  2859. List<String> cellHeadList = Arrays.asList("cell-" + i);
  2860. headVoltList.add(cellHeadList);
  2861. }
  2862. for (int i = 1; i <= lenTemp; i++) {
  2863. List<String> cellHeadList = Arrays.asList("cell-" + i);
  2864. headTempList.add(cellHeadList);
  2865. }
  2866. indexList.add(maxVoltageList);
  2867. indexList.add(minVoltageList);
  2868. indexList.add(cellMaxTempList);
  2869. indexList.add(cellMinTempList);
  2870. indexList.add(packVoltageList);
  2871. indexList.add(packCrntList);
  2872. indexList.add(voltageDifferenceList);
  2873. indexList.add(packSocList);
  2874. indexList.add(cellVoltObjectDiff);
  2875. indexList.add(batTempObjectDiff);
  2876. indexList.add(insulationRssDiffList);
  2877. // 多sheel导出
  2878. ExcelWriter excelWriter = EasyExcel.write(outputStream, BaseExportExcelVo.class).excelType(ExcelTypeEnum.XLSX).build();
  2879. for (int i = 0; i < sheetNames.size(); i++) {
  2880. WriteSheet writeSheet;
  2881. if ("单体电压".equals(sheetNames.get(i))) {
  2882. writeSheet = EasyExcel.writerSheet(i, sheetNames.get(i))
  2883. .head(headVoltList)
  2884. .build();
  2885. } else if ("单体温度".equals(sheetNames.get(i))) {
  2886. writeSheet = EasyExcel.writerSheet(i, sheetNames.get(i))
  2887. .head(headTempList)
  2888. .build();
  2889. } else {
  2890. writeSheet = EasyExcel.writerSheet(i, sheetNames.get(i)).registerWriteHandler(new CustomerTitleHandler(sheetNames.get(i))).build();
  2891. }
  2892. excelWriter.write(indexList.get(i), writeSheet);
  2893. }
  2894. excelWriter.finish();
  2895. //文件上传到阿里云
  2896. //String aliYunFilePath = aliyunOSSUtil.upload(file);
  2897. //String fileSource = propertyConfig.getOssDomain() + "/" + aliYunFilePath;
  2898. //FileOutputStream stream = new FileOutputStream(fileSource);
  2899. /*boolean del = file.delete();
  2900. if (!del) {
  2901. log.warn("本地文件删除失败");
  2902. }*/
  2903. this.export2File(file, response);
  2904. }
  2905. private void export2File(File file, HttpServletResponse response) throws IOException {
  2906. InputStream fis = null;
  2907. try {
  2908. fis = new BufferedInputStream(new FileInputStream(file));
  2909. byte[] buffer = new byte[fis.available()];
  2910. fis.read(buffer);
  2911. response.reset();
  2912. response.addHeader("Content-Disposition", "attachment;filename=" + file.getName());
  2913. response.addHeader("Content-Length", "" + file.length());
  2914. response.setContentType("application/vnd.ms-excel");
  2915. OutputStream outputStream = new BufferedOutputStream(response.getOutputStream());
  2916. outputStream.write(buffer);
  2917. outputStream.flush();
  2918. outputStream.close();
  2919. file.delete();
  2920. } catch (Exception e) {
  2921. log.error("文件导出报错: {}", e.getMessage(), e);
  2922. } finally {
  2923. if (fis != null) {
  2924. fis.close();
  2925. }
  2926. }
  2927. }
  2928. /**
  2929. * 导出电池详情数据
  2930. *
  2931. * @param param 参数
  2932. */
  2933. @Override
  2934. public void exportHealthExcel(BatteryDetailChartParam param, HttpServletResponse response) throws Exception {
  2935. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  2936. //健康度评分趋势图
  2937. List<BaseExportExcelVo> healthScoreOverviewList = new ArrayList<>();
  2938. //内阻一致性
  2939. List<BaseExportExcelVo> resistanceChartVoList = new ArrayList<>();
  2940. //SOH一致性
  2941. List<BaseExportExcelVo> sohDiffVoList = new ArrayList<>();
  2942. //SOC一致性
  2943. List<BaseExportExcelVo> socChartVoList = new ArrayList<>();
  2944. //温度一致性
  2945. List<BaseExportExcelVo> temperatureChartVoList = new ArrayList<>();
  2946. //SOH趋势图
  2947. List<BaseExportExcelStringVo> sohLineChartVoList = new ArrayList<>();
  2948. BatteryHealthVo vo = new BatteryHealthVo();
  2949. SimpleDateFormat sf = new SimpleDateFormat("yyyy-MM-dd");
  2950. long stamp = System.currentTimeMillis();
  2951. String begin = sf.format(stamp) + " 00:00:00";
  2952. String end = sf.format(stamp) + " 23:59:59";
  2953. //计算查询时间内的分区的范围
  2954. if (param.getStartTime() == null && param.getEndTime() == null) {
  2955. Date yesDate = new Date(stamp - 1000 * 60 * 60 * 24 * 7);
  2956. begin = sf.format(yesDate) + " 00:00:00";
  2957. end = sf.format(stamp) + " 23:59:59";
  2958. } else {
  2959. begin = sf.format(sdf.parse(param.getStartTime() + " 00:00:00"));
  2960. end = sf.format(sdf.parse(param.getEndTime() + " 23:59:59"));
  2961. }
  2962. //获取时间段内的分区
  2963. String partitions = getPartitions(begin, end);
  2964. List<HealthScore> healthScoreList = batteryMapper.getHistoryHealthScore(param.getSn(), begin, end, partitions);
  2965. List<DateValueVo> healthScoreOverview = new ArrayList<>();
  2966. if (!CollectionUtils.isEmpty(healthScoreList)) {
  2967. healthScoreList.forEach(o -> {
  2968. DateValueVo v = new DateValueVo();
  2969. v.setXValue(o.getTime());
  2970. v.setYValue(o.getHealthState());
  2971. healthScoreOverview.add(v);
  2972. });
  2973. }
  2974. //健康度评分趋势图
  2975. vo.setHealthScoreOverview(healthScoreOverview);
  2976. //健康度评分趋势图
  2977. if (!CollectionUtils.isEmpty(healthScoreOverview)) {
  2978. healthScoreOverview.forEach(o -> {
  2979. BaseExportExcelVo v = new BaseExportExcelVo();
  2980. v.setTime(sdf.format(o.getXValue()));
  2981. v.setQuantity(o.getYValue());
  2982. healthScoreOverviewList.add(v);
  2983. });
  2984. }
  2985. //SOH趋势图
  2986. //SOH趋势图
  2987. setSohLineChartVo(vo, param.getSn(), partitions, begin, end);
  2988. if (!CollectionUtils.isEmpty(vo.getSohLineChartVo().getKindList())) {
  2989. vo.getSohLineChartVo().getKindList().forEach(o -> {
  2990. BaseExportExcelStringVo v = new BaseExportExcelStringVo();
  2991. v.setData(o.getValue().toString());
  2992. sohLineChartVoList.add(v);
  2993. });
  2994. for (int i = 0; i < sohLineChartVoList.size(); i++) {
  2995. sohLineChartVoList.get(i).setTime(vo.getSohLineChartVo().getTimeAxis().get(i));
  2996. }
  2997. }
  2998. //内阻一致性
  2999. setResistanceChartVoList(vo, param.getSn(), partitions, begin, end);
  3000. if (!CollectionUtils.isEmpty(vo.getResistanceChartVoList())) {
  3001. vo.getResistanceChartVoList().forEach(o -> {
  3002. BaseExportExcelVo v = new BaseExportExcelVo();
  3003. v.setTime(sdf.format(o.getXValue()));
  3004. v.setQuantity(o.getYValue());
  3005. resistanceChartVoList.add(v);
  3006. });
  3007. }
  3008. //SOH一致性
  3009. setSohDiffVoList(vo, param.getSn(), partitions, begin, end);
  3010. if (!CollectionUtils.isEmpty(vo.getSohChartVoList())) {
  3011. vo.getSohChartVoList().forEach(o -> {
  3012. BaseExportExcelVo v = new BaseExportExcelVo();
  3013. v.setTime(sdf.format(o.getXValue()));
  3014. v.setQuantity(o.getYValue());
  3015. sohDiffVoList.add(v);
  3016. });
  3017. }
  3018. //SOC一致性
  3019. setSocChartVoList(vo, param.getSn(), partitions, begin, end);
  3020. if (!CollectionUtils.isEmpty(vo.getSocChartVoList())) {
  3021. vo.getSocChartVoList().forEach(o -> {
  3022. BaseExportExcelVo v = new BaseExportExcelVo();
  3023. v.setTime(sdf.format(o.getXValue()));
  3024. v.setQuantity(o.getYValue());
  3025. socChartVoList.add(v);
  3026. });
  3027. }
  3028. //温度一致性
  3029. setTemperatureChartVoList(vo, param.getSn(), partitions, begin, end);
  3030. if (!CollectionUtils.isEmpty(vo.getTemperatureChartVoList())) {
  3031. vo.getTemperatureChartVoList().forEach(o -> {
  3032. BaseExportExcelVo v = new BaseExportExcelVo();
  3033. v.setTime(sdf.format(o.getXValue()));
  3034. v.setQuantity(o.getYValue());
  3035. temperatureChartVoList.add(v);
  3036. });
  3037. }
  3038. // 输出流
  3039. OutputStream outputStream = null;
  3040. String fileFinalPath = HzConfig.getUploadPath() + File.separator + param.getSn() + ".xlsx";
  3041. File file = new File(fileFinalPath);
  3042. outputStream = new FileOutputStream(file);
  3043. // 多sheel导出
  3044. ExcelWriter excelWriter = EasyExcel.write(outputStream).build();
  3045. WriteSheet test5 = EasyExcel.writerSheet(0, "SOH趋势图").head(BaseExportExcelStringVo.class).build();
  3046. WriteSheet test6 = EasyExcel.writerSheet(1, "内阻一致性").head(BaseExportExcelVo.class).build();
  3047. WriteSheet test7 = EasyExcel.writerSheet(2, "SOH一致性").head(BaseExportExcelVo.class).build();
  3048. WriteSheet test8 = EasyExcel.writerSheet(3, "SOC一致性").head(BaseExportExcelVo.class).build();
  3049. WriteSheet test9 = EasyExcel.writerSheet(4, "温度一致性").head(BaseExportExcelVo.class).build();
  3050. excelWriter.write(healthScoreOverviewList, test5)
  3051. .write(resistanceChartVoList, test6)
  3052. .write(sohDiffVoList, test7)
  3053. .write(socChartVoList, test8)
  3054. .write(temperatureChartVoList, test9);
  3055. excelWriter.finish();
  3056. this.export2File(file, response);
  3057. }
  3058. /**
  3059. * 查询电池实时位置统计信息
  3060. *
  3061. * @return 电池信息
  3062. */
  3063. @Override
  3064. public List<BatteryLocationVo> getBatteryLocation() {
  3065. List<Battery> list = batteryMapper.getBatteryLocation();
  3066. List<BatteryLocationVo> res = new ArrayList<>();
  3067. Integer count = 0;
  3068. for (Battery battery : list) {
  3069. count += battery.getCount();
  3070. }
  3071. for (Battery battery : list) {
  3072. BatteryLocationVo batteryLocationVo = new BatteryLocationVo();
  3073. BeanUtils.copyProperties(battery, batteryLocationVo);
  3074. batteryLocationVo.setCount(battery.getCount());
  3075. batteryLocationVo.setProvince(StrUtils.getProvince(battery.getProvince()));
  3076. batteryLocationVo.setPercentage(count != 0 ? BigDecimal.valueOf(battery.getCount().floatValue() / count.floatValue()).setScale(4, RoundingMode.HALF_UP).toString() : "0.0000");
  3077. res.add(batteryLocationVo);
  3078. }
  3079. res.sort(Comparator.comparing(BatteryLocationVo::getCount).reversed());
  3080. return res;
  3081. }
  3082. /**
  3083. * 查询电池实时位置统计信息
  3084. *
  3085. * @return 电池信息
  3086. */
  3087. @Override
  3088. public List<BatteryLocationVo> getBatteryChargingLocation() {
  3089. List<Battery> list = batteryMapper.getBatteryChargingLocation();
  3090. List<BatteryLocationVo> res = new ArrayList<>();
  3091. Integer count = 0;
  3092. for (Battery battery : list) {
  3093. count += battery.getCount();
  3094. }
  3095. for (Battery battery : list) {
  3096. BatteryLocationVo batteryLocationVo = new BatteryLocationVo();
  3097. BeanUtils.copyProperties(battery, batteryLocationVo);
  3098. batteryLocationVo.setCount(battery.getCount());
  3099. batteryLocationVo.setChargingProvince(StrUtils.getProvince(battery.getChargingProvince()));
  3100. batteryLocationVo.setPercentage(count != 0 ? BigDecimal.valueOf(battery.getCount().floatValue() / count.floatValue()).setScale(4, RoundingMode.HALF_UP).toString() : "0.0000");
  3101. res.add(batteryLocationVo);
  3102. }
  3103. res.sort(Comparator.comparing(BatteryLocationVo::getCount).reversed());
  3104. return res;
  3105. }
  3106. /**
  3107. * 查询电池详细信息-用电行为
  3108. *
  3109. * @param param 参数
  3110. * @return 电池信息
  3111. */
  3112. @Override
  3113. public BatteryDetailChartVo getDetailCharge(BatteryDetailChartParam param) throws ParseException, SQLException {
  3114. BatteryDetailChartVo vo = new BatteryDetailChartVo();
  3115. List<FlinkData> flinkDataList = getFlinkData(param);
  3116. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  3117. //时间轴
  3118. List<String> timeList = flinkDataList.stream().map(o -> sdf.format(o.getTime())).collect(Collectors.toList());
  3119. //单体压差
  3120. List<Float> bmsCellVoltDiffList = new ArrayList<>();
  3121. /*List<Float> bmsCellVoltDiffList = flinkDataList.stream()
  3122. .map(o -> (o.getBmsCellVoltDiff().floatValue() == Constants.BATTERY_ERROR_CODE) ? null : o.getBmsCellVoltDiff().floatValue())
  3123. .collect(Collectors.toList());*/
  3124. //电池包Soc
  3125. List<Float> packSocList = flinkDataList.stream()
  3126. .map(o -> (o.getPackSoc().equals(Constants.BATTERY_ERROR_CODE)) ? null : o.getPackSoc())
  3127. .collect(Collectors.toList());
  3128. //电芯最高温度
  3129. List<Float> cellMaxTempList = new ArrayList<>();
  3130. /*List<Float> cellMaxTempList = flinkDataList.stream()
  3131. .map(o -> (o.getCellMaxTemp().equals(Constants.BATTERY_ERROR_CODE)) ? null : o.getCellMaxTemp())
  3132. .collect(Collectors.toList());*/
  3133. //电芯最低温度
  3134. List<Float> cellMinTempList = new ArrayList<>();
  3135. /*List<Float> cellMinTempList = flinkDataList.stream()
  3136. .map(o -> (o.getCellMinTemp().equals(Constants.BATTERY_ERROR_CODE)) ? null : o.getCellMinTemp())
  3137. .collect(Collectors.toList());*/
  3138. //最高电压
  3139. List<Float> maxVoltList = new ArrayList<>();
  3140. /*List<Float> maxVoltList = flinkDataList.stream()
  3141. .map(o -> (o.getCellMaxVol().equals(Constants.BATTERY_ERROR_CODE)) ? null : o.getCellMaxVol() / 1000)
  3142. .collect(Collectors.toList());*/
  3143. //最低电压
  3144. List<Float> minVoltList = new ArrayList<>();
  3145. /*List<Float> minVoltList = flinkDataList.stream()
  3146. .map(o -> (o.getCellMinVol().equals(Constants.BATTERY_ERROR_CODE)) ? null : o.getCellMinVol() / 1000)
  3147. .collect(Collectors.toList());*/
  3148. //电池整包电压
  3149. List<Float> packVoltageList = flinkDataList.stream()
  3150. .map(o -> (o.getPackVoltage().equals(Constants.BATTERY_ERROR_CODE)) ? null : o.getPackVoltage())
  3151. .collect(Collectors.toList());
  3152. //电池包输出电流
  3153. List<Float> packCrntList = flinkDataList.stream()
  3154. .map(o -> (o.getPackCrnt() == null || o.getPackCrnt().equals(Constants.BATTERY_ERROR_CODE)) ? null : o.getPackCrnt())
  3155. .collect(Collectors.toList());
  3156. //车速
  3157. List<Float> vehSpdList = flinkDataList.stream()
  3158. .map(o -> (o.getVehSpd() == null || o.getVehSpd().equals(Constants.BATTERY_ERROR_CODE)) ? null : o.getVehSpd())
  3159. .collect(Collectors.toList());
  3160. //单体电压
  3161. List<String> voltDiffList = flinkDataList.stream()
  3162. .map(FlinkData::getCellVoltage)
  3163. .collect(Collectors.toList());
  3164. //单体电压
  3165. List<String> tempDiffList = flinkDataList.stream()
  3166. .map(FlinkData::getCellTemp)
  3167. .collect(Collectors.toList());
  3168. if (voltDiffList.size() > 0) {
  3169. for (String s : voltDiffList) {
  3170. List<String> listTemp = Arrays.asList(s.split(","));
  3171. List<String> list = listTemp.stream().filter(StringUtils::isNotBlank).collect(Collectors.toList());
  3172. if (list.size() > 0) {
  3173. String max = list.stream().max(Comparator.comparing(Float::parseFloat)).get();
  3174. String min = list.stream().min(Comparator.comparing(Float::parseFloat)).get();
  3175. Float maxFloat = Float.parseFloat(max);
  3176. Float minFloat = Float.parseFloat(min);
  3177. maxVoltList.add(maxFloat);
  3178. minVoltList.add(minFloat);
  3179. bmsCellVoltDiffList.add(maxFloat - minFloat);
  3180. }
  3181. }
  3182. }
  3183. //if (cellMaxTempList.size() <= 0 && cellMinTempList.size() <= 0 && batTempDiffList.size() > 0) {
  3184. if (tempDiffList.size() > 0) {
  3185. for (String s : tempDiffList) {
  3186. List<String> listTemp = Arrays.asList(s.split(","));
  3187. List<String> list = listTemp.stream().filter(StringUtils::isNotBlank).collect(Collectors.toList());
  3188. if (list.size() > 0) {
  3189. String max = list.stream().max(Comparator.comparing(Float::parseFloat)).get();
  3190. String min = list.stream().min(Comparator.comparing(Float::parseFloat)).get();
  3191. Float maxFloat = Float.parseFloat(max);
  3192. Float minFloat = Float.parseFloat(min);
  3193. cellMaxTempList.add(maxFloat);
  3194. cellMinTempList.add(minFloat);
  3195. }
  3196. }
  3197. }
  3198. List<List<Float>> bmsCellVoltList = new ArrayList<>();
  3199. if (voltDiffList.size() > 0) {
  3200. for (int i = 0; i < voltDiffList.size(); i++) {
  3201. if (StringUtils.isNotBlank(voltDiffList.get(i))) {
  3202. String[] split = voltDiffList.get(i).trim().split(",");
  3203. int len = split.length;
  3204. for (int j = 0; j < len; j++) {
  3205. if (bmsCellVoltList.size() <= j) {
  3206. bmsCellVoltList.add(new ArrayList<>());
  3207. }
  3208. float value = Float.parseFloat(StringUtils.isNotBlank(split[j]) ? split[j] : "0");
  3209. bmsCellVoltList.get(j).add((value == Constants.BATTERY_ERROR_CODE) ? null : value);
  3210. }
  3211. }
  3212. }
  3213. }
  3214. //补充空值
  3215. int maxVoltageSize = 0;
  3216. for (List<Float> list : bmsCellVoltList) {
  3217. if (list.size() > maxVoltageSize) {
  3218. maxVoltageSize = list.size();
  3219. }
  3220. }
  3221. for (List<Float> list : bmsCellVoltList) {
  3222. while (list.size() < maxVoltageSize) {
  3223. list.add(null);
  3224. }
  3225. }
  3226. vo.setTimeList(timeList);
  3227. vo.setCellMaxTempList(cellMaxTempList);
  3228. vo.setCellMinTempList(cellMinTempList);
  3229. vo.setPackVoltageList(packVoltageList);
  3230. vo.setPackCrntList(packCrntList);
  3231. vo.setPackSocList(packSocList);
  3232. vo.setVehSpdList(vehSpdList);
  3233. vo.setMaxVoltageList(maxVoltList);
  3234. vo.setMinVoltageList(minVoltList);
  3235. vo.setVoltageDifferenceList(bmsCellVoltDiffList);
  3236. vo.setBmsCellVoltDiffList(bmsCellVoltList);
  3237. return vo;
  3238. }
  3239. /**
  3240. * 导出电池详情数据-用电行为
  3241. *
  3242. * @param param 参数
  3243. */
  3244. @Override
  3245. public void exportDetailChargeExcel(BatteryDetailChartParam param, HttpServletResponse response) throws IOException {
  3246. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  3247. //最高电压
  3248. List<BaseExportExcelVo> maxVoltageList = new ArrayList<>();
  3249. //最低电压
  3250. List<BaseExportExcelVo> minVoltageList = new ArrayList<>();
  3251. //最高温度
  3252. List<BaseExportExcelVo> cellMaxTempList = new ArrayList<>();
  3253. //最低温度
  3254. List<BaseExportExcelVo> cellMinTempList = new ArrayList<>();
  3255. //总电压
  3256. List<BaseExportExcelVo> packVoltageList = new ArrayList<>();
  3257. //总电流
  3258. List<BaseExportExcelVo> packCrntList = new ArrayList<>();
  3259. //压差
  3260. List<BaseExportExcelVo> voltageDifferenceList = new ArrayList<>();
  3261. //SOC
  3262. List<BaseExportExcelVo> packSocList = new ArrayList<>();
  3263. //单体电压
  3264. List<BaseExportExcelStringVo> voltVoList = new ArrayList<>();
  3265. //绝缘电阻
  3266. List<BaseExportExcelVo> vehSpdList = new ArrayList<>();
  3267. List<List<?>> indexList = new ArrayList<>();
  3268. List<List<String>> headVoltList = new ArrayList<>();
  3269. List<List<String>> cellVoltObjectDiff = new ArrayList<>();
  3270. // 输出流
  3271. OutputStream outputStream = null;
  3272. List<FlinkData> flinkDataList = null;
  3273. String fileFinalPath = HzConfig.getUploadPath() + File.separator + param.getVin() + ".xlsx";
  3274. File file = new File(fileFinalPath);
  3275. try {
  3276. outputStream = new FileOutputStream(file);
  3277. int lenTemp = 0;
  3278. int lenVolt = 0;
  3279. // 导出的数据
  3280. flinkDataList = getFlinkData(param);
  3281. if (!CollectionUtils.isEmpty(flinkDataList)) {
  3282. flinkDataList.forEach(o -> {
  3283. String timeStr = sdf.format(o.getTime());
  3284. //最高电压
  3285. BaseExportExcelVo maxVoltage = new BaseExportExcelVo();
  3286. maxVoltage.setTime(timeStr);
  3287. maxVoltage.setQuantity(o.getCellMaxVol().equals(Constants.BATTERY_ERROR_CODE) ? null : BigDecimal.valueOf(o.getCellMaxVol() / 1000));
  3288. maxVoltageList.add(maxVoltage);
  3289. //最低电压
  3290. BaseExportExcelVo minVoltag = new BaseExportExcelVo();
  3291. minVoltag.setTime(timeStr);
  3292. minVoltag.setQuantity(o.getCellMinVol().equals(Constants.BATTERY_ERROR_CODE) ? null : BigDecimal.valueOf(o.getCellMinVol() / 1000));
  3293. minVoltageList.add(minVoltag);
  3294. //最高温度
  3295. BaseExportExcelVo cellMaxTemp = new BaseExportExcelVo();
  3296. cellMaxTemp.setTime(timeStr);
  3297. cellMaxTemp.setQuantity(o.getCellMaxTemp().equals(Constants.BATTERY_ERROR_CODE) ? null : BigDecimal.valueOf(o.getCellMaxTemp()));
  3298. cellMaxTempList.add(cellMaxTemp);
  3299. //最低温度
  3300. BaseExportExcelVo cellMinTemp = new BaseExportExcelVo();
  3301. cellMinTemp.setTime(timeStr);
  3302. cellMinTemp.setQuantity(o.getCellMinTemp().equals(Constants.BATTERY_ERROR_CODE) ? null : BigDecimal.valueOf(o.getCellMinTemp()));
  3303. cellMinTempList.add(cellMinTemp);
  3304. //总电压
  3305. BaseExportExcelVo packVoltage = new BaseExportExcelVo();
  3306. packVoltage.setTime(timeStr);
  3307. packVoltage.setQuantity(o.getPackVoltage().equals(Constants.BATTERY_ERROR_CODE) ? null : BigDecimal.valueOf(o.getPackVoltage()));
  3308. packVoltageList.add(packVoltage);
  3309. //总电流
  3310. BaseExportExcelVo packCrnt = new BaseExportExcelVo();
  3311. packCrnt.setTime(timeStr);
  3312. packCrnt.setQuantity(o.getPackCrnt().equals(Constants.BATTERY_ERROR_CODE) ? null : BigDecimal.valueOf(o.getPackCrnt()));
  3313. packCrntList.add(packCrnt);
  3314. //SOC
  3315. BaseExportExcelVo packSoc = new BaseExportExcelVo();
  3316. packSoc.setTime(timeStr);
  3317. packSoc.setQuantity(o.getPackSoc().equals(Constants.BATTERY_ERROR_CODE) ? null : BigDecimal.valueOf(o.getPackSoc()));
  3318. packSocList.add(packSoc);
  3319. //压差
  3320. BaseExportExcelVo voltageDifference = new BaseExportExcelVo();
  3321. voltageDifference.setTime(timeStr);
  3322. voltageDifference.setQuantity(o.getBmsCellVoltDiff().equals(Constants.BATTERY_ERROR_CODE) ? null : BigDecimal.valueOf(o.getBmsCellVoltDiff()));
  3323. voltageDifferenceList.add(voltageDifference);
  3324. //车速
  3325. BaseExportExcelVo vehSpdVo = new BaseExportExcelVo();
  3326. vehSpdVo.setTime(timeStr);
  3327. vehSpdVo.setQuantity(o.getVehSpd() == null || o.getVehSpd().equals(Constants.BATTERY_ERROR_CODE) ? null : BigDecimal.valueOf(o.getVehSpd()));
  3328. vehSpdList.add(vehSpdVo);
  3329. //单体电压
  3330. BaseExportExcelStringVo baseVoltExportExcelStringVo = new BaseExportExcelStringVo();
  3331. baseVoltExportExcelStringVo.setTime(timeStr);
  3332. baseVoltExportExcelStringVo.setData(o.getCellVoltage());
  3333. voltVoList.add(baseVoltExportExcelStringVo);
  3334. });
  3335. if (voltVoList.size() > 0) {
  3336. voltVoList.forEach(o -> {
  3337. String[] split = (o.getTime() + "," + o.getData()).split(",");
  3338. List<String> result = Arrays.asList(split);
  3339. cellVoltObjectDiff.add(result);
  3340. });
  3341. String[] split = voltVoList.get(0).getData().trim().split(",");
  3342. lenVolt = split.length;
  3343. }
  3344. }
  3345. List<String> timeList = Arrays.asList("日期时间");
  3346. headVoltList.add(timeList);
  3347. for (int i = 1; i <= lenVolt; i++) {
  3348. List<String> cellHeadList = Arrays.asList("cell-" + i);
  3349. headVoltList.add(cellHeadList);
  3350. }
  3351. // 多sheel导出
  3352. List<String> sheetNames = new ArrayList<>();
  3353. sheetNames.add("最高电压");
  3354. sheetNames.add("最低电压");
  3355. sheetNames.add("最高温度");
  3356. sheetNames.add("最低温度");
  3357. sheetNames.add("总电压");
  3358. sheetNames.add("总电流");
  3359. sheetNames.add("压差");
  3360. sheetNames.add("SOC");
  3361. sheetNames.add("单体电压");
  3362. sheetNames.add("车速");
  3363. indexList.add(maxVoltageList);
  3364. indexList.add(minVoltageList);
  3365. indexList.add(cellMaxTempList);
  3366. indexList.add(cellMinTempList);
  3367. indexList.add(packVoltageList);
  3368. indexList.add(packCrntList);
  3369. indexList.add(voltageDifferenceList);
  3370. indexList.add(packSocList);
  3371. indexList.add(cellVoltObjectDiff);
  3372. indexList.add(vehSpdList);
  3373. ExcelWriter excelWriter = EasyExcel.write(outputStream, BaseExportExcelVo.class).excelType(ExcelTypeEnum.XLSX).build();
  3374. for (int i = 0; i < sheetNames.size(); i++) {
  3375. WriteSheet writeSheet;
  3376. if ("单体电压".equals(sheetNames.get(i))) {
  3377. writeSheet = EasyExcel.writerSheet(i, sheetNames.get(i))
  3378. .head(headVoltList)
  3379. .build();
  3380. } else {
  3381. writeSheet = EasyExcel.writerSheet(i, sheetNames.get(i)).registerWriteHandler(new CustomerTitleHandler(sheetNames.get(i))).build();
  3382. }
  3383. excelWriter.write(indexList.get(i), writeSheet);
  3384. }
  3385. excelWriter.finish();
  3386. this.export2File(file, response);
  3387. } catch (FileNotFoundException | ParseException | SQLException e) {
  3388. throw new RuntimeException(e);
  3389. } finally {
  3390. if (outputStream != null) {
  3391. outputStream.close();
  3392. }
  3393. }
  3394. }
  3395. /**
  3396. * 用电行为分析
  3397. *
  3398. * @param vin 参数
  3399. * @return List<BaseCycleChartVo>
  3400. */
  3401. @Override
  3402. public BehaviorAnalysisVo getBehaviorAnalysis(String vin) throws SQLException {
  3403. BehaviorAnalysisVo vo = new BehaviorAnalysisVo();
  3404. List<CarPowerVo> carPowerVoList = getCarPowerFlinkData(vin);
  3405. //计算最后一次放电详情
  3406. setLastCycleChartVo(carPowerVoList, vo);
  3407. //计算历史用电分布
  3408. vo.setHistoryCycleChartVoList(getCycleChartList(carPowerVoList));
  3409. return vo;
  3410. }
  3411. /**
  3412. * 计算最后一次放电详情
  3413. *
  3414. * @param carPowerVoList 数据
  3415. * @param vo 参数
  3416. */
  3417. private void setLastCycleChartVo(List<CarPowerVo> carPowerVoList, BehaviorAnalysisVo vo) {
  3418. List<BaseCycleChartFloatVo> lastCycleChartVoList = new ArrayList<>();
  3419. if (!CollectionUtils.isEmpty(carPowerVoList)) {
  3420. List<CarPowerVo> voList = new ArrayList<>();
  3421. if (carPowerVoList.get(0).getStsFlg() == 1) {
  3422. //最后一次数据是放电
  3423. for (CarPowerVo carPowerVo : carPowerVoList) {
  3424. if (carPowerVo.getStsFlg() == 0) {
  3425. break;
  3426. } else {
  3427. voList.add(carPowerVo);
  3428. }
  3429. }
  3430. } else {
  3431. //最后一次数据是充电,找到上一次充电和本次充电之间的数据
  3432. for (int i = 1; i < carPowerVoList.size(); i++) {
  3433. if (carPowerVoList.get(i).getStsFlg() == 0) {
  3434. break;
  3435. } else {
  3436. voList.add(carPowerVoList.get(i));
  3437. }
  3438. }
  3439. }
  3440. if (voList.size() > 0) {
  3441. lastCycleChartVoList = getCycleChartList(voList);
  3442. }
  3443. } else {
  3444. lastCycleChartVoList = getCycleChartList(new ArrayList<>());
  3445. }
  3446. vo.setLastCycleChartVoList(lastCycleChartVoList);
  3447. }
  3448. /**
  3449. * 除了动力驱动和PTC热管理 其他均为0
  3450. *
  3451. * @param voList 参数
  3452. * @return List<BaseCycleChartFloatVo>
  3453. */
  3454. private List<BaseCycleChartFloatVo> getCycleChartList(List<CarPowerVo> voList) {
  3455. List<BaseCycleChartFloatVo> cycleChartVoList = new ArrayList<>();
  3456. //精确两位有效数字
  3457. DecimalFormat decimalFormat = new DecimalFormat("0.00");
  3458. double drive = voList.stream().filter(o -> o.getStsFlg() == 1).mapToDouble(CarPowerVo::getDrvEngy).sum();
  3459. double ptc = voList.stream().filter(o -> o.getStsFlg() == 1).mapToDouble(CarPowerVo::getPtcEngy).sum();
  3460. double total = voList.stream().filter(o -> o.getStsFlg() == 1).mapToDouble(CarPowerVo::getVehEngy).sum();
  3461. PowerConsumeTypeEnum[] enums = PowerConsumeTypeEnum.values();
  3462. for (PowerConsumeTypeEnum en : enums) {
  3463. //除了动力驱动和PTC热管理 其他均为0
  3464. BaseCycleChartFloatVo baseCycleChartVo = new BaseCycleChartFloatVo();
  3465. baseCycleChartVo.setName(en.message());
  3466. if (en.code() == 0) {
  3467. BigDecimal percent = total != 0 ? BigDecimal.valueOf(drive).divide(BigDecimal.valueOf(total), 2, RoundingMode.HALF_UP) : BigDecimal.ZERO;
  3468. baseCycleChartVo.setPercent(percent);
  3469. baseCycleChartVo.setCount(Double.parseDouble(decimalFormat.format(drive)));
  3470. } else if (en.code() == 1) {
  3471. BigDecimal percent = total != 0 ? BigDecimal.valueOf(ptc).divide(BigDecimal.valueOf(total), 2, RoundingMode.HALF_UP) : BigDecimal.ZERO;
  3472. baseCycleChartVo.setPercent(percent);
  3473. baseCycleChartVo.setCount(Double.parseDouble(decimalFormat.format(ptc)));
  3474. } else {
  3475. baseCycleChartVo.setPercent(BigDecimal.ZERO);
  3476. baseCycleChartVo.setCount(0d);
  3477. }
  3478. cycleChartVoList.add(baseCycleChartVo);
  3479. }
  3480. return cycleChartVoList;
  3481. }
  3482. /**
  3483. * 获取flink数据
  3484. *
  3485. * @param vin 参数
  3486. * @return java.util.List<com.hz.business.domain.FlinkData>
  3487. */
  3488. private List<CarPowerVo> getCarPowerFlinkData(String vin) throws SQLException {
  3489. List<CarPowerVo> carPowerVoList = new ArrayList<>();
  3490. Connection conn = null;
  3491. PreparedStatement psSelect = null;
  3492. try {
  3493. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  3494. StringBuilder builder = new StringBuilder();
  3495. String snKey = Math.abs(vin.hashCode()) + "_" + vin + "_";
  3496. String snKeyMin = snKey + "0";
  3497. String snKeyMax = snKey + "a";
  3498. builder.append("select * from ").append(behaviorTable)
  3499. .append(" where id >= '").append(snKeyMin)
  3500. .append("' and id <= '").append(snKeyMax).append("' order by id");
  3501. conn = PhoenixUtils.getConnection();
  3502. psSelect = conn.prepareStatement(" use " + database + " ");
  3503. psSelect.setFetchSize(1000);
  3504. psSelect.execute();
  3505. psSelect.close();
  3506. psSelect = conn.prepareStatement(builder.toString());
  3507. ResultSet resultSet = psSelect.executeQuery();
  3508. carPowerVoList = convertCarPowerVoList(resultSet);
  3509. } catch (Exception e) {
  3510. } finally {
  3511. if (psSelect != null) {
  3512. psSelect.close();
  3513. }
  3514. if (conn != null) {
  3515. conn.close();
  3516. }
  3517. }
  3518. return carPowerVoList;
  3519. }
  3520. public List<Map<String, Object>> getFlinkMapList(String tableName, String resultId) throws SQLException {
  3521. List<Map<String, Object>> mapList = new ArrayList<>();
  3522. Connection conn = null;
  3523. PreparedStatement psSelect = null;
  3524. try {
  3525. StringBuilder builder = new StringBuilder();
  3526. //SnKey = resultId的hashCode 绝对值 + resultId + long最大值
  3527. String snKey = Math.abs(resultId.hashCode()) + "_" + resultId + "_";
  3528. String snKeyMin = snKey + "0";
  3529. String snKeyMax = snKey + "a";
  3530. builder.append("select id,remain_odo from ").append(database + "." + tableName);
  3531. builder.append(" where id > '").append(snKeyMin).append("' and id < '")
  3532. .append(snKeyMax).append("'");
  3533. builder.append(" order by id limit 1 ");
  3534. conn = PhoenixUtils.getConnection();
  3535. psSelect = conn.prepareStatement(builder.toString());
  3536. ResultSet resultSet = psSelect.executeQuery();
  3537. mapList = ResultSetToJson.toListMap(resultSet, false);
  3538. } catch (Exception e) {
  3539. } finally {
  3540. if (psSelect != null) {
  3541. psSelect.close();
  3542. }
  3543. if (conn != null) {
  3544. conn.close();
  3545. }
  3546. }
  3547. return mapList;
  3548. }
  3549. /**
  3550. * lindrom数据转换为实体类
  3551. *
  3552. * @param rs 参数
  3553. * @return java.util.List<com.hz.business.vo.CarPowerVo>
  3554. */
  3555. private static List<CarPowerVo> convertCarPowerVoList(ResultSet rs) {
  3556. List<CarPowerVo> carPowerVoList = new ArrayList();
  3557. try {
  3558. List<Map<String, Object>> mapList = new ArrayList();
  3559. ResultSetMetaData md = rs.getMetaData();
  3560. int columnCount = md.getColumnCount();
  3561. while (rs.next()) {
  3562. Map<String, Object> rowData = new HashMap();
  3563. for (int i = 1; i <= columnCount; i++) {
  3564. rowData.put(md.getColumnName(i), rs.getObject(i));
  3565. }
  3566. mapList.add(rowData);
  3567. }
  3568. carPowerVoList = JSONArray.parseArray(JSON.toJSONString(mapList), CarPowerVo.class);
  3569. /*//按照结束时间倒序排列
  3570. List<CarPowerVo> flinkList = carPowerVoList.stream()
  3571. .sorted(Comparator.comparing(CarPowerVo::getTimeSp).reversed())
  3572. .collect(Collectors.toList());*/
  3573. } catch (Exception e) {
  3574. }
  3575. return carPowerVoList;
  3576. }
  3577. /**
  3578. * 每日计算装机总量
  3579. */
  3580. @Transactional(rollbackFor = Exception.class)
  3581. @Override
  3582. public void calTotalElectricQuantity() {
  3583. SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd");
  3584. String dateStr = sdf.format(new Date());
  3585. ElectricQuantity one = eqMapper.selectOne(new QueryWrapper<ElectricQuantity>()
  3586. .select("date_info")
  3587. .last(" limit 1 ")
  3588. .orderByDesc("id")
  3589. .eq("is_delete", 0));
  3590. if (one == null
  3591. || (one.getDateInfo() != null && !one.getDateInfo().equals(dateStr))) {
  3592. //计算当日装机总量
  3593. List<Map<String, Object>> mapList = batteryMapper.calTotalElectricQuantity();
  3594. if (mapList.size() > 0) {
  3595. List<QuantityItemVo> list = JSONArray.parseArray(JSON.toJSONString(mapList), QuantityItemVo.class);
  3596. BigDecimal total = BigDecimal.ZERO;
  3597. if (list.size() > 0) {
  3598. total = list.stream()
  3599. .map(QuantityItemVo::getQuantity)
  3600. .reduce(BigDecimal.ZERO, BigDecimal::add);
  3601. }
  3602. QuantityItemVo vo = new QuantityItemVo();
  3603. vo.setQuantity(total);
  3604. vo.setItem("total");
  3605. list.add(vo);
  3606. //保存数据
  3607. if (list.size() > 0) {
  3608. JSONObject object = new JSONObject();
  3609. list.forEach(o -> {
  3610. object.put(o.getItem(), o.getQuantity());
  3611. });
  3612. ElectricQuantity entity = new ElectricQuantity();
  3613. entity.setDateInfo(dateStr);
  3614. entity.setDataJson(object.toJSONString());
  3615. eqMapper.insert(entity);
  3616. }
  3617. }
  3618. }
  3619. KilometreCount kilometreCount = kilometreCountMapper.selectOne(new QueryWrapper<KilometreCount>()
  3620. .select("date_info")
  3621. .last("limit 1")
  3622. .orderByDesc("id")
  3623. .eq("is_delete", 0));
  3624. if (kilometreCount == null || (kilometreCount.getDateInfo() != null && !kilometreCount.getDateInfo().equals(dateStr))) {
  3625. List<KilometreCountVo> kilometreCountVo = alarmMsgMapper.getKilometreCountVo();
  3626. if (kilometreCountVo.size() > 0) {
  3627. kilometreCountVo.forEach(o -> {
  3628. KilometreCount entity = new KilometreCount();
  3629. entity.setDateInfo(dateStr);
  3630. entity.setKilometre(o.getKilometre());
  3631. entity.setName(o.getName());
  3632. entity.setRankOrder(o.getRankOrder());
  3633. kilometreCountMapper.insert(entity);
  3634. });
  3635. }
  3636. }
  3637. // //计算soh占比
  3638. // SohItemQuantity sohItemQuantity = sohMapper.selectOne(new QueryWrapper<SohItemQuantity>()
  3639. // .select("date_info")
  3640. // .last(" limit 1 ")
  3641. // .orderByDesc("id")
  3642. // .eq("is_delete", 0));
  3643. // SimpleDateFormat sdff = new SimpleDateFormat("yyyyMM");
  3644. // String partNow = "p" + sdff.format(new Date());
  3645. // String partBefore = "p" + sdff.format(lastMonthEndDay());
  3646. // String partitions = partNow + "," + partBefore;
  3647. // if (sohItemQuantity == null
  3648. // || (sohItemQuantity.getDateInfo() != null && !sohItemQuantity.getDateInfo().equals(dateStr))) {
  3649. // List<Battery> sohDataList = batteryMapper.getSohData(partitions);
  3650. // if (sohDataList.size() > 0) {
  3651. // sohDataList.forEach(o -> {
  3652. // SohItemQuantity entity = new SohItemQuantity();
  3653. // entity.setDateInfo(dateStr);
  3654. // entity.setItem(o.getSohSection());
  3655. // entity.setQuantity(o.getElectricQuantity());
  3656. // sohMapper.insert(entity);
  3657. // });
  3658. // }
  3659. // }
  3660. //计算soh里程分布
  3661. SohOdo sohOdo = sohOdoMapper.selectOne(new QueryWrapper<SohOdo>()
  3662. .select("date_info")
  3663. .last(" limit 1 ")
  3664. .orderByDesc("id")
  3665. .eq("is_delete", 0));
  3666. if (sohOdo == null
  3667. || (sohOdo.getDateInfo() != null && !sohOdo.getDateInfo().equals(dateStr))) {
  3668. List<SohMileageVo> sohMileageVoList = new ArrayList<>();
  3669. List<Map<String, Object>> mapList = batteryMapper.getSohMileageData();
  3670. if (!CollectionUtils.isEmpty(mapList)) {
  3671. List<SohOdoVo> sohDataList = JSONArray.parseArray(JSON.toJSONString(mapList), SohOdoVo.class);
  3672. //添加区间名称>
  3673. for (SohOdoVo o : sohDataList) {
  3674. //里程区间
  3675. if (o.getOdo().compareTo(BigDecimal.valueOf(50000)) < 0) {
  3676. o.setOdoSection(SohMileageEnum.getDesc(0));
  3677. } else if (o.getOdo().compareTo(BigDecimal.valueOf(50000)) > 0 && o.getOdo().compareTo(BigDecimal.valueOf(50000 * 2)) <= 0) {
  3678. o.setOdoSection(SohMileageEnum.getDesc(1));
  3679. } else if (o.getOdo().compareTo(BigDecimal.valueOf(50000 * 2)) > 0 && o.getOdo().compareTo(BigDecimal.valueOf(50000 * 3)) <= 0) {
  3680. o.setOdoSection(SohMileageEnum.getDesc(2));
  3681. } else if (o.getOdo().compareTo(BigDecimal.valueOf(50000 * 3)) > 0 && o.getOdo().compareTo(BigDecimal.valueOf(50000 * 4)) <= 0) {
  3682. o.setOdoSection(SohMileageEnum.getDesc(3));
  3683. } else if (o.getOdo().compareTo(BigDecimal.valueOf(50000 * 4)) > 0) {
  3684. o.setOdoSection(SohMileageEnum.getDesc(4));
  3685. }
  3686. //soh区间
  3687. if (o.getSoh().compareTo(BigDecimal.valueOf(80)) < 0) {
  3688. o.setSohSection(SohPercentEnum.LESS_EIGHT.message());
  3689. } else if (o.getSoh().compareTo(BigDecimal.valueOf(80)) > 0 && o.getSoh().compareTo(BigDecimal.valueOf(90)) <= 0) {
  3690. o.setSohSection(SohPercentEnum.EIGHT_TO_NINE.message());
  3691. } else if (o.getSoh().compareTo(BigDecimal.valueOf(90)) > 0 && o.getSoh().compareTo(BigDecimal.valueOf(100)) <= 0) {
  3692. o.setSohSection(SohPercentEnum.NINE_TO_TEN.message());
  3693. } else {
  3694. o.setSohSection(SohPercentEnum.MORE_THEN_TEN.message());
  3695. }
  3696. }
  3697. //按照soh区间+odo区间分别计算
  3698. Map<String, Long> map = sohDataList.stream()
  3699. .collect(Collectors.groupingBy(x -> x.getSohSection() + "#" + x.getOdoSection(), Collectors.counting()));
  3700. for (SohPercentEnum e : SohPercentEnum.values()) {
  3701. SohMileageVo vo = new SohMileageVo();
  3702. vo.setTitle(SohPercentEnum.getDesc(e.code()));
  3703. List<Long> list = new ArrayList<>();
  3704. //初始化
  3705. for (SohMileageEnum s : SohMileageEnum.values()) {
  3706. list.add(0L);
  3707. }
  3708. map.forEach((key, value) -> {
  3709. for (SohMileageEnum s : SohMileageEnum.values()) {
  3710. if (key.startsWith(e.message()) && key.endsWith(s.message())) {
  3711. long value1;
  3712. value1 = value;
  3713. list.set(s.code(), value1);
  3714. break;
  3715. }
  3716. }
  3717. });
  3718. vo.setCarTotalityList(list);
  3719. sohMileageVoList.add(vo);
  3720. }
  3721. if (sohMileageVoList.size() > 0) {
  3722. SohOdo entity = new SohOdo();
  3723. entity.setDateInfo(dateStr);
  3724. entity.setData(JSON.toJSONString(sohMileageVoList));
  3725. sohOdoMapper.insert(entity);
  3726. }
  3727. }
  3728. }
  3729. }
  3730. private void setYesWeekMonthData(TodayCompareOtherVo bsVo, List<QuantityItemDateStaticVo> quantityItemVoList,
  3731. Integer type, String today, String yesterday, String lastWeek, String todays, String yesterdays, String lastWeeks, String lastMonth, int total) {
  3732. SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
  3733. SimpleDateFormat sdf2 = new SimpleDateFormat("yyyyMMdd020000");
  3734. bsVo.setCount("0");
  3735. bsVo.setYesterday("0");
  3736. bsVo.setYesterdayFlag(null);
  3737. bsVo.setWeek("0");
  3738. bsVo.setWeekFlag(null);
  3739. bsVo.setMonth("0");
  3740. bsVo.setMonthFlag(null);
  3741. //当日数据提前准备
  3742. // if (quantityItemVoList.size() > 0) {
  3743. BigDecimal tod = BigDecimal.ZERO;
  3744. BigDecimal yes = BigDecimal.ZERO;
  3745. BigDecimal law = BigDecimal.ZERO;
  3746. BigDecimal lam = BigDecimal.ZERO;
  3747. List<QuantityItemDateStaticVo> list = quantityItemVoList.stream()
  3748. .filter(o -> String.valueOf(type).equals(o.getItem())).collect(Collectors.toList());
  3749. for (QuantityItemDateStaticVo vo : list) {
  3750. if (Long.valueOf(sdf.format(new Date())) > Long.valueOf(sdf2.format(new Date()))) {
  3751. if (vo.getStaticDate().equals(today)) {
  3752. tod = vo.getQuantity();
  3753. }
  3754. if (vo.getStaticDate().equals(yesterday)) {
  3755. yes = vo.getQuantity();
  3756. }
  3757. if (vo.getStaticDate().equals(lastWeek)) {
  3758. law = vo.getQuantity();
  3759. }
  3760. } else {
  3761. if (vo.getStaticDate().equals(todays)) {
  3762. tod = vo.getQuantity();
  3763. }
  3764. if (vo.getStaticDate().equals(yesterdays)) {
  3765. yes = vo.getQuantity();
  3766. }
  3767. if (vo.getStaticDate().equals(lastWeeks)) {
  3768. law = vo.getQuantity();
  3769. }
  3770. }
  3771. if (vo.getStaticDate().equals(lastMonth)) {
  3772. lam = vo.getQuantity();
  3773. }
  3774. }
  3775. if (type == 8) {
  3776. bsVo.setCount(DecimalFormat.getNumberInstance().format(tod.divide(BigDecimal.valueOf(1000000L), 2, RoundingMode.HALF_UP)));
  3777. } else {
  3778. bsVo.setCount(DecimalFormat.getNumberInstance().format(tod));
  3779. }
  3780. boolean percent = false;
  3781. if (type.equals(BatteryOverviewEnum.ONLINE.code()) ||
  3782. type.equals(BatteryOverviewEnum.ALARM.code()) ||
  3783. type.equals(BatteryOverviewEnum.HIGH_VOLT.code()) ||
  3784. type.equals(BatteryOverviewEnum.SOH.code()) ||
  3785. type.equals(BatteryOverviewEnum.CAPACITY.code()) ||
  3786. type.equals(BatteryOverviewEnum.OPERATE_VEHICLE.code())) {
  3787. percent = true;
  3788. }
  3789. if (percent) {
  3790. bsVo.setYesterday(calculatePercent(tod, BigDecimal.valueOf(total)));
  3791. int res = setFlag(tod, yes);
  3792. bsVo.setYesterdayFlag(res);
  3793. } else {
  3794. if (law.compareTo(BigDecimal.ZERO) != 0 && yes.compareTo(BigDecimal.ZERO) != 0 && lam.compareTo(BigDecimal.ZERO) != 0) {
  3795. bsVo.setYesterday(calculateRate(tod, yes));
  3796. int res = setFlag(tod, yes);
  3797. bsVo.setYesterdayFlag(res);
  3798. bsVo.setWeek(calculateRate(tod, law));
  3799. res = setFlag(tod, law);
  3800. bsVo.setWeekFlag(res);
  3801. bsVo.setMonth(calculateRate(tod, lam));
  3802. res = setFlag(tod, lam);
  3803. bsVo.setMonthFlag(res);
  3804. } else {
  3805. bsVo.setYesterday("0");
  3806. bsVo.setWeek("0");
  3807. bsVo.setMonth("0");
  3808. bsVo.setYesterdayFlag(3);
  3809. bsVo.setWeekFlag(3);
  3810. bsVo.setMonthFlag(3);
  3811. }
  3812. }
  3813. // }
  3814. }
  3815. /**
  3816. * 批量添加电池标签
  3817. *
  3818. * @param dto 参数
  3819. * @return java.lang.String
  3820. */
  3821. @Override
  3822. @Transactional(rollbackFor = Exception.class)
  3823. public String batteryBatchAddTag(TagDto dto) {
  3824. int count = 0;
  3825. //先转换为列表
  3826. List<TagDto> dtoList = new ArrayList<>();
  3827. if (StringUtils.isNotBlank(dto.getBatchId())) {
  3828. List<String> list = Arrays.asList(dto.getBatchId().split(","));
  3829. if (list.size() > 0) {
  3830. list.forEach(o -> {
  3831. TagDto tagDto = new TagDto();
  3832. BeanUtils.copyProperties(dto, tagDto);
  3833. tagDto.setBatteryId(Long.parseLong(o));
  3834. dtoList.add(tagDto);
  3835. });
  3836. }
  3837. }
  3838. int size = dtoList.size();
  3839. if (size > 0) {
  3840. //已有标签列表
  3841. Set<Long> idSet = new HashSet<>();
  3842. dtoList.forEach(o -> idSet.add(o.getBatteryId()));
  3843. List<BatteryTag> batteryTagList = new ArrayList<>();
  3844. if (idSet.size() > 0) {
  3845. batteryTagList = batteryTagMapper.selectList(new LambdaQueryWrapper<BatteryTag>()
  3846. .eq(BatteryTag::getTagType, 0)
  3847. .in(BatteryTag::getBatteryId, idSet)
  3848. .eq(BatteryTag::getIsDelete, 0));
  3849. }
  3850. for (TagDto tagDto : dtoList) {
  3851. BatteryTag batteryTag = new BatteryTag();
  3852. BeanUtils.copyProperties(tagDto, batteryTag);
  3853. batteryTag.setTagType(0);
  3854. //已有的标签进行追加
  3855. if (batteryTagList.size() > 0) {
  3856. batteryTagList.forEach(o -> {
  3857. if (tagDto.getBatteryId().equals(o.getBatteryId()) && tagDto.getTagId().equals(o.getTagId())) {
  3858. batteryTag.setId(o.getId());
  3859. List<String> list = Arrays.asList(o.getChildTagList().split(","));
  3860. List<String> batchList = Arrays.asList(tagDto.getChildTagList().split(","));
  3861. //有则加,无则用
  3862. if (list.size() > 0) {
  3863. if (batchList.size() > 0) {
  3864. batchList.forEach(m -> {
  3865. if (!list.contains(m)) {
  3866. o.setChildTagList(o.getChildTagList().concat("," + m));
  3867. }
  3868. });
  3869. }
  3870. } else {
  3871. o.setChildTagList(tagDto.getChildTagList());
  3872. }
  3873. }
  3874. });
  3875. }
  3876. //有id说明是追加,执行更改,否则执行新增
  3877. int num = batteryTag.getId() != null ? batteryTagMapper.updateById(batteryTag) : batteryTagMapper.insert(batteryTag);
  3878. count = count + num;
  3879. }
  3880. }
  3881. //执行数量和预估数量一致,认为成功
  3882. if (count == size && count > 0) {
  3883. return Constants.OK;
  3884. } else {
  3885. return Constants.FAILED;
  3886. }
  3887. }
  3888. @Override
  3889. public void syncBatteryPackCode() {
  3890. //获取t_battery中全部pack
  3891. List<Battery> packCodeEntitys = baseMapper.selectList(new LambdaQueryWrapper<Battery>().select(Battery::getPackModelCode).groupBy(Battery::getPackModelCode));
  3892. //获取algo_adjustable_param中全部algo_id
  3893. List<ModelAdjustableParamEntity> algoIdEntitys = adjustableParamEntityMapper.selectList(new LambdaQueryWrapper<ModelAdjustableParamEntity>().select(ModelAdjustableParamEntity::getAlgoId).groupBy(ModelAdjustableParamEntity::getAlgoId));
  3894. //获取到的pack,algo_id存入set
  3895. Set<String> packCodeList = packCodeEntitys.stream().map(Battery::getPackModelCode).collect(Collectors.toSet());
  3896. Set<Long> algoIdSet = algoIdEntitys.stream().map(ModelAdjustableParamEntity::getAlgoId).collect(Collectors.toSet());
  3897. //遍历全部的algo_id
  3898. algoIdSet.forEach(id -> {
  3899. //根据algo_id查询对应algo_id绑定的pack号
  3900. List<ModelAdjustableParamEntity> getPacksByIdEntitys = adjustableParamEntityMapper.selectList(new LambdaQueryWrapper<ModelAdjustableParamEntity>()
  3901. .select(ModelAdjustableParamEntity::getAlgoId)
  3902. .select(ModelAdjustableParamEntity::getPackCode)
  3903. .eq(ModelAdjustableParamEntity::getAlgoId, id));
  3904. //获取到对应algo_id绑定的pack存入set
  3905. Set<String> packsSet = getPacksByIdEntitys.stream().map(ModelAdjustableParamEntity::getPackCode).collect(Collectors.toSet());
  3906. //收集t_battery中存在,algo_adjustable_param不存在的pack型号
  3907. List<String> packsCollect = packCodeList.stream().filter(o -> !packsSet.contains(o)).collect(Collectors.toList());
  3908. //判断packsCollect非空
  3909. if (packsCollect != null) {
  3910. //循环遍历packsCollect中的pack,存入algo_adjustable_param中对应的algo_id下
  3911. for (String pack : packsCollect) {
  3912. ModelAdjustableParamEntity paramEntity = new ModelAdjustableParamEntity();
  3913. paramEntity.setAlgoId(id);
  3914. paramEntity.setPackCode(pack);
  3915. adjustableParamEntityMapper.insert(paramEntity);
  3916. }
  3917. }
  3918. });
  3919. }
  3920. @Override
  3921. public void calSohQuantity() {
  3922. SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd");
  3923. String dateStr = sdf.format(new Date());
  3924. //计算soh占比
  3925. List<SohItemQuantity> sohItemQuantities = sohMapper.selectList(new QueryWrapper<SohItemQuantity>()
  3926. .select("date_info", "item", "quantity")
  3927. .eq("date_info", dateStr)
  3928. .eq("is_delete", 0));
  3929. SimpleDateFormat sdff = new SimpleDateFormat("yyyyMM");
  3930. String partNow = "p" + sdff.format(new Date());
  3931. String partBefore = "p" + sdff.format(lastMonthEndDay());
  3932. String partitions = partNow + "," + partBefore;
  3933. List<Battery> sohDataList = batteryMapper.getSohData(partitions);
  3934. if (sohItemQuantities.isEmpty()) {
  3935. if (sohDataList.size() > 0) {
  3936. sohDataList.forEach(o -> {
  3937. SohItemQuantity entity = new SohItemQuantity();
  3938. entity.setDateInfo(dateStr);
  3939. entity.setItem(o.getSohSection());
  3940. entity.setQuantity(o.getElectricQuantity());
  3941. sohMapper.insert(entity);
  3942. });
  3943. }
  3944. } else {
  3945. sohItemQuantities.forEach(o -> {
  3946. sohDataList.forEach(v -> {
  3947. if (o.getItem().equals(v.getSohSection()) && !o.getQuantity().equals(v.getElectricQuantity())) {
  3948. SohItemQuantity entity = new SohItemQuantity();
  3949. entity.setDateInfo(dateStr);
  3950. entity.setItem(v.getSohSection());
  3951. entity.setQuantity(v.getElectricQuantity());
  3952. sohMapper.updateByDateStr(entity);
  3953. }
  3954. });
  3955. });
  3956. }
  3957. }
  3958. }