NoCarInterServiceImpl.java 36 KB

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