WzHouseMaintenaCostController.java 49 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073
  1. package com.example.controller;
  2. import com.example.config.annotation.IgnoreAuth;
  3. import com.example.entity.OtnAreaEntity;
  4. import com.example.entity.WzHouseMaintEntity;
  5. import com.example.entity.WzHouseMaintenaCostEntity;
  6. import com.example.entity.vo.DailyModifyVo;
  7. import com.example.entity.vo.HighFrequencyVo;
  8. import com.example.entity.vo.housecost.HouseCostVo;
  9. import com.example.service.WzHouseMaintService;
  10. import com.example.service.WzHouseMaintenaCostService;
  11. import com.example.service.WzOtnAreaService;
  12. import com.example.service.WzStrategyService;
  13. import com.example.utils.PageMap;
  14. import com.example.utils.PageUtils;
  15. import com.example.utils.Query;
  16. import com.example.utils.R;
  17. import com.example.utils.excel.ExcelExport;
  18. import org.springframework.beans.factory.annotation.Autowired;
  19. import org.springframework.web.bind.annotation.GetMapping;
  20. import org.springframework.web.bind.annotation.RequestBody;
  21. import org.springframework.web.bind.annotation.RequestMapping;
  22. import org.springframework.web.bind.annotation.RestController;
  23. import javax.servlet.http.HttpServletResponse;
  24. import java.math.BigDecimal;
  25. import java.text.DateFormat;
  26. import java.text.DecimalFormat;
  27. import java.text.SimpleDateFormat;
  28. import java.util.ArrayList;
  29. import java.util.Date;
  30. import java.util.HashMap;
  31. import java.util.List;
  32. import java.util.Map;
  33. @RestController
  34. @RequestMapping("/house-car/house/dist/api/wzHouseMaintenaCost")
  35. public class WzHouseMaintenaCostController {
  36. @Autowired
  37. private WzOtnAreaService otnAreaService;
  38. @Autowired
  39. private WzHouseMaintenaCostService wzHouseMaintenaCostService;
  40. @Autowired
  41. private WzHouseMaintService wzHouseMaintService;
  42. @Autowired
  43. private WzStrategyService wzStrategyService;
  44. // /**
  45. // * 查看列表
  46. // */
  47. // @RequestMapping("/list")
  48. // @IgnoreAuth
  49. // public R list(@RequestBody PageMap pageMap) {
  50. // //查询列表数据
  51. // Query query = new Query(pageMap);
  52. // List<WzHouseMaintenaCostEntity> resultList = wzHouseMaintenaCostService.queryList(query);
  53. // Query query1 = new Query(pageMap);
  54. // int total = wzHouseMaintenaCostService.queryTotal(query1);
  55. // PageUtils pageUtil = new PageUtils(resultList, total, query.getLimit(), query.getPage());
  56. // return R.ok().put("page", pageUtil);
  57. // }
  58. // /**
  59. // * 查看列表
  60. // */
  61. // @RequestMapping("/list1")
  62. // @IgnoreAuth
  63. // public R list1(@RequestBody PageMap pageMap) {
  64. // //查询列表数据
  65. // Query query = new Query(pageMap);
  66. // List<WzHouseMaintenaCostEntity> resultList = wzHouseMaintenaCostService.queryList1(query);
  67. // //每平方米维修单价
  68. // for (WzHouseMaintenaCostEntity wzHouseMaintenaCostEntity : resultList) {
  69. // wzHouseMaintenaCostEntity.setAveragePrice(formatDouble(wzHouseMaintenaCostEntity.getAveragePrice()));
  70. // }
  71. // Query query1 = new Query(pageMap);
  72. // int total = wzHouseMaintenaCostService.queryTotal1(query1);
  73. // PageUtils pageUtil = new PageUtils(resultList, total, query.getLimit(), query.getPage());
  74. // return R.ok().put("page", pageUtil);
  75. // }
  76. @RequestMapping("/queryVoList")
  77. @IgnoreAuth
  78. public R queryVoList(@RequestBody PageMap pageMap) {
  79. //查询列表数据
  80. Query query = new Query(pageMap);
  81. List<WzHouseMaintenaCostEntity> resultList = wzHouseMaintenaCostService.queryList(query);
  82. int total = wzHouseMaintenaCostService.queryTotal(query);
  83. PageUtils pageUtil = new PageUtils(resultList, total, query.getLimit(), query.getPage());
  84. return R.ok().put("page", pageUtil);
  85. }
  86. // @RequestMapping("/queryEchart")
  87. // @IgnoreAuth
  88. // public R queryEchart(@RequestBody PageMap pageMap) {
  89. // //查询列表数据
  90. // List<WzHouseMaintenaCostEntity> alllist = wzHouseMaintenaCostService.queryList1(pageMap.getMap());
  91. // //全省节点
  92. // HouseCostVo province = new HouseCostVo();
  93. // province.setCounty("全省");
  94. // province.setCity("全省");
  95. //
  96. // double aProjectCost = 0l;
  97. // double aSmallCost = 0l;
  98. // double aWarnCost = 0l;
  99. // double aProCost = 0l;
  100. // double aOtherCost = 0l;
  101. // double aAllCost = 0l;
  102. // //按地市进行划分
  103. // Map<String, List<WzHouseMaintenaCostEntity>> cityMap = new HashMap<>();
  104. // for (WzHouseMaintenaCostEntity entity : alllist) {
  105. // if (entity.getCity() == null) continue;
  106. // List<WzHouseMaintenaCostEntity> list;
  107. // if (cityMap.get(entity.getCity()) != null) {
  108. // list = cityMap.get(entity.getCity());
  109. // list.add(entity);
  110. // } else {
  111. // list = new ArrayList<>();
  112. // list.add(entity);
  113. // }
  114. // cityMap.put(entity.getCity(), list);
  115. // }
  116. // //按区进行划分
  117. // List<HouseCostVo> resultList = new ArrayList<>();
  118. // List<HouseCostVo> cityList = new ArrayList<>();
  119. // for (Map.Entry<String, List<WzHouseMaintenaCostEntity>> entry : cityMap.entrySet()) {
  120. // List<WzHouseMaintenaCostEntity> list = entry.getValue();
  121. // //县的Map集合
  122. // Map<String, List<WzHouseMaintenaCostEntity>> countyMap = new HashMap<>();
  123. // for (WzHouseMaintenaCostEntity leaveUseVo : list) {
  124. // if (countyMap.get(leaveUseVo.getCounty()) != null) {
  125. // list = countyMap.get(leaveUseVo.getCounty());
  126. // list.add(leaveUseVo);
  127. // } else {
  128. // list = new ArrayList<>();
  129. // list.add(leaveUseVo);
  130. // }
  131. // countyMap.put(leaveUseVo.getCounty(), list);
  132. // }
  133. //
  134. // List<HouseCostVo> countyList = new ArrayList<>();
  135. // double cityProjectCost = 0l;
  136. // double citySmallCost = 0l;
  137. // double cityWarnCost = 0l;
  138. // double cityProCost = 0l;
  139. // double cityOtherCost = 0l;
  140. // double cityAllCost = 0l;
  141. // for (Map.Entry<String, List<WzHouseMaintenaCostEntity>> countyEntry : countyMap.entrySet()) {
  142. // double projectCost = 0l;
  143. // double smallCost = 0l;
  144. // double warnCost = 0l;
  145. // double proCost = 0l;
  146. // double otherCost = 0l;
  147. // double allCost = 0l;
  148. //
  149. // HouseCostVo county = new HouseCostVo();
  150. // for (WzHouseMaintenaCostEntity leaveUseVo : countyEntry.getValue()) {
  151. // county.setCity(leaveUseVo.getCounty());
  152. // if (leaveUseVo.getRepairType().equals("项目制维修")) {
  153. // projectCost += leaveUseVo.getErpCreditedAmount();
  154. // cityProjectCost += leaveUseVo.getErpCreditedAmount();
  155. // aProjectCost += leaveUseVo.getErpCreditedAmount();
  156. // allCost +=leaveUseVo.getErpCreditedAmount();
  157. // cityAllCost +=leaveUseVo.getErpCreditedAmount();
  158. // aAllCost +=leaveUseVo.getErpCreditedAmount();
  159. // } else if (leaveUseVo.getRepairType().equals("零星维修")) {
  160. // smallCost += leaveUseVo.getErpCreditedAmount();
  161. // citySmallCost += leaveUseVo.getErpCreditedAmount();
  162. // aSmallCost += leaveUseVo.getErpCreditedAmount();
  163. // allCost +=leaveUseVo.getErpCreditedAmount();
  164. // cityAllCost +=leaveUseVo.getErpCreditedAmount();
  165. // aAllCost +=leaveUseVo.getErpCreditedAmount();
  166. // } else if (leaveUseVo.getRepairType().equals("应急维修")) {
  167. // warnCost += leaveUseVo.getErpCreditedAmount();
  168. // cityWarnCost += leaveUseVo.getErpCreditedAmount();
  169. // aWarnCost += leaveUseVo.getErpCreditedAmount();
  170. // allCost +=leaveUseVo.getErpCreditedAmount();
  171. // cityAllCost +=leaveUseVo.getErpCreditedAmount();
  172. // aAllCost +=leaveUseVo.getErpCreditedAmount();
  173. // } else if (leaveUseVo.getRepairType().equals("安防费用")) {
  174. // proCost += leaveUseVo.getErpCreditedAmount();
  175. // cityProCost += leaveUseVo.getErpCreditedAmount();
  176. // aProCost += leaveUseVo.getErpCreditedAmount();
  177. // allCost +=leaveUseVo.getErpCreditedAmount();
  178. // cityAllCost +=leaveUseVo.getErpCreditedAmount();
  179. // aAllCost +=leaveUseVo.getErpCreditedAmount();
  180. // } else {
  181. // if(leaveUseVo.getRepairType().contains("预提冲销")){
  182. // continue;
  183. // }
  184. // otherCost += leaveUseVo.getErpCreditedAmount();
  185. // cityOtherCost += leaveUseVo.getErpCreditedAmount();
  186. // aOtherCost += leaveUseVo.getErpCreditedAmount();
  187. // }
  188. //// allCost += projectCost + smallCost + warnCost + proCost + otherCost;
  189. //// cityAllCost += cityProjectCost + citySmallCost + cityWarnCost + cityProCost + cityOtherCost;
  190. //// aAllCost += aProjectCost + aSmallCost + aWarnCost + aProCost + aOtherCost;
  191. //
  192. // }
  193. // county.setProjectCost(formatDouble(projectCost));
  194. // county.setProCost(formatDouble(proCost));
  195. // county.setOtherCost(formatDouble(otherCost));
  196. // county.setSmallCost(formatDouble(smallCost));
  197. // county.setWarnCost(formatDouble(warnCost));
  198. // county.setAllCost(formatDouble(allCost));
  199. // countyList.add(county);
  200. // }
  201. //
  202. // List<HouseCostVo> orderCountyList = new ArrayList<>();
  203. // try {
  204. // //对countList 进行排序
  205. // String city = list.get(0).getCity();
  206. // if (city.contains("市")) {
  207. // city = city.split("市")[0];
  208. // }
  209. // OtnAreaEntity area = otnAreaService.queryObject(city);
  210. // List<OtnAreaEntity> countyAreaList = otnAreaService.getCityOption(area.getId());
  211. // int i=0;
  212. // for (OtnAreaEntity otnAreaEntity : countyAreaList) {
  213. // for (HouseCostVo wzCity : countyList) {
  214. // if (otnAreaEntity.getName().equals(wzCity.getCity())) {
  215. // i++;
  216. // wzCity.setFlag(i%2==0);
  217. // orderCountyList.add(wzCity);
  218. // }
  219. // }
  220. // }
  221. // } catch (Exception e) {
  222. // orderCountyList = countyList;
  223. // e.printStackTrace();
  224. // }
  225. //
  226. // HouseCostVo parent = new HouseCostVo();
  227. // parent.setProCost(formatDouble(cityProCost));
  228. // parent.setWarnCost(formatDouble(cityWarnCost));
  229. // parent.setProjectCost(formatDouble(cityProjectCost));
  230. // parent.setOtherCost(formatDouble(cityOtherCost));
  231. // parent.setSmallCost(formatDouble(citySmallCost));
  232. // parent.setAllCost(formatDouble(cityAllCost));
  233. // parent.setCity(list.get(0).getCity());
  234. // parent.setChildren(orderCountyList);
  235. // cityList.add(parent);
  236. // }
  237. //
  238. // //对cityList 进行排序
  239. // List<OtnAreaEntity> areaList = otnAreaService.getCityOption("018");
  240. // List<HouseCostVo> orderList = new ArrayList<>();
  241. // int i=0;
  242. // for (OtnAreaEntity otnAreaEntity : areaList) {
  243. // for (HouseCostVo wzCity : cityList) {
  244. // if (wzCity.getCity().contains(otnAreaEntity.getName())) {
  245. // wzCity.setFlag(i%2==0);
  246. // orderList.add(wzCity);
  247. // i++;
  248. // }
  249. // }
  250. // }
  251. //
  252. // province.setChildren(orderList);
  253. // province.setAllCost(formatDouble(aAllCost));
  254. // province.setSmallCost(formatDouble(aSmallCost));
  255. // province.setOtherCost(formatDouble(aOtherCost));
  256. // province.setProjectCost(formatDouble(aProjectCost));
  257. // province.setProCost(formatDouble(aProCost));
  258. // province.setWarnCost(formatDouble(aWarnCost));
  259. // resultList.add(province);
  260. //
  261. // PageUtils pageUtil = new PageUtils(resultList, 0, 10, 10);
  262. // return R.ok().put("page", pageUtil);
  263. // }
  264. /**
  265. * 同维修内容频次统计
  266. */
  267. // @RequestMapping("/queryHighFrequency")
  268. // @IgnoreAuth
  269. // public R queryHighFrequency(@RequestBody PageMap pageMap) {
  270. // Query query = new Query(pageMap);
  271. // List<HighFrequencyVo> highPriceList = wzHouseMaintenaCostService.queryHighFrequency(query);
  272. //
  273. // Query query1 = new Query(pageMap);
  274. // query1.put("sidx","num");
  275. // query1.put("order","desc");
  276. // query1.put("limit",20);
  277. // query1.put("page",1);
  278. // query1.put("offset",0);
  279. // List<HighFrequencyVo> allhighPriceList = wzHouseMaintenaCostService.queryHighFrequency(query1);
  280. //
  281. // int i=1;
  282. // for (HighFrequencyVo highFrequencyVo : allhighPriceList) {
  283. // highFrequencyVo.setOrder(i);
  284. // i++;
  285. // }
  286. // for (HighFrequencyVo highFrequencyVo : highPriceList) {
  287. // for (HighFrequencyVo item : allhighPriceList) {
  288. // if(item.getBuildingAlias()==null&&highFrequencyVo.getBuildingAlias()!=null){
  289. // continue;
  290. // }
  291. // if(item.getBuildingAlias()!=null&&highFrequencyVo.getBuildingAlias()==null){
  292. // continue;
  293. // }
  294. // if(item.getCity()==null&&highFrequencyVo.getCity()!=null){
  295. // continue;
  296. // }
  297. // if(item.getCity()!=null&&highFrequencyVo.getCity()==null){
  298. // continue;
  299. // }
  300. // if(item.getRepairType()==null&&highFrequencyVo.getRepairType()!=null){
  301. // continue;
  302. // }
  303. // if(item.getRepairType()!=null&&highFrequencyVo.getRepairType()==null){
  304. // continue;
  305. // }
  306. // if(((item.getCity()==null&&highFrequencyVo.getCity()==null)||item.getCity().equals(highFrequencyVo.getCity()))
  307. // &&((item.getBuildingAlias()==null&&highFrequencyVo.getBuildingAlias()==null)||item.getBuildingAlias().equals(highFrequencyVo.getBuildingAlias()))
  308. // &&((item.getRepairType()==null&&highFrequencyVo.getRepairType()==null)||item.getRepairType().equals(highFrequencyVo.getRepairType()))){
  309. // highFrequencyVo.setOrder(item.getOrder());
  310. // break;
  311. // }
  312. // }
  313. // }
  314. // PageUtils pageUtil = new PageUtils(highPriceList, 20, 10, 10);
  315. // return R.ok().put("page", pageUtil);
  316. // }
  317. /**
  318. * 清单excel
  319. */
  320. @GetMapping("/excel")
  321. @IgnoreAuth
  322. public void excel(String name,
  323. String statisticalMonth,
  324. String buildingNameAlias,
  325. String investmentEntity,
  326. String city,
  327. String county,
  328. String code,
  329. HttpServletResponse response) {
  330. Map<String, Object> map = new HashMap<>();
  331. if(statisticalMonth==null||statisticalMonth.equals("")||statisticalMonth.equals("undefined")){
  332. }else{
  333. map.put("statisticalMonth",statisticalMonth);
  334. }
  335. if(investmentEntity==null||investmentEntity.equals("")||investmentEntity.equals("undefined")){
  336. }else{
  337. map.put("investmentEntity",investmentEntity);
  338. }
  339. if(code==null||code.equals("")||code.equals("undefined")){
  340. }else{
  341. map.put("code",code);
  342. }
  343. if (buildingNameAlias != null) {
  344. map.put("buildingNameAlias", buildingNameAlias);
  345. }
  346. if (city != null) {
  347. map.put("city", city);
  348. }
  349. if (county != null) {
  350. map.put("county", county);
  351. }
  352. DateFormat df = new SimpleDateFormat("yyyyMMddHHmmss");
  353. ExcelExport ee1 = new ExcelExport("报表" + df.format(new Date()));
  354. //判定是闲置管理还是记录
  355. if (name.contains("相同维修频次统计")) {
  356. ee1 = new ExcelExport("维修异常监控_相同维修频次统计" + df.format(new Date()));
  357. responseTab1(df, ee1, map);
  358. ee1.export(response);
  359. } else if (name.contains("高总价统计")) {
  360. ee1 = new ExcelExport("维修异常监控_高总价统计" + df.format(new Date()));
  361. responseTab2(df,ee1,map);
  362. ee1.export(response);
  363. } else if (name.contains("高额日常零星维修")) {
  364. ee1 = new ExcelExport("维修异常监控_高额日常零星维修" + df.format(new Date()));
  365. responseTab3(df,ee1,map);
  366. ee1.export(response);
  367. } else if (name.contains("不可用发生维修费")) {
  368. ee1 = new ExcelExport("维修异常监控_闲置+不可用发生维修费" + df.format(new Date()));
  369. responseTab4(df,ee1,map);
  370. ee1.export(response);
  371. } else if (name.contains("房产3年无维修")) {
  372. ee1 = new ExcelExport("维修异常监控_房产3年无维修" + df.format(new Date()));
  373. responseTab5(df,ee1,map);
  374. ee1.export(response);
  375. } else if (name.contains("维修费统计")){
  376. ee1 = new ExcelExport("房屋维修_维修费统计" + df.format(new Date()));
  377. responseTab6(df,ee1,map);
  378. ee1.export(response);
  379. }else if (name.contains("维修费详表")){
  380. ee1 = new ExcelExport("房屋维修_维修费记录" + df.format(new Date()));
  381. responseTab7(df,ee1,map);
  382. ee1.export(response);
  383. }
  384. }
  385. public void responseTab1(DateFormat df, ExcelExport ee1, Map<String, Object> map1) {
  386. Query query = new Query(map1);
  387. List<HighFrequencyVo> resultList = wzHouseMaintenaCostService.queryHighFrequency(query);
  388. Query query1 = new Query(map1);
  389. query1.put("sidx","num");
  390. query1.put("order","desc");
  391. query1.put("limit",20);
  392. query1.put("page",1);
  393. query1.put("offset",0);
  394. List<HighFrequencyVo> allhighPriceList = wzHouseMaintenaCostService.queryHighFrequency(query1);
  395. int j=1;
  396. for (HighFrequencyVo highFrequencyVo : allhighPriceList) {
  397. highFrequencyVo.setOrder(j);
  398. j++;
  399. }
  400. for (HighFrequencyVo highFrequencyVo : resultList) {
  401. for (HighFrequencyVo item : allhighPriceList) {
  402. if(item.getBuildingAlias()==null&&highFrequencyVo.getBuildingAlias()!=null){
  403. continue;
  404. }
  405. if(item.getBuildingAlias()!=null&&highFrequencyVo.getBuildingAlias()==null){
  406. continue;
  407. }
  408. if(item.getCity()==null&&highFrequencyVo.getCity()!=null){
  409. continue;
  410. }
  411. if(item.getCity()!=null&&highFrequencyVo.getCity()==null){
  412. continue;
  413. }
  414. if(item.getRepairType()==null&&highFrequencyVo.getRepairType()!=null){
  415. continue;
  416. }
  417. if(item.getRepairType()!=null&&highFrequencyVo.getRepairType()==null){
  418. continue;
  419. }
  420. if(((item.getCity()==null&&highFrequencyVo.getCity()==null)||item.getCity().equals(highFrequencyVo.getCity()))
  421. &&((item.getBuildingAlias()==null&&highFrequencyVo.getBuildingAlias()==null)||item.getBuildingAlias().equals(highFrequencyVo.getBuildingAlias()))
  422. &&((item.getRepairType()==null&&highFrequencyVo.getRepairType()==null)||item.getRepairType().equals(highFrequencyVo.getRepairType()))){
  423. highFrequencyVo.setOrder(item.getOrder());
  424. break;
  425. }
  426. }
  427. }
  428. List<Object> colList = new ArrayList();;
  429. List<Object[]> allList = new ArrayList();
  430. for (int i = 0; i < resultList.size(); i++) {
  431. colList = new ArrayList();
  432. colList.add(resultList.get(i).getCity());
  433. colList.add(resultList.get(i).getBuildingAlias());
  434. colList.add(resultList.get(i).getRepairType());
  435. colList.add(resultList.get(i).getTime());
  436. colList.add(resultList.get(i).getNum());
  437. colList.add(resultList.get(i).getOrder());
  438. allList.add(colList.toArray());
  439. }
  440. String[] header = new String[]{
  441. "单位",
  442. "维修建筑",
  443. "维修类型",
  444. "时间",
  445. "发生频率",
  446. "排名"
  447. };
  448. ee1.addSheetByArray(df.format(new Date()) + "清单", allList, header);
  449. }
  450. /**
  451. * 高总价维修统计
  452. */
  453. public void responseTab2(DateFormat df, ExcelExport ee1, Map<String, Object> map1) {
  454. Query query = new Query(map1);
  455. List<WzHouseMaintenaCostEntity> resultList = wzHouseMaintenaCostService.queryHighPrice(query);
  456. List<Object> colList;
  457. List<Object[]> allList = new ArrayList();
  458. for (int i = 0; i < resultList.size(); i++) {
  459. colList = new ArrayList();
  460. colList.add(resultList.get(i).getStatisticalMonth());
  461. colList.add(resultList.get(i).getCity());
  462. colList.add(resultList.get(i).getCounty());
  463. colList.add(resultList.get(i).getBuildingAlias());
  464. colList.add(resultList.get(i).getRepairType());
  465. colList.add(resultList.get(i).getRepairContent());
  466. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getErpCreditedAmount(),true));
  467. colList.add(resultList.get(i).getStandardAddress());
  468. colList.add(resultList.get(i).getBuildingUse());
  469. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getBuildingArea(),true));
  470. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getBuildingAreaUseArea(),true));
  471. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getBuildingAreaRentArea(),true));
  472. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getBuildingAreaUnavailable(),true));
  473. allList.add(colList.toArray());
  474. }
  475. String[] header = new String[]{
  476. "入账日期",
  477. "二级单位",
  478. "三级单位",
  479. "建筑别名",
  480. "维修类型",
  481. "维修内容",
  482. "erp入账金额元",
  483. "标准地址",
  484. "建筑用途",
  485. "建筑面积㎡",
  486. "建筑面积自用㎡",
  487. "建筑面积出租㎡",
  488. "建筑面积闲置㎡"
  489. };
  490. ee1.addSheetByArray(df.format(new Date()) + "清单", allList, header);
  491. }
  492. public void responseTab3(DateFormat df, ExcelExport ee1, Map<String, Object> map1) {
  493. map1.put("repairType", "零星维修");
  494. map1.put("erpCreditedAmount", 10000);
  495. Query query=new Query(map1);
  496. List<DailyModifyVo> resultList = wzHouseMaintenaCostService.queryDailyModify(query);
  497. List<Object> colList = new ArrayList();;
  498. List<Object[]> allList = new ArrayList();
  499. for (int i = 0; i < resultList.size(); i++) {
  500. colList = new ArrayList();
  501. colList.add(resultList.get(i).getCity());
  502. colList.add(resultList.get(i).getBuildingAlias());
  503. colList.add(resultList.get(i).getDate());
  504. colList.add(resultList.get(i).getRepairType());
  505. colList.add(resultList.get(i).getRepairContent());
  506. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getErpMoney(),true));
  507. colList.add(resultList.get(i).getNum());
  508. allList.add(colList.toArray());
  509. }
  510. String[] header = new String[]{
  511. "单位",
  512. "维修建筑",
  513. "维修时间",
  514. "维修类型",
  515. "维修内容",
  516. "维修金额",
  517. "本年超万元次数"
  518. };
  519. ee1.addSheetByArray(df.format(new Date()) + "清单", allList, header);
  520. }
  521. public void responseTab4(DateFormat df, ExcelExport ee1, Map<String, Object> map1) {
  522. List<WzHouseMaintenaCostEntity> resultList = wzHouseMaintenaCostService.queryList(map1);
  523. List<Object> colList = new ArrayList();;
  524. List<Object[]> allList = new ArrayList();
  525. for (int i = 0; i < resultList.size(); i++) {
  526. colList = new ArrayList();
  527. colList.add(resultList.get(i).getStatisticalMonth());
  528. colList.add(resultList.get(i).getCity());
  529. colList.add(resultList.get(i).getCounty());
  530. colList.add(resultList.get(i).getBuildingAlias());
  531. colList.add(resultList.get(i).getRepairType());
  532. colList.add(resultList.get(i).getRepairContent());
  533. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getErpCreditedAmount(),true));
  534. colList.add(resultList.get(i).getStandardAddress());
  535. colList.add(resultList.get(i).getUseState());
  536. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getBuildingArea(),true));
  537. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getBuildingAreaUseArea(),true));
  538. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getBuildingAreaRentArea(),true));
  539. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getBuildingAreaIdelArea(),true));
  540. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getBuildingAreaUnavailable(),true));
  541. allList.add(colList.toArray());
  542. }
  543. String[] header = new String[]{
  544. "入账日期",
  545. "二级单位",
  546. "三级单位",
  547. "建筑别名",
  548. "维修类型",
  549. "维修内容",
  550. "erp入账金额元",
  551. "标准地址",
  552. "使用状态",
  553. "建筑面积㎡",
  554. "建筑面积自用㎡",
  555. "建筑面积出租㎡",
  556. "建筑面积闲置㎡",
  557. "建筑面积不可使用㎡"
  558. };
  559. ee1.addSheetByArray(df.format(new Date()) + "清单", allList, header);
  560. }
  561. public void responseTab5(DateFormat df, ExcelExport ee1, Map<String, Object> map1) {
  562. List<WzHouseMaintEntity> list = wzHouseMaintService.queryList(map1);
  563. //对cityList 进行排序
  564. List<OtnAreaEntity> areaList = otnAreaService.getCityOption("018");
  565. List<WzHouseMaintEntity> resultList = new ArrayList<>();
  566. for (OtnAreaEntity otnAreaEntity : areaList) {
  567. for (WzHouseMaintEntity wzCity : list) {
  568. if (wzCity.getCity().contains(otnAreaEntity.getName())) {
  569. wzCity.setAll();
  570. resultList.add(wzCity);
  571. }
  572. }
  573. }
  574. List<Object> colList;
  575. List<Object[]> allList = new ArrayList();
  576. for (int i = 0; i < resultList.size(); i++) {
  577. colList = new ArrayList();
  578. colList.add(resultList.get(i).getCity());
  579. colList.add("");
  580. colList.add(resultList.get(i).getHouseAgeLessThanTwenty());
  581. colList.add(resultList.get(i).getHouseAgeBetweentTewntyAndForty());
  582. colList.add(resultList.get(i).getHouseAgeMoreThanFortyOne());
  583. colList.add(resultList.get(i).getHouseAll());
  584. colList.add("");
  585. colList.add(resultList.get(i).getBuildingAgeLessThanTwenty());
  586. colList.add(resultList.get(i).getBuildingAgeBetweentTewntyAndForty());
  587. colList.add(resultList.get(i).getBuildingAgeMoreThanFortyOne());
  588. colList.add(resultList.get(i).getBuildingAll());
  589. allList.add(colList.toArray());
  590. }
  591. String[] header = new String[]{
  592. "单位",
  593. "主业用房",
  594. "房龄<20年",
  595. "房龄21~40年",
  596. "房龄>41年",
  597. "总计",
  598. "全部建筑",
  599. "房龄<20年",
  600. "房龄21~40年",
  601. "房龄>41年",
  602. "总计"
  603. };
  604. ee1.addSheetByArray(df.format(new Date()) + "清单", allList, header);
  605. }
  606. /**
  607. * 高总价统计
  608. */
  609. // @RequestMapping("/queryHighPrice")
  610. // @IgnoreAuth
  611. // public R queryHighPrice(@RequestBody PageMap pageMap) {
  612. // Query query = new Query(pageMap);
  613. // WzStrategyEntity objectByType = wzStrategyService.getObjectByType();
  614. // int value=0;
  615. // if(objectByType!=null){
  616. // String[] values=objectByType.getValue().split(",");
  617. // value=Integer.valueOf(values[2]);
  618. // query.put("erpCreditedAmount", value);
  619. // }
  620. // List<WzHouseMaintenaCostEntity> highPriceList = wzHouseMaintenaCostService.queryHighPrice(query);
  621. // PageUtils pageUtil = new PageUtils(highPriceList, highPriceList.size(), 10, 10);
  622. // return R.ok().put("page", pageUtil);
  623. // }
  624. /**
  625. * 日常零星维修
  626. */
  627. // @RequestMapping("/queryDailyModify")
  628. // @IgnoreAuth
  629. // public R queryDailyModify(@RequestBody PageMap pageMap) {
  630. // Query query = new Query(pageMap);
  631. // Query query1 = new Query(pageMap);
  632. // //获取配置参数
  633. // int value=10000;
  634. // WzStrategyEntity objectByType = wzStrategyService.getObjectByType();
  635. // if(objectByType!=null){
  636. // String[] values=objectByType.getValue().split(",");
  637. // value=Integer.valueOf(values[3]);
  638. // query.put("erpCreditedAmount", value);
  639. // query1.put("erpCreditedAmount", value);
  640. // }
  641. // query.put("repairType", "零星维修");
  642. // List<DailyModifyVo> highPriceList = wzHouseMaintenaCostService.queryDailyModify(query);
  643. // query1.put("repairType", "零星维修");
  644. //
  645. // int total = wzHouseMaintenaCostService.queryDailyModifyTotal(query1);
  646. // PageUtils pageUtil = new PageUtils(highPriceList, total, 10, 10);
  647. // return R.ok().put("page", pageUtil);
  648. // }
  649. /**
  650. * 闲置+不可用发生维修费
  651. */
  652. @RequestMapping("/queryHappenCost")
  653. @IgnoreAuth
  654. public R queryHappenCost(@RequestBody PageMap pageMap) {
  655. Query query = new Query(pageMap);
  656. query.put("useAreaSelfUseArea", 0);
  657. query.put("useAreaRentArea", 0);
  658. List<WzHouseMaintenaCostEntity> highPriceList = wzHouseMaintenaCostService.queryList(query);
  659. Query query1 = new Query(pageMap);
  660. query1.put("useAreaSelfUseArea", 0);
  661. query1.put("useAreaRentArea", 0);
  662. int total = wzHouseMaintenaCostService.queryTotal(query1);
  663. PageUtils pageUtil = new PageUtils(highPriceList, total, 10, 10);
  664. return R.ok().put("page", pageUtil);
  665. }
  666. // /**
  667. // * 获取局址别名
  668. // */
  669. // @RequestMapping("/getBuildingNameCode")
  670. // @IgnoreAuth
  671. // public R getBuildingNameCode(@RequestBody PageMap pageMap) {
  672. // //查询列表数据
  673. // Query query = new Query(pageMap);
  674. // List<String> list = wzHouseMaintenaCostService.getBuildingNameCode(query);
  675. // Query query1 = new Query(pageMap);
  676. // int total = wzHouseMaintenaCostService.queryBuildDetailByCodeTotal(query1);
  677. // PageUtils pageUtil = new PageUtils(list, total, query.getLimit(), query.getPage());
  678. // return R.ok().put("page", pageUtil);
  679. // }
  680. //
  681. //
  682. // /**
  683. // * 获取局址别名
  684. // */
  685. // @RequestMapping("/getBuildingNameAlias")
  686. // @IgnoreAuth
  687. // public R getBuildingNameAlias(@RequestBody PageMap pageMap) {
  688. // //查询列表数据
  689. // Query query = new Query(pageMap);
  690. // List<String> list = wzHouseMaintenaCostService.getBuildingNameAlias(query);
  691. // Query query1 = new Query(pageMap);
  692. // int total = wzHouseMaintenaCostService.getBuildingNameAliasTotal(query1);
  693. // PageUtils pageUtil = new PageUtils(list, total, query.getLimit(), query.getPage());
  694. // return R.ok().put("page", pageUtil);
  695. // }
  696. public void responseTab6(DateFormat df, ExcelExport ee1, Map<String, Object> map1){
  697. List<WzHouseMaintenaCostEntity> alllist = wzHouseMaintenaCostService.queryList1(map1);
  698. //全省节点
  699. HouseCostVo province = new HouseCostVo();
  700. province.setCounty("全省");
  701. province.setCity("全省");
  702. double aProjectCost = 0l;
  703. double aSmallCost = 0l;
  704. double aWarnCost = 0l;
  705. double aProCost = 0l;
  706. double aOtherCost = 0l;
  707. double aAllCost = 0l;
  708. //按地市进行划分
  709. Map<String, List<WzHouseMaintenaCostEntity>> cityMap = new HashMap<>();
  710. for (WzHouseMaintenaCostEntity entity : alllist) {
  711. if (entity.getCity() == null) continue;
  712. List<WzHouseMaintenaCostEntity> list;
  713. if (cityMap.get(entity.getCity()) != null) {
  714. list = cityMap.get(entity.getCity());
  715. list.add(entity);
  716. } else {
  717. list = new ArrayList<>();
  718. list.add(entity);
  719. }
  720. cityMap.put(entity.getCity(), list);
  721. }
  722. //按区进行划分
  723. List<HouseCostVo> resultList = new ArrayList<>();
  724. List<HouseCostVo> cityList = new ArrayList<>();
  725. for (Map.Entry<String, List<WzHouseMaintenaCostEntity>> entry : cityMap.entrySet()) {
  726. List<WzHouseMaintenaCostEntity> list = entry.getValue();
  727. //县的Map集合
  728. Map<String, List<WzHouseMaintenaCostEntity>> countyMap = new HashMap<>();
  729. for (WzHouseMaintenaCostEntity leaveUseVo : list) {
  730. if (countyMap.get(leaveUseVo.getCounty()) != null) {
  731. list = countyMap.get(leaveUseVo.getCounty());
  732. list.add(leaveUseVo);
  733. } else {
  734. list = new ArrayList<>();
  735. list.add(leaveUseVo);
  736. }
  737. countyMap.put(leaveUseVo.getCounty(), list);
  738. }
  739. List<HouseCostVo> countyList = new ArrayList<>();
  740. double cityProjectCost = 0l;
  741. double citySmallCost = 0l;
  742. double cityWarnCost = 0l;
  743. double cityProCost = 0l;
  744. double cityOtherCost = 0l;
  745. double cityAllCost = 0l;
  746. for (Map.Entry<String, List<WzHouseMaintenaCostEntity>> countyEntry : countyMap.entrySet()) {
  747. double projectCost = 0l;
  748. double smallCost = 0l;
  749. double warnCost = 0l;
  750. double proCost = 0l;
  751. double otherCost = 0l;
  752. double allCost = 0l;
  753. HouseCostVo county = new HouseCostVo();
  754. for (WzHouseMaintenaCostEntity leaveUseVo : countyEntry.getValue()) {
  755. county.setCity(leaveUseVo.getCounty());
  756. if (leaveUseVo.getRepairType().equals("项目制维修")) {
  757. projectCost += leaveUseVo.getErpCreditedAmount();
  758. cityProjectCost += leaveUseVo.getErpCreditedAmount();
  759. aProjectCost += leaveUseVo.getErpCreditedAmount();
  760. allCost +=leaveUseVo.getErpCreditedAmount();
  761. cityAllCost +=leaveUseVo.getErpCreditedAmount();
  762. aAllCost +=leaveUseVo.getErpCreditedAmount();
  763. } else if (leaveUseVo.getRepairType().equals("零星维修")) {
  764. smallCost += leaveUseVo.getErpCreditedAmount();
  765. citySmallCost += leaveUseVo.getErpCreditedAmount();
  766. aSmallCost += leaveUseVo.getErpCreditedAmount();
  767. allCost +=leaveUseVo.getErpCreditedAmount();
  768. cityAllCost +=leaveUseVo.getErpCreditedAmount();
  769. aAllCost +=leaveUseVo.getErpCreditedAmount();
  770. } else if (leaveUseVo.getRepairType().equals("应急维修")) {
  771. warnCost += leaveUseVo.getErpCreditedAmount();
  772. cityWarnCost += leaveUseVo.getErpCreditedAmount();
  773. aWarnCost += leaveUseVo.getErpCreditedAmount();
  774. allCost +=leaveUseVo.getErpCreditedAmount();
  775. cityAllCost +=leaveUseVo.getErpCreditedAmount();
  776. aAllCost +=leaveUseVo.getErpCreditedAmount();
  777. } else if (leaveUseVo.getRepairType().equals("安防费用")) {
  778. proCost += leaveUseVo.getErpCreditedAmount();
  779. cityProCost += leaveUseVo.getErpCreditedAmount();
  780. aProCost += leaveUseVo.getErpCreditedAmount();
  781. allCost +=leaveUseVo.getErpCreditedAmount();
  782. cityAllCost +=leaveUseVo.getErpCreditedAmount();
  783. aAllCost +=leaveUseVo.getErpCreditedAmount();
  784. } else {
  785. if(leaveUseVo.getRepairType().contains("预提冲销")){
  786. continue;
  787. }
  788. otherCost += leaveUseVo.getErpCreditedAmount();
  789. cityOtherCost += leaveUseVo.getErpCreditedAmount();
  790. aOtherCost += leaveUseVo.getErpCreditedAmount();
  791. }
  792. // allCost += projectCost + smallCost + warnCost + proCost + otherCost;
  793. // cityAllCost += cityProjectCost + citySmallCost + cityWarnCost + cityProCost + cityOtherCost;
  794. // aAllCost += aProjectCost + aSmallCost + aWarnCost + aProCost + aOtherCost;
  795. }
  796. county.setProjectCost(formatDouble(projectCost));
  797. county.setProCost(formatDouble(proCost));
  798. county.setOtherCost(formatDouble(otherCost));
  799. county.setSmallCost(formatDouble(smallCost));
  800. county.setWarnCost(formatDouble(warnCost));
  801. county.setAllCost(formatDouble(allCost));
  802. countyList.add(county);
  803. }
  804. List<HouseCostVo> orderCountyList = new ArrayList<>();
  805. try {
  806. //对countList 进行排序
  807. String city = list.get(0).getCity();
  808. if (city.contains("市")) {
  809. city = city.split("市")[0];
  810. }
  811. OtnAreaEntity area = otnAreaService.queryObject(city);
  812. List<OtnAreaEntity> countyAreaList = otnAreaService.getCityOption(area.getId());
  813. int i=0;
  814. for (OtnAreaEntity otnAreaEntity : countyAreaList) {
  815. for (HouseCostVo wzCity : countyList) {
  816. if (otnAreaEntity.getName().equals(wzCity.getCity())) {
  817. i++;
  818. wzCity.setFlag(i%2==0);
  819. orderCountyList.add(wzCity);
  820. }
  821. }
  822. }
  823. } catch (Exception e) {
  824. orderCountyList = countyList;
  825. e.printStackTrace();
  826. }
  827. HouseCostVo parent = new HouseCostVo();
  828. parent.setProCost(formatDouble(cityProCost));
  829. parent.setWarnCost(formatDouble(cityWarnCost));
  830. parent.setProjectCost(formatDouble(cityProjectCost));
  831. parent.setOtherCost(formatDouble(cityOtherCost));
  832. parent.setSmallCost(formatDouble(citySmallCost));
  833. parent.setAllCost(formatDouble(cityAllCost));
  834. parent.setCity(list.get(0).getCity());
  835. parent.setChildren(orderCountyList);
  836. cityList.add(parent);
  837. }
  838. //对cityList 进行排序
  839. List<OtnAreaEntity> areaList = otnAreaService.getCityOption("018");
  840. List<HouseCostVo> orderList = new ArrayList<>();
  841. for (OtnAreaEntity otnAreaEntity : areaList) {
  842. for (HouseCostVo wzCity : cityList) {
  843. if (wzCity.getCity().contains(otnAreaEntity.getName())) {
  844. orderList.add(wzCity);
  845. }
  846. }
  847. }
  848. province.setChildren(orderList);
  849. province.setAllCost(formatDouble(aAllCost));
  850. province.setSmallCost(formatDouble(aSmallCost));
  851. province.setOtherCost(formatDouble(aOtherCost));
  852. province.setProjectCost(formatDouble(aProjectCost));
  853. province.setProCost(formatDouble(aProCost));
  854. province.setWarnCost(formatDouble(aWarnCost));
  855. resultList.add(province);
  856. List<Object> colList=new ArrayList();;
  857. List<Object[]> allList = new ArrayList();
  858. for (int i = 0; i < resultList.size(); i++) {
  859. if(resultList.get(i).getCity().contains("省")){
  860. colList = new ArrayList();
  861. colList.add(resultList.get(i).getCity());
  862. colList.add("");
  863. colList.add("");
  864. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getProjectCost(),true));
  865. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getSmallCost(),true));
  866. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getWarnCost(),true));
  867. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getAllCost(),true));
  868. allList.add(colList.toArray());
  869. //处理城市的
  870. List<HouseCostVo> cityList1=resultList.get(i).getChildren();
  871. for (HouseCostVo floorNoUserVo : cityList1) {
  872. colList = new ArrayList();
  873. colList.add("");
  874. colList.add(floorNoUserVo.getCity());
  875. colList.add("");
  876. colList.add(WzHouseMaintenaCostController.toThousands(floorNoUserVo.getProjectCost(),true));
  877. colList.add(WzHouseMaintenaCostController.toThousands(floorNoUserVo.getSmallCost(),true));
  878. colList.add(WzHouseMaintenaCostController.toThousands(floorNoUserVo.getWarnCost(),true));
  879. colList.add(WzHouseMaintenaCostController.toThousands(floorNoUserVo.getAllCost(),true));
  880. allList.add(colList.toArray());
  881. //处理县城的
  882. List<HouseCostVo> countyList1 = floorNoUserVo.getChildren();
  883. for (HouseCostVo noUserVo : countyList1) {
  884. colList = new ArrayList();
  885. colList.add("");
  886. colList.add("");
  887. colList.add(noUserVo.getCity());
  888. colList.add(WzHouseMaintenaCostController.toThousands(noUserVo.getProjectCost(),true));
  889. colList.add(WzHouseMaintenaCostController.toThousands(noUserVo.getSmallCost(),true));
  890. colList.add(WzHouseMaintenaCostController.toThousands(noUserVo.getWarnCost(),true));
  891. colList.add(WzHouseMaintenaCostController.toThousands(noUserVo.getAllCost(),true));
  892. allList.add(colList.toArray());
  893. }
  894. }
  895. }
  896. }
  897. String[] header = new String[]{
  898. "资产所属单位(一级)",
  899. "资产所属单位(二级)",
  900. "资产所属单位(三级)",
  901. "项目制维修(元)",
  902. "零星维修(元)",
  903. "应急维修(元)",
  904. "总计(元)"
  905. };
  906. ee1.addSheetByArray("房屋维修_维修费统计"+df.format(new Date()) + "清单", allList, header);
  907. }
  908. public void responseTab7(DateFormat df, ExcelExport ee1, Map<String, Object> map1){
  909. List<WzHouseMaintenaCostEntity> resultList = wzHouseMaintenaCostService.queryList1(map1);
  910. //每平方米维修单价
  911. for (WzHouseMaintenaCostEntity wzHouseMaintenaCostEntity : resultList) {
  912. wzHouseMaintenaCostEntity.setAveragePrice(formatDouble(wzHouseMaintenaCostEntity.dealPrice(wzHouseMaintenaCostEntity)));
  913. }
  914. List<Object> colList;
  915. List<Object[]> allList = new ArrayList();
  916. for (int i = 0; i < resultList.size(); i++) {
  917. colList = new ArrayList();
  918. colList.add(resultList.get(i).getBuildingId());
  919. colList.add(resultList.get(i).getStatisticalMonth());
  920. colList.add(resultList.get(i).getRepairType());
  921. colList.add(resultList.get(i).getRepairContent());
  922. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getErpCreditedAmount(),true));
  923. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getAveragePrice(),true));
  924. colList.add(resultList.get(i).getCity());
  925. colList.add(resultList.get(i).getCounty());
  926. colList.add(resultList.get(i).getBuildingAddressNumber());
  927. colList.add(resultList.get(i).getBuildingNnameAlias());
  928. colList.add(resultList.get(i).getStandardAddress());
  929. colList.add(resultList.get(i).getCityGrade());
  930. colList.add(resultList.get(i).getCityArea());
  931. colList.add(resultList.get(i).getInvestmentEntity());
  932. colList.add(resultList.get(i).getManagementHierarchy());
  933. colList.add(resultList.get(i).getBuildingStructure());
  934. colList.add(resultList.get(i).getUseState());
  935. colList.add(resultList.get(i).getBuildingUse());
  936. colList.add(resultList.get(i).getOwnershipStatus());
  937. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getBuildingFloorArea(),true));
  938. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getBuildingArea(),true));
  939. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getBuildingAreaUseArea(),true));
  940. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getBuildingAreaRentArea(),true));
  941. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getBuildingAreaIdelArea(),true));
  942. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getBuildingAreaUnavailable(),true));
  943. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getUseArea(),true));
  944. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getUseAreaSelfUseArea(),true));
  945. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getUseAreaRentArea(),true));
  946. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getUseAreaIdelArea(),true));
  947. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getUseAreaUnavailableArea(),true));
  948. allList.add(colList.toArray());
  949. }
  950. String[] header = new String[]{
  951. "建筑id基本信息",
  952. "入账日期",
  953. "维修类型",
  954. "维修内容",
  955. "erp入账金额元",
  956. "每平方米维修单价",
  957. "资产所属单位二级",
  958. "资产所属单位三级",
  959. "局址编号",
  960. "局址别名",
  961. "标准地址",
  962. "城市等级",
  963. "城市区域",
  964. "投资主体",
  965. "管理层级",
  966. "房屋结构",
  967. "使用状况",
  968. "建筑用途",
  969. "权属状态",
  970. "建筑占地面积㎡",
  971. "建筑面积㎡",
  972. "建筑面积自用㎡",
  973. "建筑面积出租㎡",
  974. "建筑面积闲置㎡",
  975. "建筑面积不可使用㎡",
  976. "使用面积㎡",
  977. "使用面积自用㎡",
  978. "使用面积出租㎡",
  979. "使用面积闲置㎡",
  980. "使用面积不可使用㎡"
  981. };
  982. ee1.addSheetByArray(df.format(new Date()) + "清单", allList, header);
  983. }
  984. public double formatDouble(double num) {
  985. DecimalFormat format2 = new DecimalFormat("#.00");
  986. String str2 = format2.format(num);
  987. double avera = Double.parseDouble(str2);
  988. return avera;
  989. }
  990. public static String toThousands(Object number,boolean flag) {
  991. if(number==null){
  992. return "";
  993. }
  994. String num=number.toString();
  995. if(num.contains("E")){
  996. BigDecimal decimal=new BigDecimal(num);
  997. BigDecimal decimal1 = decimal.setScale(4, 2);
  998. num=decimal1.toString();
  999. }
  1000. String[] snum=num.split("\\.");
  1001. num=snum[0];
  1002. String result = "";
  1003. int counter = 0;
  1004. for (int i = num.length() - 1; i >= 0; i--) {
  1005. counter++;
  1006. result = num.charAt(i) + result;
  1007. if (counter % 3==0 && i != 0) {
  1008. result = ',' + result;
  1009. }
  1010. }
  1011. if(snum.length<2){
  1012. if(flag){
  1013. return result+".00";
  1014. }else{
  1015. return result;
  1016. }
  1017. }
  1018. if(snum[1].length()==1){
  1019. snum[1]+="0";
  1020. }
  1021. if(snum[1].length()>2){
  1022. snum[1]=snum[1].substring(0,2);
  1023. }
  1024. return result+"."+snum[1];
  1025. }
  1026. }