NoCarController.java 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768
  1. package com.jkcredit.invoice.controller.business;
  2. import cn.afterturn.easypoi.excel.ExcelImportUtil;
  3. import cn.afterturn.easypoi.excel.entity.ImportParams;
  4. import com.alibaba.fastjson.JSON;
  5. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  6. import com.jkcredit.invoice.annotation.LoginRequired;
  7. import com.jkcredit.invoice.annotation.annotationdes.AuthenticationInterceptor;
  8. import com.jkcredit.invoice.mapper.waybill.NoCarWaybillMapper;
  9. import com.jkcredit.invoice.model.entity.calculate.NoCarCalculateInfor;
  10. import com.jkcredit.invoice.model.entity.customer.CustomerCarRec;
  11. import com.jkcredit.invoice.model.entity.customer.CustomerOper;
  12. import com.jkcredit.invoice.model.entity.invoice.BillInvoice;
  13. import com.jkcredit.invoice.model.entity.user.User;
  14. import com.jkcredit.invoice.model.entity.waybill.NoCarWayBill;
  15. import com.jkcredit.invoice.model.vo.CodeAndNumVo;
  16. import com.jkcredit.invoice.service.calculateinfor.NoCarCalculateInfoService;
  17. import com.jkcredit.invoice.service.customer.CustomerOperService;
  18. import com.jkcredit.invoice.service.lowerservice.CheckHasAuthRole;
  19. import com.jkcredit.invoice.service.lowerservice.NoCarService;
  20. import com.jkcredit.invoice.service.nocar.NoCarBillWayImportService;
  21. import com.jkcredit.invoice.service.nocar.NoCarBillWayService;
  22. import com.jkcredit.invoice.service.nocar.NoCarRecService;
  23. import com.jkcredit.invoice.service.nocar.NocarInvoiceService;
  24. import com.jkcredit.invoice.util.RespR;
  25. import io.swagger.annotations.Api;
  26. import io.swagger.annotations.ApiOperation;
  27. import lombok.extern.slf4j.Slf4j;
  28. import org.apache.poi.util.IOUtils;
  29. import org.springframework.beans.factory.annotation.Autowired;
  30. import org.springframework.util.StringUtils;
  31. import org.springframework.web.bind.annotation.*;
  32. import org.springframework.web.multipart.MultipartFile;
  33. import javax.servlet.http.HttpServletResponse;
  34. import java.io.*;
  35. import java.net.URLEncoder;
  36. import java.text.DateFormat;
  37. import java.text.SimpleDateFormat;
  38. import java.util.ArrayList;
  39. import java.util.Arrays;
  40. import java.util.List;
  41. import static com.jkcredit.invoice.common.CommonConst.*;
  42. @Api(tags = "无车操作")
  43. @RestController
  44. @RequestMapping(value = {"/noCar"})
  45. @Slf4j
  46. /**
  47. * @Description 无车操作
  48. * @Author mashengyi
  49. * @Date 2022/2/8 18:15
  50. * @Param
  51. * @Return
  52. * @Exception
  53. *
  54. */
  55. public class NoCarController {
  56. @Autowired
  57. NoCarRecService noCarRecService;
  58. @Autowired
  59. NoCarBillWayService noCarBillWayService;
  60. @Autowired
  61. NoCarBillWayImportService noCarBillWayImportService;
  62. @Autowired
  63. NocarInvoiceService nocarInvoiceService;
  64. @Autowired
  65. NoCarCalculateInfoService noCarCalculateInfoService;
  66. @Autowired
  67. NoCarWaybillMapper noCarWaybillMapper;
  68. @Autowired
  69. NoCarService noCarService;
  70. @Autowired
  71. CustomerOperService customerOperService;
  72. @Autowired
  73. private CheckHasAuthRole checkHasAuthRole;
  74. /**
  75. * 分页查询无车备案信息
  76. *
  77. * @param page 参数集
  78. * @return 用户集合
  79. */
  80. @PostMapping("/findCarRec")
  81. @ApiOperation(value = "分页查询无车/自有车备案信息", notes = "分页查询无车/自有车备案信息")
  82. @LoginRequired
  83. public RespR getCustomersByPage(Page page, CustomerCarRec customerCarRec, User user) {
  84. try {
  85. checkHasAuthRole.checkCustomerRole(user, customerCarRec.getCustomerName());
  86. if (!StringUtils.isEmpty(customerCarRec.getStartTime()) && !NULL.equals(customerCarRec.getStartTime())) {
  87. String[] res = customerCarRec.getStartTime().split(",");
  88. customerCarRec.setStartTime(res[0]);
  89. customerCarRec.setEndTime(res[1].replace("00:00:00", "23:59:59"));
  90. } else {
  91. customerCarRec.setStartTime(null);
  92. }
  93. RespR respR = new RespR(noCarRecService.findByPageAndCarRec(page, customerCarRec));
  94. return respR;
  95. } catch (Exception e) {
  96. e.printStackTrace();
  97. return new RespR(false, e.getMessage());
  98. }
  99. }
  100. public void setTimeDue(NoCarWayBill noCarWayBill) {
  101. if (!StringUtils.isEmpty(noCarWayBill.getStartBegin()) && !NULL.equals(noCarWayBill.getStartBegin())) {
  102. String[] res = noCarWayBill.getStartBegin().split(",");
  103. noCarWayBill.setStartBegin(res[0]);
  104. noCarWayBill.setStartEnd(res[1].replace("00:00:00", "23:59:59"));
  105. } else {
  106. noCarWayBill.setStartBegin(null);
  107. }
  108. if (!StringUtils.isEmpty(noCarWayBill.getEndBegin()) && !NULL.equals(noCarWayBill.getEndBegin())) {
  109. String[] res = noCarWayBill.getEndBegin().split(",");
  110. noCarWayBill.setEndBegin(res[0]);
  111. noCarWayBill.setEndEnd(res[1].replace("00:00:00", "23:59:59"));
  112. } else {
  113. noCarWayBill.setEndBegin(null);
  114. }
  115. }
  116. public void setTimeDue2(NoCarWayBill noCarWayBill) {
  117. if (NULL.equals(noCarWayBill.getStartBegin())) {
  118. noCarWayBill.setStartBegin(null);
  119. }
  120. if (NULL.equals(noCarWayBill.getStartEnd())) {
  121. noCarWayBill.setStartEnd(null);
  122. }
  123. if (NULL.equals(noCarWayBill.getEndBegin())) {
  124. noCarWayBill.setEndBegin(null);
  125. }
  126. if (NULL.equals(noCarWayBill.getEndEnd())) {
  127. noCarWayBill.setEndEnd(null);
  128. }
  129. }
  130. /**
  131. * 分页查询运单信息
  132. *
  133. * @param page 参数集
  134. * @return 用户集合
  135. */
  136. @PostMapping("/findBillWay")
  137. @ApiOperation(value = "分页查询无车运单信息", notes = "分页查询无车运单信息")
  138. @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
  139. public RespR findBillWay(Page page, NoCarWayBill noCarWayBill, User user) {
  140. try {
  141. checkHasAuthRole.checkCustomerRole(user, noCarWayBill.getCustomerName());
  142. setTimeDue(noCarWayBill);
  143. setBillNums(noCarWayBill);
  144. RespR respR = new RespR(noCarBillWayService.findByPageAndWayBill(page, noCarWayBill));
  145. return respR;
  146. } catch (Exception e) {
  147. e.printStackTrace();
  148. return new RespR(false, e.getMessage());
  149. }
  150. }
  151. public void setBillNums(NoCarWayBill noCarWayBill) {
  152. String billNums = noCarWayBill.getBillNum();
  153. if (!StringUtils.isEmpty(billNums)) {
  154. String[] billNumArr = billNums.split(",");
  155. noCarWayBill.setBillNums(Arrays.asList(billNumArr));
  156. }
  157. }
  158. /**
  159. * 分页查询客户运单信息
  160. *
  161. * @param page 参数集
  162. * @return 用户集合
  163. */
  164. @PostMapping("/findBillWayCust")
  165. @ApiOperation(value = "分页查询无车运单信息", notes = "分页查询无车运单信息")
  166. @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
  167. public RespR findBillWayCust(Page page, NoCarWayBill noCarWayBill, User user) {
  168. try {
  169. checkHasAuthRole.checkCustomerRole(user, noCarWayBill.getCustomerName());
  170. setTimeDue2(noCarWayBill);
  171. setBillNums(noCarWayBill);
  172. noCarWayBill.setBatchNum("1");
  173. RespR respR = new RespR(noCarBillWayService.findByPageAndWayBill(page, noCarWayBill));
  174. return respR;
  175. } catch (Exception e) {
  176. e.printStackTrace();
  177. return new RespR(false, e.getMessage());
  178. }
  179. }
  180. /**
  181. * 分页查询运单信息
  182. *
  183. * @param page 参数集
  184. * @return 用户集合
  185. */
  186. @PostMapping("/findImportBillWay")
  187. @ApiOperation(value = "分页查询无车运单信息", notes = "分页查询无车运单信息")
  188. @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
  189. public RespR findImportBillWay(Page page, NoCarWayBill noCarWayBill, User user) {
  190. try {
  191. checkHasAuthRole.checkCustomerRole(user, noCarWayBill.getCustomerName());
  192. setTimeDue(noCarWayBill);
  193. RespR respR = new RespR(noCarBillWayImportService.findByPageAndWayBill(page, noCarWayBill));
  194. return respR;
  195. } catch (Exception e) {
  196. e.printStackTrace();
  197. return new RespR(false, e.getMessage());
  198. }
  199. }
  200. /**
  201. * 重新获取发票并更新状态
  202. *
  203. * @return 用户集合
  204. */
  205. @PostMapping("/updateStatus")
  206. @ApiOperation(value = "重新获取发票并更新状态", notes = "重新获取发票并更新状态")
  207. @LoginRequired(role = AuthenticationInterceptor.AUTH_ADMIN)
  208. public RespR updateStatus(String noCarWayBillStr) {
  209. if(!checkHasAuthRole.checkMessage(noCarWayBillStr)){
  210. return new RespR(false, "重新获取发票并更新状态失败,请查看数据是否维护准确");
  211. }
  212. List<NoCarWayBill> noCarWayBills = JSON.parseArray(noCarWayBillStr, NoCarWayBill.class);
  213. if (noCarWayBills != null && noCarWayBills.size() > 0) {
  214. noCarWayBills.stream().forEach(noCarWayBill -> {
  215. try {
  216. noCarWayBill.setBillwayStatus(-5);
  217. noCarService.getInvoiceByWayBillNumReal(noCarWayBill, false);
  218. } catch (Exception e) {
  219. log.info("1111111111222222" + e.getMessage());
  220. }
  221. });
  222. }
  223. return new RespR("更新成功");
  224. }
  225. /**
  226. * 分页查询异常运单信息
  227. *
  228. * @param page 参数集
  229. * @return 用户集合
  230. */
  231. @PostMapping("/findBillWayException")
  232. @ApiOperation(value = "分页查询异常运单信息", notes = "分页查询异常运单信息")
  233. @LoginRequired(role = AuthenticationInterceptor.AUTH_ADMIN)
  234. public RespR findBillWayException(Page page, NoCarWayBill noCarWayBill) {
  235. try {
  236. setTimeDue(noCarWayBill);
  237. RespR respR = new RespR(noCarBillWayService.findByPageAndWayBillException(page, noCarWayBill));
  238. return respR;
  239. } catch (Exception e) {
  240. e.printStackTrace();
  241. return new RespR(false, e.getMessage());
  242. }
  243. }
  244. /**
  245. * 分页查询无车运单信息
  246. *
  247. * @param page 参数集
  248. * @return 用户集合
  249. */
  250. @PostMapping("/findNocarInvoices")
  251. @ApiOperation(value = "分页查询无车发票信息", notes = "分页查询无车发票信息")
  252. @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
  253. public RespR findNocarInvoices(Page page, BillInvoice billInvoice, User user) {
  254. try {
  255. checkHasAuthRole.checkCustomerRole(user, billInvoice.getCustomerName());
  256. setParams(billInvoice);
  257. RespR respR = new RespR(nocarInvoiceService.findByPageAndInvoice(page, billInvoice));
  258. return respR;
  259. } catch (Exception e) {
  260. e.printStackTrace();
  261. return new RespR(false, e.getMessage());
  262. }
  263. }
  264. private void setParams(BillInvoice billInvoice) {
  265. if (!StringUtils.isEmpty(billInvoice.getInvoiceMakeTime()) && !NULL.equals(billInvoice.getInvoiceMakeTime())) {
  266. String[] res = billInvoice.getInvoiceMakeTime().split(",");
  267. billInvoice.setInvoiceMakeStart(res[0]);
  268. billInvoice.setInvoiceMakeEnd(res[1].replace("00:00:00", "23:59:59"));
  269. }
  270. if (!StringUtils.isEmpty(billInvoice.getCalculateTime()) && !NULL.equals(billInvoice.getCalculateTime())) {
  271. String[] res = billInvoice.getCalculateTime().split(",");
  272. billInvoice.setCalculateTimeStart(res[0]);
  273. billInvoice.setCalculateTimeEnd(res[1].replace("00:00:00", "23:59:59"));
  274. }
  275. if (!StringUtils.isEmpty(billInvoice.getWaybillNum())) {
  276. String[] billNumArr = billInvoice.getWaybillNum().split(",");
  277. billInvoice.setWaybillNums(Arrays.asList(billNumArr));
  278. }
  279. if (!StringUtils.isEmpty(billInvoice.getPlateNum())) {
  280. String[] plateNums = billInvoice.getPlateNum().split(COMMA);
  281. billInvoice.setPlateNums(Arrays.asList(plateNums));
  282. }
  283. if (!StringUtils.isEmpty(billInvoice.getInvoiceCode()) && billInvoice.getInvoiceCode().indexOf(COMMAS) > 0) {
  284. String[] invoiceCodeArr = billInvoice.getInvoiceCode().split(",");
  285. String[] invoiceNumArr = null;
  286. if (billInvoice.getInvoiceNum() != null) {
  287. invoiceNumArr = billInvoice.getInvoiceNum().split(",");
  288. }
  289. List<CodeAndNumVo> codeAndNumVos = new ArrayList<>();
  290. for (int i = 0; i < invoiceCodeArr.length; i++) {
  291. CodeAndNumVo codeAndNumVo = new CodeAndNumVo();
  292. codeAndNumVo.setCode(invoiceCodeArr[i]);
  293. if (invoiceNumArr != null && invoiceNumArr.length >= i + 1) {
  294. codeAndNumVo.setNum(invoiceNumArr[i]);
  295. } else {
  296. codeAndNumVo.setNum("");
  297. }
  298. codeAndNumVos.add(codeAndNumVo);
  299. }
  300. billInvoice.setCodeAndNumVos(codeAndNumVos);
  301. }
  302. }
  303. /**
  304. * 批量查询无车发票信息
  305. *
  306. * @param file 参数集
  307. * @return
  308. */
  309. @PostMapping("/batchImportNocarInvoices")
  310. @ApiOperation(value = "批量查询无车发票信息", notes = "批量查询无车发票信息")
  311. @LoginRequired(role = AuthenticationInterceptor.AUTH_ADMIN)
  312. public RespR batchImportNocarInvoices(@RequestParam("file") MultipartFile file) {
  313. try {
  314. if(null == file){
  315. return new RespR(false, "批量查询无车发票信息失败,请查看数据是否维护准确");
  316. }
  317. ImportParams params = new ImportParams();
  318. params.setTitleRows(1);
  319. params.setHeadRows(1);
  320. List<BillInvoice> list = ExcelImportUtil.importExcel(file.getInputStream(), BillInvoice.class, params);
  321. RespR respR = nocarInvoiceService.findImportNocarInvoices(list);
  322. return respR;
  323. } catch (Exception e) {
  324. e.printStackTrace();
  325. return new RespR(false, e.getMessage());
  326. }
  327. }
  328. /**
  329. * 批量查询无车运单信息
  330. *
  331. * @param file 参数集
  332. * @return
  333. */
  334. @PostMapping("/batchImportNocarBillWay")
  335. @ApiOperation(value = "批量查询无车运单信息", notes = "批量查询无车运单信息")
  336. @LoginRequired(role = AuthenticationInterceptor.AUTH_ADMIN)
  337. public RespR batchImportNocarBillWay(@RequestParam("file") MultipartFile file) {
  338. try {
  339. if(null == file){
  340. return new RespR(false, "批量查询无车运单信息失败,请查看数据是否维护准确");
  341. }
  342. ImportParams params = new ImportParams();
  343. params.setTitleRows(1);
  344. params.setHeadRows(1);
  345. List<NoCarWayBill> list = ExcelImportUtil.importExcel(file.getInputStream(), NoCarWayBill.class, params);
  346. RespR respR = noCarBillWayService.findImportNocarBillWay(list);
  347. return respR;
  348. } catch (Exception e) {
  349. e.printStackTrace();
  350. return new RespR(false, e.getMessage());
  351. }
  352. }
  353. /**
  354. * 分页查询无车运单统计信息
  355. *
  356. * @param billInvoice
  357. * @return 用户集合
  358. */
  359. @PostMapping("/findNocarInvoicesStatic")
  360. @ApiOperation(value = "分页查询无车发票统计信息", notes = "分页查询无车发票统计信息")
  361. @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
  362. public RespR findNocarInvoicesStatic(BillInvoice billInvoice, User user) {
  363. checkHasAuthRole.checkCustomerRole(user, billInvoice.getCustomerName());
  364. try {
  365. if (!StringUtils.isEmpty(billInvoice.getInvoiceMakeTime()) && !NULL.equals(billInvoice.getInvoiceMakeTime())) {
  366. String[] res = billInvoice.getInvoiceMakeTime().split(",");
  367. billInvoice.setInvoiceMakeStart(res[0]);
  368. billInvoice.setInvoiceMakeEnd(res[1].replace("00:00:00", "23:59:59"));
  369. }
  370. if (!StringUtils.isEmpty(billInvoice.getCalculateTime()) && !NULL.equals(billInvoice.getCalculateTime())) {
  371. String[] res = billInvoice.getCalculateTime().split(",");
  372. billInvoice.setCalculateTimeStart(res[0]);
  373. billInvoice.setCalculateTimeEnd(res[1].replace("00:00:00", "23:59:59"));
  374. }
  375. RespR respR = new RespR(nocarInvoiceService.findInvoiceStatics(billInvoice));
  376. return respR;
  377. } catch (Exception e) {
  378. e.printStackTrace();
  379. return new RespR(false, e.getMessage());
  380. }
  381. }
  382. /**
  383. * 批量运单导入
  384. *
  385. * @param file 参数集
  386. * @return
  387. */
  388. @PostMapping("/batchImprotBillWay")
  389. @ApiOperation(value = "批量运单导入", notes = "批量运单导入")
  390. @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
  391. public RespR batchImprotBillWay(@RequestParam("file") MultipartFile file, String customerName, User user) {
  392. try {
  393. if(null == file){
  394. return new RespR(false, "批量运单导入失败,请查看数据是否维护准确");
  395. }
  396. if(!checkHasAuthRole.checkMessage(customerName)){
  397. return new RespR(false, "批量运单导入失败,请查看数据是否维护准确");
  398. }
  399. checkHasAuthRole.checkCustomerRole(user, customerName);
  400. ImportParams params = new ImportParams();
  401. params.setTitleRows(1);
  402. params.setHeadRows(1);
  403. params.setKeyIndex(2);
  404. List<NoCarWayBill> list = ExcelImportUtil.importExcel(file.getInputStream(), NoCarWayBill.class, params);
  405. buildDate(list);
  406. RespR respR = noCarBillWayService.batchBillWayStart(list, customerName);
  407. return respR;
  408. } catch (Exception e) {
  409. e.printStackTrace();
  410. return new RespR(false, e.getMessage());
  411. }
  412. }
  413. /**
  414. * 批量运单导入
  415. *
  416. * @param file 参数集
  417. * @return
  418. */
  419. @PostMapping("/batchImprotHistoryBillWay")
  420. @ApiOperation(value = "批量历史运单导入", notes = "批量历史运单导入")
  421. @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
  422. public RespR batchImprotHistoryBillWay(@RequestParam("file") MultipartFile file, String customerName, User user) {
  423. try {
  424. if(null == file){
  425. return new RespR(false, "批量历史运单导入失败,请查看数据是否维护准确");
  426. }
  427. if(!checkHasAuthRole.checkMessage(customerName)){
  428. return new RespR(false, "批量历史运单导入失败,请查看数据是否维护准确");
  429. }
  430. checkHasAuthRole.checkCustomerRole(user, customerName);
  431. ImportParams params = new ImportParams();
  432. params.setTitleRows(1);
  433. params.setHeadRows(1);
  434. params.setKeyIndex(2);
  435. List<NoCarWayBill> list = ExcelImportUtil.importExcel(file.getInputStream(), NoCarWayBill.class, params);
  436. log.info("batchImprotHistoryBillWay数量" + list.size());
  437. buildDate(list);
  438. RespR respR = noCarBillWayService.batchHsitoryBillWay(list, customerName);
  439. return respR;
  440. } catch (Exception e) {
  441. e.printStackTrace();
  442. return new RespR(false, e.getMessage());
  443. }
  444. }
  445. /**
  446. * 批量运单导入
  447. *
  448. * @param file 参数集
  449. * @return
  450. */
  451. @PostMapping("/batchImprotEndBillWay")
  452. @ApiOperation(value = "批量运单结束", notes = "批量运单结束")
  453. @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
  454. public RespR batchImprotEndBillWay(@RequestParam("file") MultipartFile file, String customerName, User user) {
  455. if(null == file){
  456. return new RespR(false, "批量运单结束失败,请查看数据是否维护准确");
  457. }
  458. if(!checkHasAuthRole.checkMessage(customerName)){
  459. return new RespR(false, "批量运单结束失败,请查看数据是否维护准确");
  460. }
  461. checkHasAuthRole.checkCustomerRole(user, customerName);
  462. try {
  463. ImportParams params = new ImportParams();
  464. params.setTitleRows(1);
  465. params.setHeadRows(1);
  466. params.setKeyIndex(2);
  467. List<NoCarWayBill> list = ExcelImportUtil.importExcel(file.getInputStream(), NoCarWayBill.class, params);
  468. buildDateEnd(list);
  469. log.info("batchImprotEndBillWay数量" + list.size());
  470. RespR respR = noCarBillWayService.batchBillWayEnd(list, customerName);
  471. return respR;
  472. } catch (Exception e) {
  473. e.printStackTrace();
  474. return new RespR(false, e.getMessage());
  475. }
  476. }
  477. public void buildDate(List<NoCarWayBill> list) {
  478. StringBuffer sb = new StringBuffer();
  479. DateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  480. int i = 0;
  481. String strError = "";
  482. for (int j = 0; j < list.size(); j++) {
  483. NoCarWayBill noCarWayBill = list.get(j);
  484. try {
  485. if (null == noCarWayBill) {
  486. log.error("buildDateError" + sb.toString() + "第" + (j + 1) + "行数据存在错误,请检查数据是否未传递");
  487. strError = "第" + (j + 1) + "行数据存在错误,请检查数据是否未传递";
  488. throw new RuntimeException("第" + (j + 1) + "行数据存在错误,请检查数据是否未传递");
  489. }
  490. if (org.apache.commons.lang3.StringUtils.isBlank(noCarWayBill.getBillNum())) {
  491. log.error("buildDateError" + sb.toString() + "第" + (j + 1) + "行数据存在错误,请检查运单编号是否未输入或者输入是否正确");
  492. strError = "第" + (j + 1) + "行数据存在错误,请检查运单编号是否未输入或者输入是否正确";
  493. throw new RuntimeException("第" + (j + 1) + "行数据存在错误,请检查运单编号是否未输入或者输入是否正确");
  494. }
  495. if (org.apache.commons.lang3.StringUtils.isBlank(noCarWayBill.getPlateNum())) {
  496. log.error("buildDateError" + sb.toString() + "第" + (j + 1) + "行数据存在错误,请检查车牌号码是否未输入或者输入是否正确");
  497. strError = "第" + (j + 1) + "行数据存在错误,请检查车牌号码是否未输入或者输入是否正确";
  498. throw new RuntimeException("第" + (j + 1) + "行数据存在错误,请检查车牌号码是否未输入或者输入是否正确");
  499. }
  500. if (org.apache.commons.lang3.StringUtils.isBlank(noCarWayBill.getPlateColor())) {
  501. log.error("buildDateError" + sb.toString() + "第" + (j + 1) + "行数据存在错误,请检查车牌颜色是否未输入或者输入是否正确");
  502. strError = "第" + (j + 1) + "行数据存在错误,请检查车牌颜色是否未输入或者输入是否正确";
  503. throw new RuntimeException("第" + (j + 1) + "行数据存在错误,请检查车牌颜色是否未输入或者输入是否正确");
  504. }
  505. if (null == noCarWayBill.getStartTimeDate()) {
  506. log.error("buildDateError" + sb.toString() + "第" + (j + 1) + "行数据存在错误,请检查运单开始时间是否未输入或者输入是否正确");
  507. strError = "第" + (j + 1) + "行数据存在错误,请检查运单开始时间是否未输入或者输入是否正确";
  508. throw new RuntimeException("第" + (j + 1) + "行数据存在错误,请检查运单开始时间是否未输入或者输入是否正确");
  509. }
  510. if (org.apache.commons.lang3.StringUtils.isBlank(noCarWayBill.getSourceAddr())) {
  511. log.error("buildDateError" + sb.toString() + "第" + (j + 1) + "行数据存在错误,请检查运单开始地址是否未输入或者输入是否正确");
  512. strError = "第" + (j + 1) + "行数据存在错误,请检查运单开始地址是否未输入或者输入是否正确";
  513. throw new RuntimeException("第" + (j + 1) + "行数据存在错误,请检查运单开始地址是否未输入或者输入是否正确");
  514. }
  515. if (org.apache.commons.lang3.StringUtils.isBlank(noCarWayBill.getDestAddr())) {
  516. log.error("buildDateError" + sb.toString() + "第" + (j + 1) + "行数据存在错误,请检查运单目的地址是否未输入或者输入是否正确");
  517. strError = "第" + (j + 1) + "行数据存在错误,请检查运单目的地址是否未输入或者输入是否正确";
  518. throw new RuntimeException("第" + (j + 1) + "行数据存在错误,请检查运单目的地址是否未输入或者输入是否正确");
  519. }
  520. if (null == noCarWayBill.getPredictEndTimeDate()) {
  521. log.error("buildDateError" + sb.toString() + "第" + (j + 1) + "行数据存在错误,请检查运单预计完成时间是否未输入或者输入是否正确");
  522. strError = "第" + (j + 1) + "行数据存在错误,请检查运单预计完成时间是否未输入或者输入是否正确";
  523. throw new RuntimeException("第" + (j + 1) + "行数据存在错误,请检查运单预计完成时间是否未输入或者输入是否正确");
  524. }
  525. if (null == noCarWayBill.getFeeD()) {
  526. log.error("buildDateError" + sb.toString() + "第" + (j + 1) + "行数据存在错误,请检查运单费用是否未输入或者输入是否正确");
  527. strError = "第" + (j + 1) + "行数据存在错误,请检查运单费用是否未输入或者输入是否正确";
  528. throw new RuntimeException("第" + (j + 1) + "行数据存在错误,请检查运单费用是否未输入或者输入是否正确");
  529. }
  530. if (org.apache.commons.lang3.StringUtils.isBlank(noCarWayBill.getTaxplayerCode())) {
  531. log.error("buildDateError" + sb.toString() + "第" + (j + 1) + "行数据存在错误,请检查税号是否未输入或者输入是否正确");
  532. strError = "第" + (j + 1) + "行数据存在错误,请检查税号是否未输入或者输入是否正确";
  533. throw new RuntimeException("第" + (j + 1) + "行数据存在错误,请检查税号是否未输入或者输入是否正确");
  534. }
  535. noCarWayBill.setStartTime(format.format(noCarWayBill.getStartTimeDate()));
  536. noCarWayBill.setPredictEndTime(format.format(noCarWayBill.getPredictEndTimeDate()));
  537. if (noCarWayBill.getFeeD() != null) {
  538. noCarWayBill.setFee(Math.round(noCarWayBill.getFeeD() * 100));
  539. }
  540. noCarWayBill.setTaxplayerCode(noCarWayBill.getTaxplayerCode().trim());
  541. noCarWayBill.setBillNum(noCarWayBill.getBillNum().trim());
  542. } catch (Exception e) {
  543. sb.append(noCarWayBill.getBillNum() + "#");
  544. log.error(noCarWayBill.getBillNum());
  545. i++;
  546. }
  547. }
  548. if (i > 0) {
  549. log.error(org.apache.commons.lang3.StringUtils.isBlank(strError) ? "buildDateError" + sb.toString() + "第" + i + "行数据存在错误,请检查文件中数据,金额是否有空的,时间是否全是时间格式" : "buildDateError" + sb.toString() + strError);
  550. throw new RuntimeException(org.apache.commons.lang3.StringUtils.isBlank(strError) ? "第" + i + "行数据存在错误,请检查文件中数据,金额是否有空的,时间是否全是时间格式" : strError);
  551. }
  552. }
  553. public void buildDateEnd(List<NoCarWayBill> list) {
  554. DateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  555. int i = 0;
  556. StringBuffer sb = new StringBuffer();
  557. String strError = "";
  558. for (int j = 0; j < list.size(); j++) {
  559. NoCarWayBill noCarWayBill = list.get(j);
  560. try {
  561. if (null == noCarWayBill) {
  562. log.error("buildDateError" + sb.toString() + "第" + (j + 1) + "行数据存在错误,请检查数据是否未传递");
  563. strError = "第" + (j + 1) + "行数据存在错误,请检查数据是否未传递";
  564. throw new RuntimeException("第" + (j + 1) + "行数据存在错误,请检查数据是否未传递");
  565. }
  566. if (org.apache.commons.lang3.StringUtils.isBlank(noCarWayBill.getBillNum())) {
  567. log.error("buildDateError" + sb.toString() + "第" + (j + 1) + "行数据存在错误,请检查运单编号是否未输入或者输入是否正确");
  568. strError = "第" + (j + 1) + "行数据存在错误,请检查运单编号是否未输入或者输入是否正确";
  569. throw new RuntimeException("第" + (j + 1) + "行数据存在错误,请检查运单编号是否未输入或者输入是否正确");
  570. }
  571. if (null == noCarWayBill.getActEndTimeDate()) {
  572. log.error("buildDateError" + sb.toString() + "第" + (j + 1) + "行数据存在错误,请检查运单实际结束时间是否未输入或者输入是否正确");
  573. strError = "第" + (j + 1) + "行数据存在错误,请检查运单实际结束时间是否未输入或者输入是否正确";
  574. throw new RuntimeException("第" + (j + 1) + "行数据存在错误,请检查运单实际结束时间是否未输入或者输入是否正确");
  575. }
  576. if (org.apache.commons.lang3.StringUtils.isBlank(noCarWayBill.getDestAddr())) {
  577. log.error("buildDateError" + sb.toString() + "第" + (j + 1) + "行数据存在错误,请检查运单目的地址是否未输入或者输入是否正确");
  578. strError = "第" + (j + 1) + "行数据存在错误,请检查运单目的地址是否未输入或者输入是否正确";
  579. throw new RuntimeException("第" + (j + 1) + "行数据存在错误,请检查运单目的地址是否未输入或者输入是否正确");
  580. }
  581. noCarWayBill.setPredictEndTime(format.format(noCarWayBill.getActEndTimeDate()));
  582. } catch (Exception e) {
  583. sb.append(noCarWayBill.getBillNum() + "#");
  584. log.error(noCarWayBill.getBillNum());
  585. i++;
  586. }
  587. }
  588. if (i > 0) {
  589. log.error(org.apache.commons.lang3.StringUtils.isBlank(strError) ? "buildDateError" + sb.toString() + "第" + i + "行数据存在错误,请检查文件中数据,时间是否全是时间格式" : "buildDateError" + sb.toString() + strError);
  590. throw new RuntimeException(org.apache.commons.lang3.StringUtils.isBlank(strError) ? "第" + i + "行数据存在错误,请检查文件中数据,时间是否全是时间格式" : strError);
  591. }
  592. }
  593. /**
  594. * 分页查询无车计费信息
  595. *
  596. * @param page 参数集
  597. * @return 用户集合
  598. */
  599. @PostMapping("/findBatchList")
  600. @ApiOperation(value = "运单批次号查询", notes = "运单批次号查询")
  601. @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
  602. public RespR findBatchList(Page page, CustomerOper customerOper, User user) {
  603. try {
  604. checkHasAuthRole.checkCustomerRole(user, customerOper.getCustomerName());
  605. RespR respR = new RespR(customerOperService.findAllCustomerOper(page, customerOper));
  606. return respR;
  607. } catch (Exception e) {
  608. e.printStackTrace();
  609. return new RespR(false, e.getMessage());
  610. }
  611. }
  612. /**
  613. * 分页查询无车计费信息
  614. *
  615. * @param page 参数集
  616. * @return 用户集合
  617. */
  618. @PostMapping("/findNocarCalculateInfo")
  619. @ApiOperation(value = "分页查询无车计费信息", notes = "分页查询无车计费信息")
  620. @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
  621. public RespR findNocarCalculateInfo(Page page, NoCarCalculateInfor carCalculateInfor, User user) {
  622. try {
  623. checkHasAuthRole.checkCustomerRole(user, carCalculateInfor.getCustomId());
  624. setTimeDue1(carCalculateInfor);
  625. RespR respR = new RespR(noCarCalculateInfoService.findByPageAndCalculateInfor(page, carCalculateInfor));
  626. return respR;
  627. } catch (Exception e) {
  628. e.printStackTrace();
  629. return new RespR(false, e.getMessage());
  630. }
  631. }
  632. /**
  633. * 分页查询无车计费统计信息
  634. *
  635. * @param carCalculateInfor 参数集
  636. * @return 用户集合
  637. */
  638. @PostMapping("/findNocarCalculateInfoStatis")
  639. @ApiOperation(value = "分页查询无车计费统计信息", notes = "分页查询无车计费统计信息")
  640. @LoginRequired(role = AuthenticationInterceptor.AUTH_NOCAR)
  641. public RespR findNocarCalculateInfoStatis(NoCarCalculateInfor carCalculateInfor, User user) {
  642. try {
  643. checkHasAuthRole.checkCustomerRole(user, carCalculateInfor.getCustomId());
  644. setTimeDue1(carCalculateInfor);
  645. RespR respR = new RespR(noCarCalculateInfoService.findNocarCalculateInfoStatis(carCalculateInfor));
  646. return respR;
  647. } catch (Exception e) {
  648. e.printStackTrace();
  649. return new RespR(false, e.getMessage());
  650. }
  651. }
  652. @GetMapping("/templateDownload")
  653. @ApiOperation(value = "模板下载", notes = "模板下载")
  654. public RespR contractDownload(String fileName, HttpServletResponse response) {
  655. if(!checkHasAuthRole.checkMessage(fileName)){
  656. return new RespR(false, "模板下载失败,请查看数据是否维护准确");
  657. }
  658. if (ONE.equals(fileName)) {
  659. fileName = "运单模板.xlsx";
  660. } else if (TWO.equals(fileName)) {
  661. fileName = "运单结束模板.xlsx";
  662. } else if (THREE.equals(fileName)) {
  663. fileName = "历史运单模板.xlsx";
  664. } else if (FOR.equals(fileName)) {
  665. fileName = "无车发票查询模板.xlsx";
  666. } else if (FIVE.equals(fileName)) {
  667. fileName = "无车运单查询模板.xlsx";
  668. } else if (SIX.equals(fileName)) {
  669. fileName = "自有车交易查询模板.xlsx";
  670. } else if (SEVEN.equals(fileName)) {
  671. fileName = "自有车发票查询模板.xlsx";
  672. } else if (EIGHT.equals(fileName)) {
  673. fileName = "自有车按交易查询申请模板.xlsx";
  674. }
  675. OutputStream outputStream = null;
  676. InputStream inputStream = null;
  677. try {
  678. File file = new File("/home/app/excel/" + fileName);
  679. inputStream = new FileInputStream(file);
  680. response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode(fileName, "UTF-8"));
  681. outputStream = response.getOutputStream();
  682. IOUtils.copy(inputStream, outputStream);
  683. response.flushBuffer();
  684. return new RespR(true);
  685. } catch (IOException e) {
  686. } finally {
  687. IOUtils.closeQuietly(inputStream);
  688. IOUtils.closeQuietly(outputStream);
  689. }
  690. return new RespR(false);
  691. }
  692. public void setTimeDue1(NoCarCalculateInfor carCalculateInfor) {
  693. if (!StringUtils.isEmpty(carCalculateInfor.getInvoiceMakeTime()) && !NULL.equals(carCalculateInfor.getInvoiceMakeTime())) {
  694. String[] res = carCalculateInfor.getInvoiceMakeTime().split(",");
  695. carCalculateInfor.setInvoiceMakeStart(res[0]);
  696. carCalculateInfor.setInvoiceMakeEnd(res[1].replace("00:00:00", "23:59:59"));
  697. } else {
  698. carCalculateInfor.setInvoiceMakeTime(null);
  699. }
  700. if (!StringUtils.isEmpty(carCalculateInfor.getCalculateTime()) && !NULL.equals(carCalculateInfor.getCalculateTime())) {
  701. String[] res = carCalculateInfor.getCalculateTime().split(",");
  702. carCalculateInfor.setCalculateStart(res[0]);
  703. carCalculateInfor.setCalculateEnd(res[1].replace("00:00:00", "23:59:59"));
  704. } else {
  705. carCalculateInfor.setCalculateTime(null);
  706. }
  707. }
  708. }