NoCarInterServiceImpl.java 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801
  1. package com.jkcredit.invoice.credit.custInterface;
  2. import cn.com.taiji.sdk.model.comm.protocol.tts.trade.service.CardTradeModel;
  3. import com.alibaba.fastjson.JSONArray;
  4. import com.alibaba.fastjson.JSONObject;
  5. import com.jkcredit.invoice.common.DataResult;
  6. import com.jkcredit.invoice.mapper.Binvoce.BillInvoiceMapper;
  7. import com.jkcredit.invoice.mapper.customer.CustomerCarRecMapper;
  8. import com.jkcredit.invoice.mapper.customer.CustomerMapper;
  9. import com.jkcredit.invoice.mapper.customer.CustomerRecMapper;
  10. import com.jkcredit.invoice.mapper.waybill.NoCarWaybillMapper;
  11. import com.jkcredit.invoice.model.entity.customer.Customer;
  12. import com.jkcredit.invoice.model.entity.customer.CustomerCarRec;
  13. import com.jkcredit.invoice.model.entity.customer.CustomerRec;
  14. import com.jkcredit.invoice.model.entity.invoice.BillInvoice;
  15. import com.jkcredit.invoice.model.entity.manager.Param;
  16. import com.jkcredit.invoice.model.entity.waybill.NoCarWayBill;
  17. import com.jkcredit.invoice.service.lowerService.NoCarService;
  18. import com.jkcredit.invoice.service.lowerService.SelfCarServiceL;
  19. import com.jkcredit.invoice.service.lowerService.vo.*;
  20. import com.jkcredit.invoice.service.manager.ParamService;
  21. import com.jkcredit.invoice.service.nocar.NoCarBillWayImportService;
  22. import com.jkcredit.invoice.util.DateUtil;
  23. import com.jkcredit.invoice.util.RespR;
  24. import lombok.extern.slf4j.Slf4j;
  25. import org.apache.commons.lang3.StringUtils;
  26. import org.springframework.beans.factory.annotation.Autowired;
  27. import org.springframework.stereotype.Service;
  28. import java.util.ArrayList;
  29. import java.util.List;
  30. import static java.util.stream.Collectors.toList;
  31. @Slf4j
  32. @Service("noCarInterService")
  33. public class NoCarInterServiceImpl implements NoCarInterService {
  34. @Autowired
  35. private NoCarService noCarService;
  36. @Autowired
  37. NoCarBillWayImportService noCarWaybillMapperImprt;
  38. @Autowired
  39. CustomerCarRecMapper customerCarRecMapper;
  40. @Autowired
  41. NoCarWaybillMapper noCarWaybillMapper;
  42. @Autowired
  43. CustomerRecMapper customerRecMapper;
  44. @Autowired
  45. BillInvoiceMapper billInvoiceMapper;
  46. @Autowired
  47. CustomerMapper customerMapper;
  48. @Autowired
  49. ParamService paramService;
  50. /**
  51. * 无车 车辆备案接口
  52. * @param appKey
  53. * @param api
  54. * @param data
  55. * @return
  56. */
  57. @Override
  58. public DataResult customerCarRec(String appKey, String api, String data,String requestid) {
  59. long costtimestart = System.currentTimeMillis();
  60. DataResult result = new DataResult();
  61. result.setData(3);
  62. result.setCode(200);
  63. result.setRequestid(requestid);
  64. result.setMsg("无法认证");
  65. try {
  66. log.info("[-NoCarInterServiceImpl.customerCarRec-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data);
  67. JSONObject jsonObject = JSONObject.parseObject(data);
  68. String companyName = jsonObject.getString("companyName");//企业名称 选输
  69. String plateNumber = jsonObject.getString("plateNumber");//plateNumber 必输
  70. String plateColor = jsonObject.getString("plateColor");//plateColor 必输
  71. if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(plateNumber)
  72. || StringUtils.isEmpty(plateColor)
  73. ){
  74. return result;
  75. }
  76. List<CustomerCarRec> customerCarRecList = new ArrayList<CustomerCarRec>();
  77. CustomerCarRec customerCarRec = new CustomerCarRec();
  78. customerCarRec.setCustomerName(appKey);
  79. if(StringUtils.isEmpty(companyName)){
  80. String companyNum = paramService.getParamsByParamName("REQUEST_COMPANY_NUM").getParamValue();
  81. String appKeyDemo = paramService.getParamsByParamName("REQUEST_COMPANY_NAME").getParamValue();
  82. CustomerRec customerRec = new CustomerRec();
  83. customerRec.setCustomerName(appKeyDemo);
  84. customerRec.setCompanyNum(companyNum);
  85. CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyNum(customerRec);
  86. customerCarRec.setCompanyName(customerRec1.getCompanyName());
  87. customerCarRec.setCustomerName(appKeyDemo);
  88. }else {
  89. customerCarRec.setCompanyName(companyName);
  90. }
  91. customerCarRec.setBusinessType("2");//无车
  92. customerCarRec.setCarColor(plateColor);
  93. customerCarRec.setCarNum(plateNumber);
  94. customerCarRec.setInterType(0);
  95. if("0".equals(customerCarRec.getCarColor())){
  96. customerCarRec.setServiceOperation(1);//默认运营车辆
  97. }
  98. customerCarRecList.add(customerCarRec);
  99. RespR rs = noCarService.customerCarRec(customerCarRecList);
  100. long costtimeend = System.currentTimeMillis();
  101. log.info("[-NoCarInterServiceImpl.customerCarRec-] result is "
  102. + rs.toString() + ", request is " + data + " ,costtime="
  103. + (costtimeend - costtimestart));
  104. if(null != rs && rs.getCode() == 0){
  105. result.setData(1);
  106. result.setCode(200);
  107. result.setMsg(rs.getData().toString());
  108. return result;
  109. } else {
  110. result.setData(3);
  111. result.setCode(200);
  112. result.setMsg(rs.getMsg());
  113. return result;
  114. }
  115. } catch (Exception e) {
  116. log.error("[-NoCarInterServiceImpl.customerCarRec-] get httpclient exception is "
  117. + e + ", request is " + data);
  118. }
  119. return result;
  120. }
  121. /**
  122. * 无车 车辆备案查询接口
  123. * @param appKey
  124. * @param api
  125. * @param data
  126. * @return
  127. */
  128. @Override
  129. public DataResult customeRecUpperQuery(String appKey, String api, String data,String requestid) {
  130. long costtimestart = System.currentTimeMillis();
  131. DataResult result = new DataResult();
  132. result.setData(3);
  133. result.setCode(200);
  134. result.setRequestid(requestid);
  135. result.setMsg("无法认证");
  136. try {
  137. log.info("[-NoCarInterServiceImpl.customeRecUpperQuery-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data);
  138. JSONObject jsonObject = JSONObject.parseObject(data);
  139. String waybillSource = jsonObject.getString("waybillSource");//备案来源 选输
  140. String plateNumber = jsonObject.getString("plateNumber");//plateNumber 必输
  141. String plateColor = jsonObject.getString("plateColor");//plateColor 必输
  142. if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(plateNumber)
  143. || StringUtils.isEmpty(plateColor)
  144. ){
  145. return result;
  146. }
  147. CustomerCarRec customerCarRec = new CustomerCarRec();
  148. Param param = paramService.getParamsByParamName("REQUEST_COMPANY_NUM");
  149. customerCarRec.setCompanyNum(param.getParamValue());//无车,车辆备案,运单上传,运单查询都是统一用交科的企业编号;自有车用客户的企业编号
  150. customerCarRec.setCarColor(plateColor);
  151. customerCarRec.setCarNum(plateNumber);
  152. customerCarRec.setCustomerName(appKey);
  153. RespR rs = noCarService.customerCarRecQueryUpper(customerCarRec);
  154. long costtimeend = System.currentTimeMillis();
  155. log.info("[-NoCarInterServiceImpl.customeRecUpperQuery-] result is "
  156. + rs.toString() + ", request is " + data + " ,costtime="
  157. + (costtimeend - costtimestart));
  158. if(null != rs && rs.getCode() == 0){
  159. result.setData(1);
  160. result.setCode(200);
  161. result.setMsg(rs.getData().toString());
  162. JSONObject jb = JSONObject.parseObject(rs.getData().toString());
  163. if(null == jb.getJSONArray("result") || jb.getJSONArray("result").size() == 0){
  164. result.setData(2);
  165. result.setMsg("车辆未备案");
  166. }
  167. return result;
  168. } else {
  169. result.setData(3);
  170. result.setCode(200);
  171. result.setMsg(rs.getMsg());
  172. return result;
  173. }
  174. } catch (Exception e) {
  175. log.error("[-NoCarInterServiceImpl.customeRecUpperQuery-] get httpclient exception is "
  176. + e + ", request is " + data);
  177. }
  178. return result;
  179. }
  180. /**
  181. * 无车 实时运单开始指令接口
  182. * @param appKey
  183. * @param api
  184. * @param data
  185. * @return
  186. */
  187. @Override
  188. public DataResult noCarBillStart(String appKey, String api, String data,String requestid) {
  189. long costtimestart = System.currentTimeMillis();
  190. DataResult result = new DataResult();
  191. result.setData(3);
  192. result.setCode(200);
  193. result.setRequestid(requestid);
  194. result.setMsg("无法认证");
  195. try {
  196. log.info("[-NoCarInterServiceImpl.noCarBillStart-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data);
  197. JSONObject jsonObject = JSONObject.parseObject(data);
  198. String num = jsonObject.getString("num");//运单编号 必选
  199. String plateNumber = jsonObject.getString("plateNumber");//车牌号 必选
  200. String plateColor = jsonObject.getString("plateColor");//车牌颜色 必选
  201. String startTime = jsonObject.getString("startTime");//运单开始时间 必选
  202. String sourceAddr = jsonObject.getString("sourceAddr");//运单开始地址 必选
  203. String destAddr = jsonObject.getString("destAddr");//运单目的地址 必选
  204. String predictEndTime = jsonObject.getString("predictEndTime");//运单预计完成时间 必选
  205. Integer fee = jsonObject.getInteger("fee");//运单费用 必选
  206. Integer titleType = jsonObject.getInteger("titleType");//发票抬头类型 必选
  207. String taxplayerCode = jsonObject.getString("taxplayerCode");//税号 必选
  208. if(StringUtils.isEmpty(data)|| null == jsonObject
  209. || StringUtils.isEmpty(num)
  210. || StringUtils.isEmpty(plateNumber)
  211. || StringUtils.isEmpty(plateColor)
  212. || StringUtils.isEmpty(startTime)
  213. || StringUtils.isEmpty(sourceAddr)
  214. || StringUtils.isEmpty(destAddr)
  215. || StringUtils.isEmpty(predictEndTime)
  216. || null == fee
  217. || null == titleType
  218. || StringUtils.isEmpty(taxplayerCode)
  219. ){
  220. return result;
  221. }
  222. CustomerCarRec customerCarRec1 = customerCarRecMapper.selectByCarNum(plateNumber);
  223. if (null == customerCarRec1){
  224. return result;
  225. }
  226. NoCarWayBill noCarWayBill = new NoCarWayBill();
  227. noCarWayBill.setCustomerName(appKey);
  228. noCarWayBill.setCompanyName(customerCarRec1.getCompanyName());
  229. noCarWayBill.setPlateNum(plateNumber);
  230. noCarWayBill.setBillNum(num);
  231. noCarWayBill.setPlateColor(plateColor);
  232. noCarWayBill.setStartTime(DateUtil.getDistanceHoursFormat(startTime));
  233. noCarWayBill.setSourceAddr(sourceAddr);
  234. noCarWayBill.setDestAddr(destAddr);
  235. noCarWayBill.setPredictEndTime(DateUtil.getDistanceHoursFormat(predictEndTime));
  236. noCarWayBill.setFee(fee.longValue());
  237. noCarWayBill.setTitleType(titleType);
  238. noCarWayBill.setTaxplayerCode(taxplayerCode);
  239. NoCarWayBill noCarWayBillDb = noCarWaybillMapper.selectByBillNum(noCarWayBill.getBillNum());
  240. if(noCarWayBillDb!=null && (noCarWayBillDb.getBillwayStatus() == 1||noCarWayBillDb.getBillwayStatus() == 2 || noCarWayBillDb.getBillwayStatus() == 3 || noCarWayBillDb.getBillwayStatus() == 4)) {
  241. noCarWaybillMapperImprt.updateBillway(-2, "失败,运单号重复", noCarWayBill);
  242. }
  243. RespR rs = noCarService.noCarWaybillStart(noCarWayBill);
  244. long costtimeend = System.currentTimeMillis();
  245. log.info("[-NoCarInterServiceImpl.noCarBillStart-] result is "
  246. + rs.toString() + ", request is " + data + " ,costtime="
  247. + (costtimeend - costtimestart));
  248. if(null != rs && rs.getCode() == 0){
  249. result.setData(1);
  250. result.setCode(200);
  251. result.setMsg(rs.getData().toString());
  252. return result;
  253. } else {
  254. result.setData(3);
  255. result.setCode(200);
  256. result.setMsg(rs.getMsg());
  257. return result;
  258. }
  259. } catch (Exception e) {
  260. log.error("[-NoCarInterServiceImpl.noCarBillStart-] get httpclient exception is "
  261. + e + ", request is " + data);
  262. }
  263. return result;
  264. }
  265. /**
  266. * 无车 实时运单结束指令接口
  267. * @param appKey
  268. * @param api
  269. * @param data
  270. * @return
  271. */
  272. @Override
  273. public DataResult noCarBillEnd(String appKey, String api, String data,String requestid) {
  274. long costtimestart = System.currentTimeMillis();
  275. DataResult result = new DataResult();
  276. result.setData(3);
  277. result.setCode(200);
  278. result.setRequestid(requestid);
  279. result.setMsg("无法认证");
  280. try {
  281. log.info("[-NoCarInterServiceImpl.noCarBillEnd-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data);
  282. JSONObject jsonObject = JSONObject.parseObject(data);
  283. String num = jsonObject.getString("num");//运单号 必输
  284. String realDestAddr = jsonObject.getString("realDestAddr");//运单实际目的地址 必输
  285. String endTime = jsonObject.getString("endTime");//运单实际结束时间 必输
  286. if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(num)
  287. || StringUtils.isEmpty(realDestAddr)
  288. || StringUtils.isEmpty(endTime)
  289. ){
  290. return result;
  291. }
  292. NoCarWayBill noCarWayBill1 = noCarWaybillMapper.selectByBillNum(num);
  293. if (null == noCarWayBill1){
  294. result.setMsg("运单开始指令还未上传!");
  295. return result;
  296. }
  297. NoCarWayBill noCarWayBill = new NoCarWayBill();
  298. noCarWayBill.setBillNum(num);
  299. noCarWayBill.setDestAddr(realDestAddr);
  300. noCarWayBill.setPredictEndTime(DateUtil.getDistanceHoursFormat(endTime));
  301. noCarWayBill.setStartTime(noCarWayBill1.getStartTime());
  302. noCarWayBill.setHisFlag(noCarWayBill1.getHisFlag());
  303. RespR rs = noCarService.noCarWaybillEnd(noCarWayBill);
  304. long costtimeend = System.currentTimeMillis();
  305. log.info("[-NoCarInterServiceImpl.noCarBillEnd-] result is "
  306. + rs.toString() + ", request is " + data + " ,costtime="
  307. + (costtimeend - costtimestart));
  308. if(null != rs && rs.getCode() == 0){
  309. result.setData(1);
  310. result.setCode(200);
  311. result.setMsg(rs.getData().toString());
  312. return result;
  313. } else {
  314. result.setData(3);
  315. result.setCode(200);
  316. result.setMsg(rs.getMsg());
  317. return result;
  318. }
  319. } catch (Exception e) {
  320. log.error("[-NoCarInterServiceImpl.noCarBillEnd-] get httpclient exception is "
  321. + e + ", request is " + data);
  322. }
  323. return result;
  324. }
  325. /**
  326. * 无车 历史运单开始指令接口
  327. * @param appKey
  328. * @param api
  329. * @param data
  330. * @return
  331. */
  332. @Override
  333. public DataResult noCarHisWaybillStart(String appKey, String api, String data,String requestid) {
  334. long costtimestart = System.currentTimeMillis();
  335. DataResult result = new DataResult();
  336. result.setData(3);
  337. result.setCode(200);
  338. result.setRequestid(requestid);
  339. result.setMsg("无法认证");
  340. try {
  341. log.info("[-NoCarInterServiceImpl.noCarHisWaybillStart-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data);
  342. JSONObject jsonObject = JSONObject.parseObject(data);
  343. String num = jsonObject.getString("num");//运单编号 必选
  344. String plateNumber = jsonObject.getString("plateNumber");//车牌号 必选
  345. String plateColor = jsonObject.getString("plateColor");//车牌颜色 必选
  346. String startTime = jsonObject.getString("startTime");//运单开始时间 必选
  347. String sourceAddr = jsonObject.getString("sourceAddr");//运单开始地址 必选
  348. String destAddr = jsonObject.getString("destAddr");//运单目的地址 必选
  349. String predictEndTime = jsonObject.getString("predictEndTime");//运单预计完成时间 必选
  350. Integer fee = jsonObject.getInteger("fee");//运单费用 必选
  351. Integer titleType = jsonObject.getInteger("titleType");//发票抬头类型 必选
  352. String taxplayerCode = jsonObject.getString("taxplayerCode");//税号 必选
  353. if(StringUtils.isEmpty(data)|| null == jsonObject
  354. || StringUtils.isEmpty(num)
  355. || StringUtils.isEmpty(plateNumber)
  356. || StringUtils.isEmpty(plateColor)
  357. || StringUtils.isEmpty(startTime)
  358. || StringUtils.isEmpty(sourceAddr)
  359. || StringUtils.isEmpty(destAddr)
  360. || StringUtils.isEmpty(predictEndTime)
  361. || null == fee
  362. || null == titleType
  363. || StringUtils.isEmpty(taxplayerCode)
  364. ){
  365. return result;
  366. }
  367. CustomerCarRec customerCarRec1 = customerCarRecMapper.selectByCarNum(plateNumber);
  368. if (null == customerCarRec1){
  369. return result;
  370. }
  371. NoCarWayBill noCarWayBill = new NoCarWayBill();
  372. noCarWayBill.setCustomerName(appKey);
  373. noCarWayBill.setCompanyName(customerCarRec1.getCompanyName());
  374. noCarWayBill.setPlateNum(plateNumber);
  375. noCarWayBill.setBillNum(num);
  376. noCarWayBill.setPlateColor(plateColor);
  377. noCarWayBill.setStartTime(DateUtil.getDistanceHoursFormat(startTime));
  378. noCarWayBill.setSourceAddr(sourceAddr);
  379. noCarWayBill.setDestAddr(destAddr);
  380. noCarWayBill.setPredictEndTime(DateUtil.getDistanceHoursFormat(predictEndTime));
  381. noCarWayBill.setFee(fee.longValue());
  382. noCarWayBill.setTitleType(titleType);
  383. noCarWayBill.setTaxplayerCode(taxplayerCode);
  384. NoCarWayBill noCarWayBillDb = noCarWaybillMapper.selectByBillNum(noCarWayBill.getBillNum());
  385. if(noCarWayBillDb!=null && (noCarWayBillDb.getBillwayStatus() == 1||noCarWayBillDb.getBillwayStatus() == 2 || noCarWayBillDb.getBillwayStatus() == 3 || noCarWayBillDb.getBillwayStatus() == 4)) {
  386. noCarWaybillMapperImprt.updateBillway(-2, "失败,运单号重复", noCarWayBill);
  387. }
  388. RespR rs = noCarService.noCarHisWaybillStart(noCarWayBill);
  389. long costtimeend = System.currentTimeMillis();
  390. log.info("[-NoCarInterServiceImpl.noCarHisWaybillStart-] result is "
  391. + rs.toString() + ", request is " + data + " ,costtime="
  392. + (costtimeend - costtimestart));
  393. if(null != rs && rs.getCode() == 0){
  394. result.setData(1);
  395. result.setCode(200);
  396. result.setMsg(rs.getData().toString());
  397. return result;
  398. } else {
  399. result.setData(3);
  400. result.setCode(200);
  401. result.setMsg(rs.getMsg());
  402. return result;
  403. }
  404. } catch (Exception e) {
  405. log.error("[-NoCarInterServiceImpl.noCarHisWaybillStart-] get httpclient exception is "
  406. + e + ", request is " + data);
  407. }
  408. return result;
  409. }
  410. /**
  411. * 无车 历史运单结束指令接口
  412. * @param appKey
  413. * @param api
  414. * @param data
  415. * @return
  416. */
  417. @Override
  418. public DataResult noCarHisWaybillEnd(String appKey, String api, String data,String requestid) {
  419. long costtimestart = System.currentTimeMillis();
  420. DataResult result = new DataResult();
  421. result.setData(3);
  422. result.setCode(200);
  423. result.setRequestid(requestid);
  424. result.setMsg("无法认证");
  425. try {
  426. log.info("[-NoCarInterServiceImpl.noCarHisWaybillEnd-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data);
  427. JSONObject jsonObject = JSONObject.parseObject(data);
  428. String num = jsonObject.getString("num");//运单号 必输
  429. String realDestAddr = jsonObject.getString("realDestAddr");//运单实际目的地址 必输
  430. String endTime = jsonObject.getString("endTime");//运单实际结束时间 必输
  431. if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(num)
  432. || StringUtils.isEmpty(realDestAddr)
  433. || StringUtils.isEmpty(endTime)
  434. ){
  435. return result;
  436. }
  437. NoCarWayBill noCarWayBill1 = noCarWaybillMapper.selectByBillNum(num);
  438. if (null == noCarWayBill1){
  439. return result;
  440. }
  441. NoCarWayBill noCarWayBill = new NoCarWayBill();
  442. noCarWayBill.setBillNum(num);
  443. noCarWayBill.setDestAddr(realDestAddr);
  444. noCarWayBill.setPredictEndTime(DateUtil.getDistanceHoursFormat(endTime));
  445. noCarWayBill.setStartTime(noCarWayBill1.getStartTime());
  446. noCarWayBill.setHisFlag(noCarWayBill1.getHisFlag());
  447. RespR rs = noCarService.noCarHisWaybillEnd(noCarWayBill);
  448. long costtimeend = System.currentTimeMillis();
  449. log.info("[-NoCarInterServiceImpl.noCarHisWaybillEnd-] result is "
  450. + rs.toString() + ", request is " + data + " ,costtime="
  451. + (costtimeend - costtimestart));
  452. if(null != rs && rs.getCode() == 0){
  453. result.setData(1);
  454. result.setCode(200);
  455. result.setMsg(rs.getData().toString());
  456. return result;
  457. } else {
  458. result.setData(3);
  459. result.setCode(200);
  460. result.setMsg(rs.getMsg());
  461. return result;
  462. }
  463. } catch (Exception e) {
  464. log.error("[-NoCarInterServiceImpl.noCarHisWaybillEnd-] get httpclient exception is "
  465. + e + ", request is " + data);
  466. }
  467. return result;
  468. }
  469. /**
  470. * 无车 运单号查询发票数据
  471. * @param appKey
  472. * @param api
  473. * @param data
  474. * @return
  475. */
  476. @Override
  477. public DataResult noCarVoiceQuery(String appKey, String api, String data,String requestid) {
  478. long costtimestart = System.currentTimeMillis();
  479. DataResult result = new DataResult();
  480. result.setData(3);
  481. result.setCode(200);
  482. result.setRequestid(requestid);
  483. result.setMsg("无法认证");
  484. try {
  485. log.info("[-NoCarInterServiceImpl.noCarVoiceQuery-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data);
  486. JSONObject jsonObject = JSONObject.parseObject(data);
  487. String num = jsonObject.getString("num");//运单号 必输
  488. if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(num)
  489. ){
  490. return result;
  491. }
  492. NoCarWayBill noCarWayBill1 = noCarWaybillMapper.selectByBillNum(num);
  493. if (null == noCarWayBill1){
  494. result.setMsg("运单号异常,无法开票");
  495. return result;
  496. }
  497. NoCarWayBill noCarWayBill = new NoCarWayBill();
  498. noCarWayBill.setBillNum(num);
  499. noCarWayBill.setCustomerName(appKey);
  500. noCarWayBill.setCompanyName(noCarWayBill1.getCompanyName());
  501. noCarWayBill.setPlateNum(noCarWayBill1.getPlateNum());
  502. noCarWayBill.setInterType(0);//接口
  503. RespR rs = noCarService.getInvoiceByWayBillNumReal(noCarWayBill,true);
  504. long costtimeend = System.currentTimeMillis();
  505. log.info("[-NoCarInterServiceImpl.noCarVoiceQuery-] result is "
  506. + rs.toString() + ", request is " + data + " ,costtime="
  507. + (costtimeend - costtimestart));
  508. if(null != rs && rs.getCode() == 0){
  509. result.setData(1);
  510. result.setCode(200);
  511. result.setMsg(rs.getData().toString());
  512. return result;
  513. } else {
  514. result.setData(3);
  515. result.setCode(200);
  516. result.setMsg(rs.getMsg());
  517. return result;
  518. }
  519. } catch (Exception e) {
  520. log.error("[-NoCarInterServiceImpl.noCarVoiceQuery-] get httpclient exception is "
  521. + e + ", request is " + data);
  522. }
  523. return result;
  524. }
  525. /**
  526. * 无车 获取未查询过发票的运单编号
  527. * @param appKey
  528. * @param api
  529. * @param data
  530. * @return
  531. */
  532. @Override
  533. public DataResult noCarNoVoiceQuery(String appKey, String api, String data,String requestid) {
  534. long costtimestart = System.currentTimeMillis();
  535. DataResult result = new DataResult();
  536. result.setData(3);
  537. result.setCode(200);
  538. result.setRequestid(requestid);
  539. result.setMsg("无法认证");
  540. try {
  541. log.info("[-NoCarInterServiceImpl.noCarNoVoiceQuery-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data);
  542. List<NoCarWayBill> noCarWayBills = noCarWaybillMapper.getNoCarNoVoiceQuery(appKey);
  543. List<String> list1 = new ArrayList<String>();
  544. for (NoCarWayBill noCarWayBill:noCarWayBills
  545. ) {
  546. list1.add(noCarWayBill.getBillNum());
  547. }
  548. List<BillInvoice> billInvoices = billInvoiceMapper.selectNoCarNoVoiceQuery(appKey);
  549. List<String> list2 = new ArrayList<String>();
  550. for (BillInvoice billInvoice:billInvoices
  551. ) {
  552. list2.add(billInvoice.getWaybillNum());
  553. }
  554. List<String> reduce1 = list1.stream().filter(item -> !list2.contains(item)).collect(toList());
  555. long costtimeend = System.currentTimeMillis();
  556. log.info("[-NoCarInterServiceImpl.noCarNoVoiceQuery-] result is "
  557. + reduce1.toString() + ", request is " + data + " ,costtime="
  558. + (costtimeend - costtimestart));
  559. if(null != reduce1 && reduce1.size() > 0){
  560. result.setData(1);
  561. result.setCode(200);
  562. result.setMsg(reduce1.toString());
  563. return result;
  564. } else {
  565. result.setData(2);
  566. result.setCode(200);
  567. result.setMsg("未查得");
  568. return result;
  569. }
  570. } catch (Exception e) {
  571. log.error("[-NoCarInterServiceImpl.noCarNoVoiceQuery-] get httpclient exception is "
  572. + e + ", request is " + data);
  573. }
  574. return result;
  575. }
  576. /**
  577. * 无车 账户余额查询接口
  578. * @param appKey
  579. * @param api
  580. * @param data
  581. * @return
  582. */
  583. @Override
  584. public DataResult balanceQuery(String appKey, String api, String data,String requestid) {
  585. long costtimestart = System.currentTimeMillis();
  586. DataResult result = new DataResult();
  587. result.setData(3);
  588. result.setCode(200);
  589. result.setRequestid(requestid);
  590. result.setMsg("无法认证");
  591. try {
  592. log.info("[-NoCarInterServiceImpl.balanceQuery-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data);
  593. Customer customer = customerMapper.selectByCustomerName(appKey);
  594. long costtimeend = System.currentTimeMillis();
  595. log.info("[-NoCarInterServiceImpl.balanceQuery-] result is "
  596. + customer.toString() + ", request is " + data + " ,costtime="
  597. + (costtimeend - costtimestart));
  598. if(null != customer){
  599. result.setData(1);
  600. result.setCode(200);
  601. JSONObject jb = new JSONObject();
  602. jb.put("balance",customer.getAccountBalance());
  603. jb.put("lastDeductionTime",customer.getInvoiceTime());
  604. result.setMsg(jb.toString());
  605. return result;
  606. } else {
  607. result.setData(3);
  608. result.setCode(200);
  609. result.setMsg("无法认证");
  610. return result;
  611. }
  612. } catch (Exception e) {
  613. log.error("[-NoCarInterServiceImpl.balanceQuery-] get httpclient exception is "
  614. + e + ", request is " + data);
  615. }
  616. return result;
  617. }
  618. public static void main(String[] args) {
  619. List<String> list1 = new ArrayList<String>();
  620. list1.add("1");
  621. list1.add("2");
  622. list1.add("3");
  623. list1.add("5");
  624. list1.add("6");
  625. List<String> list2 = new ArrayList<String>();
  626. list2.add("2");
  627. list2.add("3");
  628. list2.add("7");
  629. list2.add("8");
  630. // 交集
  631. List<String> intersection = list1.stream().filter(item -> list2.contains(item)).collect(toList());
  632. System.out.println("---交集 intersection---");
  633. intersection.parallelStream().forEach(System.out :: println);
  634. // 差集 (list1 - list2)
  635. List<String> reduce1 = list1.stream().filter(item -> !list2.contains(item)).collect(toList());
  636. System.out.println("---差集 reduce1 (list1 - list2)---");
  637. reduce1.parallelStream().forEach(System.out :: println); // 并集
  638. List<String> listAll = list1.parallelStream().collect(toList());
  639. List<String> listAll2 = list2.parallelStream().collect(toList());
  640. listAll.addAll(listAll2);
  641. System.out.println("---并集 listAll---");
  642. listAll.parallelStream().forEachOrdered(System.out :: println);
  643. // 去重并集
  644. List<String> listAllDistinct = listAll.stream().distinct().collect(toList());
  645. System.out.println("---得到去重并集 listAllDistinct---");
  646. listAllDistinct.parallelStream().forEachOrdered(System.out :: println);
  647. System.out.println("---原来的List1---");
  648. list1.parallelStream().forEachOrdered(System.out :: println);
  649. System.out.println("---原来的List2---");
  650. list2.parallelStream().forEachOrdered(System.out :: println);
  651. }
  652. }