SelfCarInterServiceImpl.java 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813
  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.model.entity.customer.CustomerCarRec;
  7. import com.jkcredit.invoice.model.entity.customer.CustomerRec;
  8. import com.jkcredit.invoice.service.customer.CustomerRecService;
  9. import com.jkcredit.invoice.service.lowerService.SelfCarServiceL;
  10. import com.jkcredit.invoice.service.lowerService.vo.*;
  11. import com.jkcredit.invoice.util.DateUtil;
  12. import com.jkcredit.invoice.util.RespR;
  13. import lombok.extern.slf4j.Slf4j;
  14. import org.apache.commons.lang3.StringUtils;
  15. import org.springframework.beans.factory.annotation.Autowired;
  16. import org.springframework.stereotype.Service;
  17. import java.util.ArrayList;
  18. import java.util.List;
  19. @Service("selfCarInterService")
  20. @Slf4j
  21. public class SelfCarInterServiceImpl implements SelfCarInterService {
  22. @Autowired
  23. SelfCarServiceL selfCarService;
  24. @Autowired
  25. CustomerRecService customerRecMapper;
  26. /**
  27. * 自有车 用户卡列表查询接口
  28. * @param appKey
  29. * @param api
  30. * @param data
  31. * @return
  32. */
  33. @Override
  34. public DataResult customerETCQuery(String appKey, String api, String data,String requestid) {
  35. long costtimestart = System.currentTimeMillis();
  36. DataResult result = new DataResult();
  37. result.setData(3);
  38. result.setCode(200);
  39. result.setRequestid(requestid);
  40. result.setMsg("无法认证");
  41. try {
  42. log.info("[-SelfCarInterServiceImpl.customerETCQuery-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
  43. JSONObject jsonObject = JSONObject.parseObject(data);
  44. String companyNum = jsonObject.getString("companyNum");//企业编号 必输
  45. String cardId = jsonObject.getString("cardId");//卡号 非必输
  46. String plateNum = jsonObject.getString("plateNum");//车牌号 非必输
  47. Integer plateColor = jsonObject.getInteger("plateColor");//车牌颜色 非必输
  48. if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(companyNum)){
  49. result.setData(3);
  50. result.setMsg("请输入必输项!");
  51. return result;
  52. }
  53. CustomerRec customerRec = new CustomerRec();
  54. customerRec.setCustomerName(appKey);
  55. customerRec.setCompanyNum(companyNum);
  56. customerRec.setInterType(0);
  57. CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyNum(customerRec);
  58. if (null == customerRec1){
  59. result.setCode(200);
  60. result.setMsg("该企业编号在平台中不存在,请联系管理员核实!");
  61. return result;
  62. }
  63. EtcQueryVo etcQueryVo = new EtcQueryVo();
  64. etcQueryVo.setCustomerName(appKey);//客户名称
  65. etcQueryVo.setCompanyName(customerRec1.getCompanyName());//企业名称
  66. etcQueryVo.setPlateNum(plateNum);//车牌号 非必输
  67. etcQueryVo.setCardId(cardId);//卡号 非必输
  68. etcQueryVo.setPlateColor(plateColor);//车牌颜色 非必输
  69. RespR rs = selfCarService.getEtcInfo(etcQueryVo);
  70. long costtimeend = System.currentTimeMillis();
  71. log.info("[-SelfCarInterServiceImpl.customerETCQuery-] result is "
  72. + rs.toString() + ", request is " + data + " ,costtime="
  73. + (costtimeend - costtimestart));
  74. if(null != rs && rs.getCode() == 0){
  75. result.setData(1);
  76. result.setCode(200);
  77. result.setMsg(rs.getData().toString());
  78. return result;
  79. } else {
  80. if(rs!=null && rs.getCode()==2){
  81. result.setData(2);
  82. result.setCode(200);
  83. result.setMsg("未查得");
  84. return result;
  85. }
  86. result.setData(3);
  87. result.setCode(200);
  88. result.setMsg(rs.getMsg());
  89. return result;
  90. }
  91. } catch (Exception e) {
  92. log.error("[-SelfCarInterServiceImpl.customerETCQuery-] get httpclient exception is "
  93. + e + ", request is " + data);
  94. }
  95. return result;
  96. }
  97. /**
  98. * 自有车 卡信息查询接口
  99. * @param appKey
  100. * @param api
  101. * @param data
  102. * @return
  103. */
  104. @Override
  105. public DataResult customerQueryEtcInfo(String appKey, String api, String data,String requestid) {
  106. long costtimestart = System.currentTimeMillis();
  107. DataResult result = new DataResult();
  108. result.setData(3);
  109. result.setCode(200);
  110. result.setRequestid(requestid);
  111. result.setMsg("无法认证");
  112. try {
  113. log.info("[-SelfCarInterServiceImpl.customerQueryEtcInfo-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
  114. JSONObject jsonObject = JSONObject.parseObject(data);
  115. String companyNum = jsonObject.getString("companyNum");//企业编号 必输
  116. JSONArray vehicleList = jsonObject.getJSONArray("vehicleList");//车牌的json字符串 必输
  117. //JSONObject jb = vehicleList.getJSONObject(0);
  118. // String plateNum = jb.getString("plateNum");//车牌号
  119. //Integer plateColor = jb.getInteger("plateColor");//车牌颜色
  120. if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(companyNum)
  121. || null == vehicleList
  122. ){
  123. result.setCode(200);
  124. result.setMsg("必传参数有为空情况,请核实后再试");
  125. return result;
  126. }
  127. CustomerRec customerRec = new CustomerRec();
  128. customerRec.setCustomerName(appKey);
  129. customerRec.setCompanyNum(companyNum);
  130. CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyNum(customerRec);
  131. if (null == customerRec1){
  132. result.setMsg("该企业编号在平台中不存在,请联系管理员核实!");
  133. return result;
  134. }
  135. EtcBindVo etcQueryVo = new EtcBindVo();
  136. etcQueryVo.setCustomerName(appKey);//客户名称
  137. etcQueryVo.setCompanyName(customerRec1.getCompanyName());//企业名称
  138. List<CarVo> cards = new ArrayList<CarVo>();
  139. for(int i=0;i<vehicleList.size();i++) {
  140. JSONObject jb = vehicleList.getJSONObject(i);
  141. String plateNum = jb.getString("plateNum");//车牌号
  142. Integer plateColor = jb.getInteger("plateColor");//车牌颜色
  143. if(null == jb || StringUtils.isEmpty(plateNum)
  144. || null == plateColor
  145. ){
  146. result.setMsg("参数格式错误");
  147. return result;
  148. }
  149. CarVo carVo = new CarVo();
  150. carVo.setNum(plateNum);
  151. carVo.setColor(plateColor);
  152. cards.add(carVo);
  153. }
  154. etcQueryVo.setCards(cards);
  155. RespR rs = selfCarService.queryEtcInfo(etcQueryVo);
  156. long costtimeend = System.currentTimeMillis();
  157. log.info("[-SelfCarInterServiceImpl.customerQueryEtcInfo-] result is "
  158. + rs.toString() + ", request is " + data + " ,costtime="
  159. + (costtimeend - costtimestart));
  160. if(null != rs && rs.getCode() == 0){
  161. result.setData(1);
  162. result.setCode(200);
  163. result.setMsg(rs.getData().toString());
  164. return result;
  165. } else {
  166. result.setData(3);
  167. result.setCode(200);
  168. result.setMsg(rs.getMsg());
  169. if("未查得".equals(rs.getMsg())){
  170. result.setData(2);
  171. }
  172. return result;
  173. }
  174. } catch (Exception e) {
  175. log.error("[-SelfCarInterServiceImpl.customerQueryEtcInfo-] 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 customerETCRec(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("[-SelfCarInterServiceImpl.customerETCRec-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
  197. JSONObject jsonObject = JSONObject.parseObject(data);
  198. String companyNum = jsonObject.getString("companyNum");//企业编号 必输
  199. String mobile = jsonObject.getString("mobile");//企业预留手机号 必输
  200. JSONArray cardIdList = jsonObject.getJSONArray("cardIdList");//ETC卡编号列表 必输
  201. //JSONObject jb = cardIdList.getJSONObject(0);
  202. // String cardId = jb.getString("cardId");//用户卡Id
  203. if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(companyNum)
  204. || StringUtils.isEmpty(mobile)
  205. || null == cardIdList
  206. ){
  207. result.setCode(200);
  208. result.setMsg("必传参数有为空情况,请核实后再试");
  209. return result;
  210. }
  211. CustomerRec customerRec = new CustomerRec();
  212. customerRec.setCustomerName(appKey);
  213. customerRec.setCompanyNum(companyNum);
  214. CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyNum(customerRec);
  215. if (null == customerRec1){
  216. result.setCode(200);
  217. result.setMsg("该企业编号在平台中不存在,请联系管理员核实!");
  218. return result;
  219. }
  220. EtcBindVo etcQueryVo = new EtcBindVo();
  221. etcQueryVo.setCustomerName(appKey);//客户名称
  222. etcQueryVo.setCompanyName(customerRec1.getCompanyName());//企业名称
  223. etcQueryVo.setMobile(mobile);//企业预留手机号
  224. List<CarVo> cards = new ArrayList<CarVo>();
  225. for(int i=0;i<cardIdList.size();i++) {
  226. JSONObject jb = cardIdList.getJSONObject(i);
  227. String cardId = jb.getString("cardId");//用户卡Id
  228. if(null == jb || StringUtils.isEmpty(cardId)
  229. ){
  230. result.setCode(200);
  231. result.setMsg("用户卡为空!");
  232. return result;
  233. }
  234. CarVo carVo = new CarVo();
  235. carVo.setEtcNum(cardId);
  236. cards.add(carVo);
  237. }
  238. etcQueryVo.setCards(cards);
  239. RespR rs = selfCarService.customerEtcRec(etcQueryVo);
  240. long costtimeend = System.currentTimeMillis();
  241. log.info("[-SelfCarInterServiceImpl.customerETCRec-] result is "
  242. + rs.toString() + ", request is " + data + " ,costtime="
  243. + (costtimeend - costtimestart));
  244. if(null != rs && rs.getCode() == 0){
  245. result.setData(1);
  246. result.setCode(200);
  247. result.setMsg(rs.getData().toString());
  248. return result;
  249. } else {
  250. result.setData(3);
  251. result.setCode(200);
  252. result.setMsg(rs.getMsg());
  253. return result;
  254. }
  255. } catch (Exception e) {
  256. log.error("[-SelfCarInterServiceImpl.customerETCRec-] get httpclient exception is "
  257. + e + ", request is " + data);
  258. }
  259. return result;
  260. }
  261. /**
  262. * 自有车 卡绑定接口 渠道调用此接口,上传用户收到的短信验证码
  263. * @param appKey
  264. * @param api
  265. * @param data
  266. * @return
  267. */
  268. @Override
  269. public DataResult customerETCRecValid(String appKey, String api, String data,String requestid) {
  270. long costtimestart = System.currentTimeMillis();
  271. DataResult result = new DataResult();
  272. result.setData(3);
  273. result.setCode(200);
  274. result.setRequestid(requestid);
  275. result.setMsg("无法认证");
  276. try {
  277. log.info("[-SelfCarInterServiceImpl.customerETCRecValid-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
  278. JSONObject jsonObject = JSONObject.parseObject(data);
  279. String companyNum = jsonObject.getString("companyNum");//企业编号 必输
  280. String mobile = jsonObject.getString("mobile");//企业预留手机号 必输
  281. String validCode = jsonObject.getString("validCode");//验证码 必输
  282. if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(companyNum)
  283. || StringUtils.isEmpty(mobile)
  284. || StringUtils.isEmpty(validCode)
  285. ){
  286. result.setCode(200);
  287. result.setMsg("必传参数有为空情况,请核实后再试");
  288. return result;
  289. }
  290. CustomerRec customerRec = new CustomerRec();
  291. customerRec.setCustomerName(appKey);
  292. customerRec.setCompanyNum(companyNum);
  293. CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyNum(customerRec);
  294. if (null == customerRec1){
  295. result.setCode(200);
  296. result.setMsg("该企业编号在平台中不存在,请联系管理员核实!");
  297. return result;
  298. }
  299. EtcValidVo etcValidVo = new EtcValidVo();
  300. etcValidVo.setCustomerName(appKey);
  301. etcValidVo.setCompanyName(customerRec1.getCompanyName());
  302. etcValidVo.setValidCode(validCode);
  303. etcValidVo.setMobile(mobile);
  304. etcValidVo.setInterType(0);//接口
  305. RespR rs = selfCarService.customerEtcRecValid(etcValidVo);
  306. long costtimeend = System.currentTimeMillis();
  307. log.info("[-SelfCarInterServiceImpl.customerETCRecValid-] result is "
  308. + rs.toString() + ", request is " + data + " ,costtime="
  309. + (costtimeend - costtimestart));
  310. if(null != rs && rs.getCode() == 0){
  311. result.setData(1);
  312. result.setCode(200);
  313. result.setMsg(rs.getData().toString());
  314. return result;
  315. } else {
  316. result.setData(3);
  317. result.setCode(200);
  318. result.setMsg(rs.getMsg());
  319. return result;
  320. }
  321. } catch (Exception e) {
  322. log.error("[-SelfCarInterServiceImpl.customerETCRecValid-] get httpclient exception is "
  323. + e + ", request is " + data);
  324. }
  325. return result;
  326. }
  327. /**
  328. * 自有车 交易查询接口 渠道通过此接口可以查询单张卡连续90天内的交易(待开票、开票中、已开票)
  329. * @param appKey
  330. * @param api
  331. * @param data
  332. * @return
  333. */
  334. @Override
  335. public DataResult getTradeList(String appKey, String api, String data,String requestid) {
  336. long costtimestart = System.currentTimeMillis();
  337. DataResult result = new DataResult();
  338. result.setData(3);
  339. result.setCode(200);
  340. result.setRequestid(requestid);
  341. result.setMsg("无法认证");
  342. try {
  343. log.info("[-SelfCarInterServiceImpl.getTradeList-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
  344. JSONObject jsonObject = JSONObject.parseObject(data);
  345. String companyNum = jsonObject.getString("companyNum");//企业编号 必输
  346. String cardId = jsonObject.getString("cardId");//卡号 必输
  347. Integer tradeStatus = jsonObject.getInteger("tradeStatus");//交易状态 必输
  348. String startExTime = jsonObject.getString("startExTime");//开始时间 必输
  349. String endExTime = jsonObject.getString("endExTime");//结束时间 必输
  350. if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(companyNum)
  351. || StringUtils.isEmpty(cardId)
  352. || null == tradeStatus
  353. || StringUtils.isEmpty(startExTime)
  354. || StringUtils.isEmpty(endExTime)
  355. ){
  356. result.setCode(200);
  357. result.setMsg("必传参数有为空情况,请核实后再试");
  358. return result;
  359. }
  360. CustomerRec customerRec = new CustomerRec();
  361. customerRec.setCustomerName(appKey);
  362. customerRec.setCompanyNum(companyNum);
  363. CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyNum(customerRec);
  364. if (null == customerRec1){
  365. result.setCode(200);
  366. result.setMsg("该企业编号在平台中不存在,请联系管理员核实!");
  367. return result;
  368. }
  369. TradeRequestVo tradeRequestVo = new TradeRequestVo();
  370. tradeRequestVo.setCustomerName(appKey);
  371. tradeRequestVo.setCompanyName(customerRec1.getCompanyName());
  372. tradeRequestVo.setStartTime(DateUtil.getDistanceHoursFormat(startExTime));
  373. tradeRequestVo.setEndTime(DateUtil.getDistanceHoursFormat(endExTime));
  374. tradeRequestVo.setEtcId(cardId);
  375. tradeRequestVo.setTradeStatus(tradeStatus);
  376. tradeRequestVo.setInterType(0);//0 接口
  377. if(tradeRequestVo.getTradeStatus() ==null){
  378. tradeRequestVo.setTradeStatus(1);
  379. RespR<List<CardTradeModel>> respRbefore = selfCarService.getTradeList(tradeRequestVo);
  380. tradeRequestVo.setTradeStatus(2);
  381. RespR<List<CardTradeModel>> respRUnder = selfCarService.getTradeList(tradeRequestVo);
  382. tradeRequestVo.setTradeStatus(3);
  383. RespR<List<CardTradeModel>> respRAfter = selfCarService.getTradeList(tradeRequestVo);
  384. //合并展示
  385. List<CardTradeModel> cardTradeModels = new ArrayList<>();
  386. if(respRbefore.getCode() == 0){
  387. cardTradeModels.addAll(respRbefore.getData());
  388. }
  389. if(respRUnder.getCode() == 0){
  390. cardTradeModels.addAll(respRUnder.getData());
  391. }
  392. if(respRAfter.getCode() == 0){
  393. cardTradeModels.addAll(respRAfter.getData());
  394. }
  395. result.setData(1);
  396. result.setCode(200);
  397. result.setMsg(cardTradeModels.toString());
  398. return result;
  399. }
  400. RespR rs = selfCarService.getTradeList(tradeRequestVo);
  401. long costtimeend = System.currentTimeMillis();
  402. log.info("[-SelfCarInterServiceImpl.getTradeList-] result is "
  403. + rs.toString() + ", request is " + data + " ,costtime="
  404. + (costtimeend - costtimestart));
  405. if(null != rs && rs.getCode() == 0){
  406. result.setData(1);
  407. result.setCode(200);
  408. result.setMsg(rs.getData().toString());
  409. return result;
  410. } else {
  411. result.setData(3);
  412. if("未查得".equals(rs.getMsg())){
  413. result.setData(2);
  414. }
  415. result.setCode(200);
  416. result.setMsg(rs.getMsg());
  417. return result;
  418. }
  419. } catch (Exception e) {
  420. log.error("[-SelfCarInterServiceImpl.getTradeList-] get httpclient exception is "
  421. + e + ", request is " + data);
  422. }
  423. return result;
  424. }
  425. /**
  426. * 自有车 交易查询接口 渠道通过此接口可以查询单张卡连续90天内的交易(待开票、开票中、已开票)
  427. * @param appKey
  428. * @param api
  429. * @param data
  430. * @return
  431. */
  432. @Override
  433. public DataResult applInvoice(String appKey, String api, String data,String requestid) {
  434. long costtimestart = System.currentTimeMillis();
  435. DataResult result = new DataResult();
  436. result.setData(3);
  437. result.setCode(200);
  438. result.setRequestid(requestid);
  439. result.setMsg("无法认证");
  440. try {
  441. log.info("[-SelfCarInterServiceImpl.applInvoice-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
  442. JSONObject jsonObject = JSONObject.parseObject(data);
  443. String companyNum = jsonObject.getString("companyNum");//企业编号 必输
  444. String cardId = jsonObject.getString("cardId");//卡号 必输
  445. JSONArray tradeIdModel = jsonObject.getJSONArray("tradeIdModel");//交易ID集合 必输
  446. /*String startExTime = jsonObject.getString("startExTime");//开始时间 必输
  447. String endExTime = jsonObject.getString("endExTime");//结束时间 必输*/
  448. if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(companyNum)
  449. || StringUtils.isEmpty(cardId)
  450. || null == tradeIdModel
  451. ){
  452. result.setCode(200);
  453. result.setMsg("必传参数有为空情况,请核实后再试");
  454. return result;
  455. }
  456. CustomerRec customerRec = new CustomerRec();
  457. customerRec.setCustomerName(appKey);
  458. customerRec.setCompanyNum(companyNum);
  459. CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyNum(customerRec);
  460. if (null == customerRec1 ){
  461. result.setCode(200);
  462. result.setMsg("该企业编号在平台中不存在,请联系管理员核实!");
  463. return result;
  464. }
  465. InvoiceApplVo invoiceApplVo = new InvoiceApplVo();
  466. invoiceApplVo.setCustomerName(appKey);
  467. invoiceApplVo.setCompanyName(customerRec1.getCompanyName());
  468. invoiceApplVo.setCardId(cardId);
  469. invoiceApplVo.setInterType(0);//接口
  470. List<String> tradeIds = new ArrayList<String>();
  471. for(int i=0;i<tradeIdModel.size();i++) {
  472. JSONObject jb = tradeIdModel.getJSONObject(i);
  473. String tradeId = jb.getString("tradeId");//交易ID
  474. if(null == jb || StringUtils.isEmpty(tradeId)
  475. ){
  476. return result;
  477. }
  478. tradeIds.add(tradeId);
  479. }
  480. invoiceApplVo.setTradeIds(tradeIds);
  481. RespR rs = selfCarService.applInvoice(invoiceApplVo);
  482. long costtimeend = System.currentTimeMillis();
  483. log.info("[-SelfCarInterServiceImpl.applInvoice-] result is "
  484. + rs.toString() + ", request is " + data + " ,costtime="
  485. + (costtimeend - costtimestart));
  486. if(null != rs && rs.getCode() == 0){
  487. result.setData(1);
  488. result.setCode(200);
  489. result.setMsg(rs.getData().toString());
  490. return result;
  491. } else {
  492. result.setData(3);
  493. result.setCode(200);
  494. result.setMsg(rs.getMsg());
  495. return result;
  496. }
  497. } catch (Exception e) {
  498. log.error("[-SelfCarInterServiceImpl.applInvoice-] get httpclient exception is "
  499. + e + ", request is " + data);
  500. }
  501. return result;
  502. }
  503. /**
  504. * 自有车 已开发票查询接口 渠道通过此接口可以根据该公司绑定的单张卡查询此卡在某个月开具的发票
  505. * @param appKey
  506. * @param api
  507. * @param data
  508. * @return
  509. */
  510. @Override
  511. public DataResult getSelfCarInvoicesByTime(String appKey, String api, String data,String requestid) {
  512. long costtimestart = System.currentTimeMillis();
  513. DataResult result = new DataResult();
  514. result.setData(3);
  515. result.setCode(200);
  516. result.setRequestid(requestid);
  517. result.setMsg("无法认证");
  518. try {
  519. log.info("[-SelfCarInterServiceImpl.getSelfCarInvoicesByTime-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
  520. JSONObject jsonObject = JSONObject.parseObject(data);
  521. String companyNum = jsonObject.getString("companyNum");//企业编号 必输
  522. String cardId = jsonObject.getString("cardId");//卡号 必输
  523. String startInvoiceMakeTime = jsonObject.getString("startInvoiceMakeTime");//开始时间 必输
  524. String endInvoiceMakeTime = jsonObject.getString("endInvoiceMakeTime");//结束时间 必输
  525. if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(companyNum)
  526. || StringUtils.isEmpty(cardId)
  527. || StringUtils.isEmpty(startInvoiceMakeTime)
  528. || StringUtils.isEmpty(endInvoiceMakeTime)
  529. ){
  530. result.setCode(200);
  531. result.setMsg("必传参数有为空情况,请核实后再试");
  532. return result;
  533. }
  534. CustomerRec customerRec = new CustomerRec();
  535. customerRec.setCustomerName(appKey);
  536. customerRec.setCompanyNum(companyNum);
  537. CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyNum(customerRec);
  538. if (null == customerRec1){
  539. result.setCode(200);
  540. result.setMsg("该企业编号在平台中不存在,请联系管理员核实!");
  541. return result;
  542. }
  543. SelfCarDueQueryVo selfCarDueQueryVo = new SelfCarDueQueryVo();
  544. selfCarDueQueryVo.setCustomername(appKey);
  545. selfCarDueQueryVo.setCompanyName(customerRec1.getCompanyName());
  546. selfCarDueQueryVo.setCardId(cardId);
  547. selfCarDueQueryVo.setStartTime(startInvoiceMakeTime);
  548. selfCarDueQueryVo.setEndTime(endInvoiceMakeTime);
  549. RespR rs = selfCarService.getSelfCarInvoicesByTime(selfCarDueQueryVo,customerRec1);
  550. long costtimeend = System.currentTimeMillis();
  551. log.info("[-SelfCarInterServiceImpl.getSelfCarInvoicesByTime-] result is "
  552. + rs.toString() + ", request is " + data + " ,costtime="
  553. + (costtimeend - costtimestart));
  554. if(null != rs && rs.getCode() == 0){
  555. result.setData(1);
  556. result.setCode(200);
  557. result.setMsg(rs.getMsg());
  558. return result;
  559. } else {
  560. result.setData(3);
  561. if("未查得".equals(rs.getMsg())){
  562. result.setData(2);
  563. }
  564. result.setCode(200);
  565. result.setMsg(rs.getMsg());
  566. return result;
  567. }
  568. } catch (Exception e) {
  569. log.error("[-SelfCarInterServiceImpl.getSelfCarInvoicesByTime-] get httpclient exception is "
  570. + e + ", request is " + data);
  571. }
  572. return result;
  573. }
  574. /**
  575. * 自有车 发票下载 渠道通过此接口可以下载某公司某个月份开具的发票。
  576. * @param appKey
  577. * @param api
  578. * @param data
  579. * @return
  580. */
  581. @Override
  582. public DataResult getSelfCarInvoicePackage(String appKey, String api, String data,String requestid) {
  583. long costtimestart = System.currentTimeMillis();
  584. DataResult result = new DataResult();
  585. result.setData(3);
  586. result.setCode(200);
  587. result.setRequestid(requestid);
  588. result.setMsg("无法认证");
  589. try {
  590. log.info("[-SelfCarInterServiceImpl.getSelfCarInvoicePackage-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
  591. JSONObject jsonObject = JSONObject.parseObject(data);
  592. String companyNum = jsonObject.getString("companyNum");//企业编号 必输
  593. String makeMonth = jsonObject.getString("makeMonth");//发票开具月份 必输
  594. if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(companyNum)
  595. || StringUtils.isEmpty(makeMonth)
  596. ){
  597. result.setCode(200);
  598. result.setMsg("必传参数有为空情况,请核实后再试");
  599. return result;
  600. }
  601. CustomerRec customerRec = new CustomerRec();
  602. customerRec.setCustomerName(appKey);
  603. customerRec.setCompanyNum(companyNum);
  604. CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyNum(customerRec);
  605. if (null == customerRec1){
  606. result.setCode(200);
  607. result.setMsg("该企业编号在平台中不存在,请联系管理员核实!");
  608. return result;
  609. }
  610. InvoicePackageVo invoicePackageVo = new InvoicePackageVo();
  611. invoicePackageVo.setCustomerName(appKey);
  612. invoicePackageVo.setCompanyName(customerRec1.getCompanyName());
  613. invoicePackageVo.setMonth(makeMonth);
  614. RespR rs = selfCarService.getInvoicePackge(invoicePackageVo);
  615. long costtimeend = System.currentTimeMillis();
  616. log.info("[-SelfCarInterServiceImpl.getSelfCarInvoicePackage-] result is "
  617. + rs.toString() + ", request is " + data + " ,costtime="
  618. + (costtimeend - costtimestart));
  619. if(null != rs && rs.getCode() == 0){
  620. result.setData(1);
  621. result.setCode(200);
  622. result.setMsg(rs.getData().toString());
  623. return result;
  624. } else {
  625. result.setData(3);
  626. result.setCode(200);
  627. result.setMsg(rs.getMsg());
  628. return result;
  629. }
  630. } catch (Exception e) {
  631. log.error("[-SelfCarInterServiceImpl.getSelfCarInvoicePackage-] get httpclient exception is "
  632. + e + ", request is " + data);
  633. }
  634. return result;
  635. }
  636. /**
  637. * 自有车 卡解绑接口
  638. * @param appKey
  639. * @param api
  640. * @param data
  641. * @return
  642. */
  643. @Override
  644. public DataResult customerCarUnRec(String appKey, String api, String data,String requestid) {
  645. long costtimestart = System.currentTimeMillis();
  646. DataResult result = new DataResult();
  647. result.setData(3);
  648. result.setCode(200);
  649. result.setRequestid(requestid);
  650. result.setMsg("无法认证");
  651. try {
  652. log.info("[-SelfCarInterServiceImpl.customerCarUnRec-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
  653. JSONObject jsonObject = JSONObject.parseObject(data);
  654. String companyNum = jsonObject.getString("companyNum");//企业编号 必输
  655. String cardId = jsonObject.getString("cardId");//Etc卡号 必输
  656. if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(companyNum)
  657. || StringUtils.isEmpty(cardId)
  658. ){
  659. return result;
  660. }
  661. CustomerRec customerRec = new CustomerRec();
  662. customerRec.setCustomerName(appKey);
  663. customerRec.setCompanyNum(companyNum);
  664. CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyNum(customerRec);
  665. if (null == customerRec1){
  666. result.setMsg("该企业编号未注册企业!");
  667. return result;
  668. }
  669. List<CustomerCarRec> customerCarRecList = new ArrayList<CustomerCarRec>();
  670. CustomerCarRec customerCarRec = new CustomerCarRec();
  671. customerCarRec.setCustomerName(appKey);
  672. customerCarRec.setCompanyName(customerRec1.getCompanyName());
  673. customerCarRec.setEtcNum(cardId);
  674. customerCarRecList.add(customerCarRec);
  675. RespR rs = selfCarService.customerCarUnRec(customerCarRecList);
  676. long costtimeend = System.currentTimeMillis();
  677. log.info("[-SelfCarInterServiceImpl.customerCarUnRec-] result is "
  678. + rs.toString() + ", request is " + data + " ,costtime="
  679. + (costtimeend - costtimestart));
  680. if(null != rs && rs.getCode() == 0){
  681. result.setData(1);
  682. result.setCode(200);
  683. result.setMsg(rs.getData().toString());
  684. return result;
  685. } else {
  686. result.setData(3);
  687. result.setCode(200);
  688. result.setMsg(rs.getMsg());
  689. return result;
  690. }
  691. } catch (Exception e) {
  692. log.error("[-SelfCarInterServiceImpl.customerCarUnRec-] get httpclient exception is "
  693. + e + ", request is " + data);
  694. }
  695. return result;
  696. }
  697. }