NoCarController.java 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545
  1. package com.jkcredit.invoice.controller.localBussiness;
  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.mapper.waybill.NoCarWaybillMapper;
  8. import com.jkcredit.invoice.model.entity.Calculate.NoCarCalculateInfor;
  9. import com.jkcredit.invoice.model.entity.customer.CustomerCarRec;
  10. import com.jkcredit.invoice.model.entity.customer.CustomerOper;
  11. import com.jkcredit.invoice.model.entity.customer.CustomerRec;
  12. import com.jkcredit.invoice.model.entity.invoice.BillInvoice;
  13. import com.jkcredit.invoice.model.entity.waybill.NoCarWayBill;
  14. import com.jkcredit.invoice.service.CalculateInfor.NoCarCalculateInfoService;
  15. import com.jkcredit.invoice.service.customer.CustomerOperService;
  16. import com.jkcredit.invoice.service.lowerService.NoCarService;
  17. import com.jkcredit.invoice.service.nocar.NoCarBillWayImportService;
  18. import com.jkcredit.invoice.service.nocar.NoCarBillWayService;
  19. import com.jkcredit.invoice.service.nocar.NoCarRecService;
  20. import com.jkcredit.invoice.service.nocar.NocarInvoiceService;
  21. import com.jkcredit.invoice.util.ReadExcelUtil;
  22. import com.jkcredit.invoice.util.RespR;
  23. import io.swagger.annotations.Api;
  24. import io.swagger.annotations.ApiOperation;
  25. import lombok.extern.slf4j.Slf4j;
  26. import org.apache.poi.util.IOUtils;
  27. import org.springframework.beans.factory.annotation.Autowired;
  28. import org.springframework.util.ResourceUtils;
  29. import org.springframework.util.StringUtils;
  30. import org.springframework.web.bind.annotation.*;
  31. import org.springframework.web.multipart.MultipartFile;
  32. import javax.servlet.http.HttpServletResponse;
  33. import java.io.*;
  34. import java.net.URLEncoder;
  35. import java.text.DateFormat;
  36. import java.text.SimpleDateFormat;
  37. import java.util.ArrayList;
  38. import java.util.Base64;
  39. import java.util.List;
  40. @Slf4j
  41. @Api(tags = "无车操作")
  42. @RestController
  43. @RequestMapping(value = {"/noCar"})
  44. public class NoCarController {
  45. @Autowired
  46. NoCarRecService noCarRecService;
  47. @Autowired
  48. NoCarBillWayService noCarBillWayService;
  49. @Autowired
  50. NoCarBillWayImportService noCarBillWayImportService;
  51. @Autowired
  52. NocarInvoiceService nocarInvoiceService;
  53. @Autowired
  54. NoCarCalculateInfoService noCarCalculateInfoService;
  55. @Autowired
  56. NoCarWaybillMapper noCarWaybillMapper;
  57. @Autowired
  58. NoCarService noCarService;
  59. @Autowired
  60. CustomerOperService customerOperService;
  61. /**
  62. * 分页查询无车备案信息
  63. *
  64. * @param page 参数集
  65. * @return 用户集合
  66. */
  67. @PostMapping("/findCarRec")
  68. @ApiOperation(value="分页查询无车/自有车备案信息", notes="分页查询无车/自有车备案信息")
  69. @LoginRequired
  70. public RespR getCustomersByPage(Page page, CustomerCarRec customerCarRec) {
  71. try {
  72. RespR respR = new RespR(noCarRecService.findByPageAndCarRec(page, customerCarRec));
  73. return respR;
  74. }catch (Exception e){
  75. e.printStackTrace();
  76. return new RespR(false,e.getMessage());
  77. }
  78. }
  79. public void setTimeDue(NoCarWayBill noCarWayBill){
  80. if(!StringUtils.isEmpty(noCarWayBill.getStartBegin()) && !"null".equals(noCarWayBill.getStartBegin())){
  81. String [] res = noCarWayBill.getStartBegin().split(",");
  82. noCarWayBill.setStartBegin(res[0]);
  83. noCarWayBill.setStartEnd(res[1]);
  84. }else{
  85. noCarWayBill.setStartBegin(null);
  86. }
  87. if(!StringUtils.isEmpty(noCarWayBill.getEndBegin()) && !"null".equals(noCarWayBill.getEndBegin())){
  88. String [] res = noCarWayBill.getEndBegin().split(",");
  89. noCarWayBill.setEndBegin(res[0]);
  90. noCarWayBill.setEndEnd(res[1]);
  91. }else{
  92. noCarWayBill.setEndBegin(null);
  93. }
  94. }
  95. public void setTimeDue2(NoCarWayBill noCarWayBill){
  96. if("null".equals(noCarWayBill.getStartBegin())){
  97. noCarWayBill.setStartBegin(null);
  98. }
  99. if("null".equals(noCarWayBill.getStartEnd())){
  100. noCarWayBill.setStartEnd(null);
  101. }
  102. if("null".equals(noCarWayBill.getEndBegin())){
  103. noCarWayBill.setEndBegin(null);
  104. }
  105. if("null".equals(noCarWayBill.getEndEnd())){
  106. noCarWayBill.setEndEnd(null);
  107. }
  108. }
  109. /**
  110. * 分页查询运单信息
  111. *
  112. * @param page 参数集
  113. * @return 用户集合
  114. */
  115. @PostMapping("/findBillWay")
  116. @ApiOperation(value="分页查询无车运单信息", notes="分页查询无车运单信息")
  117. @LoginRequired
  118. public RespR findBillWay(Page page, NoCarWayBill noCarWayBill) {
  119. try {
  120. setTimeDue(noCarWayBill);
  121. RespR respR = new RespR(noCarBillWayService.findByPageAndWayBill(page, noCarWayBill));
  122. return respR;
  123. }catch (Exception e){
  124. e.printStackTrace();
  125. return new RespR(false,e.getMessage());
  126. }
  127. }
  128. /**
  129. * 分页查询客户运单信息
  130. *
  131. * @param page 参数集
  132. * @return 用户集合
  133. */
  134. @PostMapping("/findBillWayCust")
  135. @ApiOperation(value="分页查询无车运单信息", notes="分页查询无车运单信息")
  136. @LoginRequired
  137. public RespR findBillWayCust(Page page, NoCarWayBill noCarWayBill) {
  138. try {
  139. setTimeDue2(noCarWayBill);
  140. RespR respR = new RespR(noCarBillWayService.findByPageAndWayBill(page, noCarWayBill));
  141. return respR;
  142. }catch (Exception e){
  143. e.printStackTrace();
  144. return new RespR(false,e.getMessage());
  145. }
  146. }
  147. /**
  148. * 分页查询运单信息
  149. *
  150. * @param page 参数集
  151. * @return 用户集合
  152. */
  153. @PostMapping("/findImportBillWay")
  154. @ApiOperation(value="分页查询无车运单信息", notes="分页查询无车运单信息")
  155. @LoginRequired
  156. public RespR findImportBillWay(Page page, NoCarWayBill noCarWayBill) {
  157. try {
  158. setTimeDue(noCarWayBill);
  159. RespR respR = new RespR(noCarBillWayImportService.findByPageAndWayBill(page, noCarWayBill));
  160. return respR;
  161. }catch (Exception e){
  162. e.printStackTrace();
  163. return new RespR(false,e.getMessage());
  164. }
  165. }
  166. /**
  167. * 重新获取发票并更新状态
  168. *
  169. * @return 用户集合
  170. */
  171. @PostMapping("/updateStatus")
  172. @ApiOperation(value="重新获取发票并更新状态", notes="重新获取发票并更新状态")
  173. @LoginRequired
  174. public RespR updateStatus(String noCarWayBillStr) {
  175. List<NoCarWayBill> noCarWayBills = JSON.parseArray(noCarWayBillStr,NoCarWayBill.class);
  176. try {
  177. if(noCarWayBills!=null && noCarWayBills.size()>0){
  178. noCarWayBills.stream().forEach(noCarWayBill -> {
  179. noCarService.getInvoiceByWayBillNumReal(noCarWayBill,true);
  180. });
  181. }
  182. return new RespR("更新成功");
  183. }catch (Exception e){
  184. e.printStackTrace();
  185. return new RespR(false,e.getMessage());
  186. }
  187. }
  188. public void delGetInvoce(Integer historyFlag){
  189. log.info("开始取票HISflag:"+historyFlag);
  190. NoCarWayBill carWayBill = new NoCarWayBill();
  191. carWayBill.setHisFlag(historyFlag);
  192. carWayBill.setBillwayStatus(2);
  193. List<NoCarWayBill> noCarWayBillsMdEnd = noCarWaybillMapper.selectByHisFlagAndBillStatus(carWayBill);
  194. if(noCarWayBillsMdEnd!=null && noCarWayBillsMdEnd.size()>0){
  195. noCarWayBillsMdEnd.stream().forEach(noCarWayBill -> {
  196. noCarService.getInvoiceByWayBillNumReal(noCarWayBill,true);
  197. });
  198. }
  199. }
  200. /**
  201. * 分页查询异常运单信息
  202. *
  203. * @param page 参数集
  204. * @return 用户集合
  205. */
  206. @PostMapping("/findBillWayException")
  207. @ApiOperation(value="分页查询异常运单信息", notes="分页查询异常运单信息")
  208. @LoginRequired
  209. public RespR findBillWayException(Page page, NoCarWayBill noCarWayBill) {
  210. try {
  211. setTimeDue(noCarWayBill);
  212. RespR respR = new RespR(noCarBillWayService.findByPageAndWayBillException(page, noCarWayBill));
  213. return respR;
  214. }catch (Exception e){
  215. e.printStackTrace();
  216. return new RespR(false,e.getMessage());
  217. }
  218. }
  219. /**
  220. * 分页查询无车运单信息
  221. *
  222. * @param page 参数集
  223. * @return 用户集合
  224. */
  225. @PostMapping("/findNocarInvoices")
  226. @ApiOperation(value="分页查询无车发票信息", notes="分页查询无车发票信息")
  227. @LoginRequired
  228. public RespR findNocarInvoices(Page page, BillInvoice billInvoice) {
  229. try {
  230. if(!StringUtils.isEmpty(billInvoice.getInvoiceMakeTime()) && !"null".equals(billInvoice.getInvoiceMakeTime())){
  231. String [] res =billInvoice.getInvoiceMakeTime().split(",");
  232. billInvoice.setInvoiceMakeStart(res[0]);
  233. billInvoice.setInvoiceMakeEnd(res[1]);
  234. }
  235. if(!StringUtils.isEmpty(billInvoice.getCalculateTime()) && !"null".equals(billInvoice.getCalculateTime())){
  236. String [] res =billInvoice.getCalculateTime().split(",");
  237. billInvoice.setCalculateTimeStart(res[0]);
  238. billInvoice.setCalculateTimeEnd(res[1]);
  239. }
  240. RespR respR = new RespR(nocarInvoiceService.findByPageAndInvoice(page, billInvoice));
  241. return respR;
  242. }catch (Exception e){
  243. e.printStackTrace();
  244. return new RespR(false,e.getMessage());
  245. }
  246. }
  247. /**
  248. * 批量查询无车发票信息
  249. *
  250. * @param file 参数集
  251. * @return
  252. */
  253. @PostMapping("/batchImportNocarInvoices")
  254. @ApiOperation(value="批量查询无车发票信息", notes="批量查询无车发票信息")
  255. @LoginRequired
  256. public RespR batchImportNocarInvoices(@RequestParam("file") MultipartFile file) {
  257. try {
  258. ImportParams params = new ImportParams();
  259. params.setTitleRows(1);
  260. params.setHeadRows(1);
  261. // params.setKeyIndex(2);
  262. List<BillInvoice> list = ExcelImportUtil.importExcel(file.getInputStream(), BillInvoice.class,params) ;
  263. RespR respR = nocarInvoiceService.findImportNocarInvoices(list);
  264. return respR;
  265. }catch (Exception e){
  266. e.printStackTrace();
  267. return new RespR(false,e.getMessage());
  268. }
  269. }
  270. /**
  271. * 批量查询无车运单信息
  272. *
  273. * @param file 参数集
  274. * @return
  275. */
  276. @PostMapping("/batchImportNocarBillWay")
  277. @ApiOperation(value="批量查询无车运单信息", notes="批量查询无车运单信息")
  278. @LoginRequired
  279. public RespR batchImportNocarBillWay(@RequestParam("file") MultipartFile file) {
  280. try {
  281. ImportParams params = new ImportParams();
  282. params.setTitleRows(1);
  283. params.setHeadRows(1);
  284. // params.setKeyIndex(2);
  285. List<NoCarWayBill> list = ExcelImportUtil.importExcel(file.getInputStream(), NoCarWayBill.class,params) ;
  286. RespR respR = noCarBillWayService.findImportNocarBillWay(list);
  287. return respR;
  288. }catch (Exception e){
  289. e.printStackTrace();
  290. return new RespR(false,e.getMessage());
  291. }
  292. }
  293. /**
  294. * 分页查询无车运单统计信息
  295. *
  296. * @param billInvoice
  297. * @return 用户集合
  298. */
  299. @PostMapping("/findNocarInvoicesStatic")
  300. @ApiOperation(value="分页查询无车发票统计信息", notes="分页查询无车发票统计信息")
  301. @LoginRequired
  302. public RespR findNocarInvoicesStatic(BillInvoice billInvoice) {
  303. try {
  304. if(!StringUtils.isEmpty(billInvoice.getInvoiceMakeTime()) && !"null".equals(billInvoice.getInvoiceMakeTime())){
  305. String [] res =billInvoice.getInvoiceMakeTime().split(",");
  306. billInvoice.setInvoiceMakeStart(res[0]);
  307. billInvoice.setInvoiceMakeEnd(res[1]);
  308. }
  309. if(!StringUtils.isEmpty(billInvoice.getCalculateTime()) && !"null".equals(billInvoice.getCalculateTime())){
  310. String [] res =billInvoice.getCalculateTime().split(",");
  311. billInvoice.setCalculateTimeStart(res[0]);
  312. billInvoice.setCalculateTimeEnd(res[1]);
  313. }
  314. RespR respR = new RespR(nocarInvoiceService.findInvoiceStatics(billInvoice));
  315. return respR;
  316. }catch (Exception e){
  317. e.printStackTrace();
  318. return new RespR(false,e.getMessage());
  319. }
  320. }
  321. /**
  322. * 批量运单导入
  323. *
  324. * @param file 参数集
  325. * @return
  326. */
  327. @PostMapping("/batchImprotBillWay")
  328. @ApiOperation(value="批量运单导入", notes="批量运单导入")
  329. @LoginRequired
  330. public RespR batchImprotBillWay(@RequestParam("file") MultipartFile file,String customerName) {
  331. try {
  332. ImportParams params = new ImportParams();
  333. params.setTitleRows(1);
  334. params.setHeadRows(1);
  335. params.setKeyIndex(2);
  336. List<NoCarWayBill> list = ExcelImportUtil.importExcel(file.getInputStream(), NoCarWayBill.class,params) ;
  337. buildDate(list);
  338. RespR respR = noCarBillWayService.batchBillWayStart(list,customerName);
  339. return respR;
  340. }catch (Exception e){
  341. e.printStackTrace();
  342. return new RespR(false,e.getMessage());
  343. }
  344. }
  345. /**
  346. * 批量运单导入
  347. *
  348. * @param file 参数集
  349. * @return
  350. */
  351. @PostMapping("/batchImprotHistoryBillWay")
  352. @ApiOperation(value="批量历史运单导入", notes="批量历史运单导入")
  353. @LoginRequired
  354. public RespR batchImprotHistoryBillWay(@RequestParam("file") MultipartFile file,String customerName) {
  355. try {
  356. ImportParams params = new ImportParams();
  357. params.setTitleRows(1);
  358. params.setHeadRows(1);
  359. params.setKeyIndex(2);
  360. List<NoCarWayBill> list = ExcelImportUtil.importExcel(file.getInputStream(), NoCarWayBill.class,params);
  361. log.info("1111111111"+list.size());
  362. buildDate(list);
  363. RespR respR = noCarBillWayService.batchHsitoryBillWay(list,customerName);
  364. return respR;
  365. }catch (Exception e){
  366. e.printStackTrace();
  367. return new RespR(false,e.getMessage());
  368. }
  369. }
  370. /**
  371. * 批量运单导入
  372. *
  373. * @param file 参数集
  374. * @return
  375. */
  376. @PostMapping("/batchImprotEndBillWay")
  377. @ApiOperation(value="批量运单结束", notes="批量运单结束")
  378. @LoginRequired
  379. public RespR batchImprotEndBillWay(@RequestParam("file") MultipartFile file,String customerName) {
  380. try {
  381. ImportParams params = new ImportParams();
  382. params.setTitleRows(1);
  383. params.setHeadRows(1);
  384. params.setKeyIndex(2);
  385. List<NoCarWayBill> list = ExcelImportUtil.importExcel(file.getInputStream(), NoCarWayBill.class,params);
  386. buildDateEnd(list);
  387. log.info("1111111111"+list.size());
  388. RespR respR = noCarBillWayService.batchBillWayEnd(list,customerName);
  389. return respR;
  390. }catch (Exception e){
  391. e.printStackTrace();
  392. return new RespR(false,e.getMessage());
  393. }
  394. }
  395. public void buildDate(List<NoCarWayBill> list){
  396. DateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  397. for(NoCarWayBill noCarWayBill:list){
  398. noCarWayBill.setStartTime(format.format(noCarWayBill.getStartTimeDate()));
  399. noCarWayBill.setPredictEndTime(format.format(noCarWayBill.getPredictEndTimeDate()));
  400. noCarWayBill.setFee(Math.round(noCarWayBill.getFeeD()*100));
  401. }
  402. }
  403. public void buildDateEnd(List<NoCarWayBill> list){
  404. DateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  405. for(NoCarWayBill noCarWayBill:list){
  406. noCarWayBill.setPredictEndTime(format.format(noCarWayBill.getActEndTimeDate()));
  407. }
  408. }
  409. /**
  410. * 分页查询无车计费信息
  411. *
  412. * @param page 参数集
  413. * @return 用户集合
  414. */
  415. @PostMapping("/findBatchList")
  416. @ApiOperation(value="运单批次号查询", notes="运单批次号查询")
  417. @LoginRequired
  418. public RespR findBatchList(Page page, CustomerOper customerOper) {
  419. try {
  420. RespR respR = new RespR(customerOperService.findAllCustomerOper(page, customerOper));
  421. return respR;
  422. }catch (Exception e){
  423. e.printStackTrace();
  424. return new RespR(false,e.getMessage());
  425. }
  426. }
  427. /**
  428. * 分页查询无车计费信息
  429. *
  430. * @param page 参数集
  431. * @return 用户集合
  432. */
  433. @PostMapping("/findNocarCalculateInfo")
  434. @ApiOperation(value="分页查询无车计费信息", notes="分页查询无车计费信息")
  435. @LoginRequired
  436. public RespR findNocarCalculateInfo(Page page, NoCarCalculateInfor carCalculateInfor) {
  437. try {
  438. setTimeDue1(carCalculateInfor);
  439. RespR respR = new RespR(noCarCalculateInfoService.findByPageAndCalculateInfor(page, carCalculateInfor));
  440. return respR;
  441. }catch (Exception e){
  442. e.printStackTrace();
  443. return new RespR(false,e.getMessage());
  444. }
  445. }
  446. /**
  447. * 分页查询无车计费统计信息
  448. *
  449. * @param carCalculateInfor 参数集
  450. * @return 用户集合
  451. */
  452. @PostMapping("/findNocarCalculateInfoStatis")
  453. @ApiOperation(value="分页查询无车计费统计信息", notes="分页查询无车计费统计信息")
  454. @LoginRequired
  455. public RespR findNocarCalculateInfoStatis(NoCarCalculateInfor carCalculateInfor) {
  456. try {
  457. setTimeDue1(carCalculateInfor);
  458. RespR respR = new RespR(noCarCalculateInfoService.findNocarCalculateInfoStatis(carCalculateInfor));
  459. return respR;
  460. }catch (Exception e){
  461. e.printStackTrace();
  462. return new RespR(false,e.getMessage());
  463. }
  464. }
  465. @GetMapping("/templateDownload")
  466. @ApiOperation(value="模板下载", notes="模板下载")
  467. public RespR contractDownload(String fileName,HttpServletResponse response){
  468. if("1".equals(fileName)){
  469. fileName = "运单模板.xlsx";
  470. }else if("2".equals(fileName)){
  471. fileName = "运单结束模板.xlsx";
  472. }else if("3".equals(fileName)){
  473. fileName = "历史运单模板.xlsx";
  474. }else if("4".equals(fileName)){
  475. fileName = "无车发票查询模板.xlsx";
  476. }else if("5".equals(fileName)){
  477. fileName = "无车运单查询模板.xlsx";
  478. }else if("6".equals(fileName)){
  479. fileName = "自有车交易查询模板.xlsx";
  480. }else if("7".equals(fileName)){
  481. fileName = "自有车发票查询模板.xlsx";
  482. }
  483. OutputStream outputStream = null;
  484. InputStream inputStream = null;
  485. try {
  486. File file = new File("/home/app/excel/"+fileName);
  487. inputStream = new FileInputStream(file);
  488. response.setHeader("Content-Disposition", "attachment;filename="+ URLEncoder.encode(fileName, "UTF-8"));
  489. outputStream = response.getOutputStream();
  490. IOUtils.copy(inputStream, outputStream);
  491. response.flushBuffer();
  492. return new RespR(true);
  493. } catch (IOException e) {
  494. } finally {
  495. IOUtils.closeQuietly(inputStream);
  496. IOUtils.closeQuietly(outputStream);
  497. }
  498. return new RespR(false);
  499. }
  500. public void setTimeDue1(NoCarCalculateInfor carCalculateInfor){
  501. if(!StringUtils.isEmpty(carCalculateInfor.getInvoiceMakeTime()) && !"null".equals(carCalculateInfor.getInvoiceMakeTime())){
  502. String [] res = carCalculateInfor.getInvoiceMakeTime().split(",");
  503. carCalculateInfor.setInvoiceMakeStart(res[0]);
  504. carCalculateInfor.setInvoiceMakeEnd(res[1]);
  505. }else{
  506. carCalculateInfor.setInvoiceMakeTime(null);
  507. }
  508. if(!StringUtils.isEmpty(carCalculateInfor.getCalculateTime()) && !"null".equals(carCalculateInfor.getCalculateTime())){
  509. String [] res = carCalculateInfor.getCalculateTime().split(",");
  510. carCalculateInfor.setCalculateStart(res[0]);
  511. carCalculateInfor.setCalculateEnd(res[1]);
  512. }else{
  513. carCalculateInfor.setCalculateTime(null);
  514. }
  515. }
  516. }