123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813 |
- package com.jkcredit.invoice.credit.custInterface;
- import cn.com.taiji.sdk.model.comm.protocol.tts.trade.service.CardTradeModel;
- import com.alibaba.fastjson.JSONArray;
- import com.alibaba.fastjson.JSONObject;
- import com.jkcredit.invoice.common.DataResult;
- import com.jkcredit.invoice.model.entity.customer.CustomerCarRec;
- import com.jkcredit.invoice.model.entity.customer.CustomerRec;
- import com.jkcredit.invoice.service.customer.CustomerRecService;
- import com.jkcredit.invoice.service.lowerService.SelfCarServiceL;
- import com.jkcredit.invoice.service.lowerService.vo.*;
- import com.jkcredit.invoice.util.DateUtil;
- import com.jkcredit.invoice.util.RespR;
- import lombok.extern.slf4j.Slf4j;
- import org.apache.commons.lang3.StringUtils;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- import java.util.ArrayList;
- import java.util.List;
- @Service("selfCarInterService")
- @Slf4j
- public class SelfCarInterServiceImpl implements SelfCarInterService {
- @Autowired
- SelfCarServiceL selfCarService;
- @Autowired
- CustomerRecService customerRecMapper;
- /**
- * 自有车 用户卡列表查询接口
- * @param appKey
- * @param api
- * @param data
- * @return
- */
- @Override
- public DataResult customerETCQuery(String appKey, String api, String data,String requestid) {
- long costtimestart = System.currentTimeMillis();
- DataResult result = new DataResult();
- result.setData(3);
- result.setCode(200);
- result.setRequestid(requestid);
- result.setMsg("无法认证");
- try {
- log.info("[-SelfCarInterServiceImpl.customerETCQuery-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
- JSONObject jsonObject = JSONObject.parseObject(data);
- String companyNum = jsonObject.getString("companyNum");//企业编号 必输
- String cardId = jsonObject.getString("cardId");//卡号 非必输
- String plateNum = jsonObject.getString("plateNum");//车牌号 非必输
- Integer plateColor = jsonObject.getInteger("plateColor");//车牌颜色 非必输
- if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(companyNum)){
- result.setData(3);
- result.setMsg("请输入必输项!");
- return result;
- }
- CustomerRec customerRec = new CustomerRec();
- customerRec.setCustomerName(appKey);
- customerRec.setCompanyNum(companyNum);
- customerRec.setInterType(0);
- CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyNum(customerRec);
- if (null == customerRec1){
- result.setCode(200);
- result.setMsg("该企业编号在平台中不存在,请联系管理员核实!");
- return result;
- }
- EtcQueryVo etcQueryVo = new EtcQueryVo();
- etcQueryVo.setCustomerName(appKey);//客户名称
- etcQueryVo.setCompanyName(customerRec1.getCompanyName());//企业名称
- etcQueryVo.setPlateNum(plateNum);//车牌号 非必输
- etcQueryVo.setCardId(cardId);//卡号 非必输
- etcQueryVo.setPlateColor(plateColor);//车牌颜色 非必输
- RespR rs = selfCarService.getEtcInfo(etcQueryVo);
- long costtimeend = System.currentTimeMillis();
- log.info("[-SelfCarInterServiceImpl.customerETCQuery-] result is "
- + rs.toString() + ", request is " + data + " ,costtime="
- + (costtimeend - costtimestart));
- if(null != rs && rs.getCode() == 0){
- result.setData(1);
- result.setCode(200);
- result.setMsg(rs.getData().toString());
- return result;
- } else {
- if(rs!=null && rs.getCode()==2){
- result.setData(2);
- result.setCode(200);
- result.setMsg("未查得");
- return result;
- }
- result.setData(3);
- result.setCode(200);
- result.setMsg(rs.getMsg());
- return result;
- }
- } catch (Exception e) {
- log.error("[-SelfCarInterServiceImpl.customerETCQuery-] get httpclient exception is "
- + e + ", request is " + data);
- }
- return result;
- }
- /**
- * 自有车 卡信息查询接口
- * @param appKey
- * @param api
- * @param data
- * @return
- */
- @Override
- public DataResult customerQueryEtcInfo(String appKey, String api, String data,String requestid) {
- long costtimestart = System.currentTimeMillis();
- DataResult result = new DataResult();
- result.setData(3);
- result.setCode(200);
- result.setRequestid(requestid);
- result.setMsg("无法认证");
- try {
- log.info("[-SelfCarInterServiceImpl.customerQueryEtcInfo-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
- JSONObject jsonObject = JSONObject.parseObject(data);
- String companyNum = jsonObject.getString("companyNum");//企业编号 必输
- JSONArray vehicleList = jsonObject.getJSONArray("vehicleList");//车牌的json字符串 必输
- //JSONObject jb = vehicleList.getJSONObject(0);
- // String plateNum = jb.getString("plateNum");//车牌号
- //Integer plateColor = jb.getInteger("plateColor");//车牌颜色
- if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(companyNum)
- || null == vehicleList
- ){
- result.setCode(200);
- result.setMsg("必传参数有为空情况,请核实后再试");
- return result;
- }
- CustomerRec customerRec = new CustomerRec();
- customerRec.setCustomerName(appKey);
- customerRec.setCompanyNum(companyNum);
- CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyNum(customerRec);
- if (null == customerRec1){
- result.setMsg("该企业编号在平台中不存在,请联系管理员核实!");
- return result;
- }
- EtcBindVo etcQueryVo = new EtcBindVo();
- etcQueryVo.setCustomerName(appKey);//客户名称
- etcQueryVo.setCompanyName(customerRec1.getCompanyName());//企业名称
- List<CarVo> cards = new ArrayList<CarVo>();
- for(int i=0;i<vehicleList.size();i++) {
- JSONObject jb = vehicleList.getJSONObject(i);
- String plateNum = jb.getString("plateNum");//车牌号
- Integer plateColor = jb.getInteger("plateColor");//车牌颜色
- if(null == jb || StringUtils.isEmpty(plateNum)
- || null == plateColor
- ){
- result.setMsg("参数格式错误");
- return result;
- }
- CarVo carVo = new CarVo();
- carVo.setNum(plateNum);
- carVo.setColor(plateColor);
- cards.add(carVo);
- }
- etcQueryVo.setCards(cards);
- RespR rs = selfCarService.queryEtcInfo(etcQueryVo);
- long costtimeend = System.currentTimeMillis();
- log.info("[-SelfCarInterServiceImpl.customerQueryEtcInfo-] result is "
- + rs.toString() + ", request is " + data + " ,costtime="
- + (costtimeend - costtimestart));
- if(null != rs && rs.getCode() == 0){
- result.setData(1);
- result.setCode(200);
- result.setMsg(rs.getData().toString());
- return result;
- } else {
- result.setData(3);
- result.setCode(200);
- result.setMsg(rs.getMsg());
- if("未查得".equals(rs.getMsg())){
- result.setData(2);
- }
- return result;
- }
- } catch (Exception e) {
- log.error("[-SelfCarInterServiceImpl.customerQueryEtcInfo-] get httpclient exception is "
- + e + ", request is " + data);
- }
- return result;
- }
- /**
- * 自有车下发短信通知接口
- * @param appKey
- * @param api
- * @param data
- * @return
- */
- @Override
- public DataResult customerETCRec(String appKey, String api, String data,String requestid) {
- long costtimestart = System.currentTimeMillis();
- DataResult result = new DataResult();
- result.setData(3);
- result.setCode(200);
- result.setRequestid(requestid);
- result.setMsg("无法认证");
- try {
- log.info("[-SelfCarInterServiceImpl.customerETCRec-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
- JSONObject jsonObject = JSONObject.parseObject(data);
- String companyNum = jsonObject.getString("companyNum");//企业编号 必输
- String mobile = jsonObject.getString("mobile");//企业预留手机号 必输
- JSONArray cardIdList = jsonObject.getJSONArray("cardIdList");//ETC卡编号列表 必输
- //JSONObject jb = cardIdList.getJSONObject(0);
- // String cardId = jb.getString("cardId");//用户卡Id
- if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(companyNum)
- || StringUtils.isEmpty(mobile)
- || null == cardIdList
- ){
- result.setCode(200);
- result.setMsg("必传参数有为空情况,请核实后再试");
- return result;
- }
- CustomerRec customerRec = new CustomerRec();
- customerRec.setCustomerName(appKey);
- customerRec.setCompanyNum(companyNum);
- CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyNum(customerRec);
- if (null == customerRec1){
- result.setCode(200);
- result.setMsg("该企业编号在平台中不存在,请联系管理员核实!");
- return result;
- }
- EtcBindVo etcQueryVo = new EtcBindVo();
- etcQueryVo.setCustomerName(appKey);//客户名称
- etcQueryVo.setCompanyName(customerRec1.getCompanyName());//企业名称
- etcQueryVo.setMobile(mobile);//企业预留手机号
- List<CarVo> cards = new ArrayList<CarVo>();
- for(int i=0;i<cardIdList.size();i++) {
- JSONObject jb = cardIdList.getJSONObject(i);
- String cardId = jb.getString("cardId");//用户卡Id
- if(null == jb || StringUtils.isEmpty(cardId)
- ){
- result.setCode(200);
- result.setMsg("用户卡为空!");
- return result;
- }
- CarVo carVo = new CarVo();
- carVo.setEtcNum(cardId);
- cards.add(carVo);
- }
- etcQueryVo.setCards(cards);
- RespR rs = selfCarService.customerEtcRec(etcQueryVo);
- long costtimeend = System.currentTimeMillis();
- log.info("[-SelfCarInterServiceImpl.customerETCRec-] result is "
- + rs.toString() + ", request is " + data + " ,costtime="
- + (costtimeend - costtimestart));
- if(null != rs && rs.getCode() == 0){
- result.setData(1);
- result.setCode(200);
- result.setMsg(rs.getData().toString());
- return result;
- } else {
- result.setData(3);
- result.setCode(200);
- result.setMsg(rs.getMsg());
- return result;
- }
- } catch (Exception e) {
- log.error("[-SelfCarInterServiceImpl.customerETCRec-] get httpclient exception is "
- + e + ", request is " + data);
- }
- return result;
- }
- /**
- * 自有车 卡绑定接口 渠道调用此接口,上传用户收到的短信验证码
- * @param appKey
- * @param api
- * @param data
- * @return
- */
- @Override
- public DataResult customerETCRecValid(String appKey, String api, String data,String requestid) {
- long costtimestart = System.currentTimeMillis();
- DataResult result = new DataResult();
- result.setData(3);
- result.setCode(200);
- result.setRequestid(requestid);
- result.setMsg("无法认证");
- try {
- log.info("[-SelfCarInterServiceImpl.customerETCRecValid-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
- JSONObject jsonObject = JSONObject.parseObject(data);
- String companyNum = jsonObject.getString("companyNum");//企业编号 必输
- String mobile = jsonObject.getString("mobile");//企业预留手机号 必输
- String validCode = jsonObject.getString("validCode");//验证码 必输
- if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(companyNum)
- || StringUtils.isEmpty(mobile)
- || StringUtils.isEmpty(validCode)
- ){
- result.setCode(200);
- result.setMsg("必传参数有为空情况,请核实后再试");
- return result;
- }
- CustomerRec customerRec = new CustomerRec();
- customerRec.setCustomerName(appKey);
- customerRec.setCompanyNum(companyNum);
- CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyNum(customerRec);
- if (null == customerRec1){
- result.setCode(200);
- result.setMsg("该企业编号在平台中不存在,请联系管理员核实!");
- return result;
- }
- EtcValidVo etcValidVo = new EtcValidVo();
- etcValidVo.setCustomerName(appKey);
- etcValidVo.setCompanyName(customerRec1.getCompanyName());
- etcValidVo.setValidCode(validCode);
- etcValidVo.setMobile(mobile);
- etcValidVo.setInterType(0);//接口
- RespR rs = selfCarService.customerEtcRecValid(etcValidVo);
- long costtimeend = System.currentTimeMillis();
- log.info("[-SelfCarInterServiceImpl.customerETCRecValid-] result is "
- + rs.toString() + ", request is " + data + " ,costtime="
- + (costtimeend - costtimestart));
- if(null != rs && rs.getCode() == 0){
- result.setData(1);
- result.setCode(200);
- result.setMsg(rs.getData().toString());
- return result;
- } else {
- result.setData(3);
- result.setCode(200);
- result.setMsg(rs.getMsg());
- return result;
- }
- } catch (Exception e) {
- log.error("[-SelfCarInterServiceImpl.customerETCRecValid-] get httpclient exception is "
- + e + ", request is " + data);
- }
- return result;
- }
- /**
- * 自有车 交易查询接口 渠道通过此接口可以查询单张卡连续90天内的交易(待开票、开票中、已开票)
- * @param appKey
- * @param api
- * @param data
- * @return
- */
- @Override
- public DataResult getTradeList(String appKey, String api, String data,String requestid) {
- long costtimestart = System.currentTimeMillis();
- DataResult result = new DataResult();
- result.setData(3);
- result.setCode(200);
- result.setRequestid(requestid);
- result.setMsg("无法认证");
- try {
- log.info("[-SelfCarInterServiceImpl.getTradeList-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
- JSONObject jsonObject = JSONObject.parseObject(data);
- String companyNum = jsonObject.getString("companyNum");//企业编号 必输
- String cardId = jsonObject.getString("cardId");//卡号 必输
- Integer tradeStatus = jsonObject.getInteger("tradeStatus");//交易状态 必输
- String startExTime = jsonObject.getString("startExTime");//开始时间 必输
- String endExTime = jsonObject.getString("endExTime");//结束时间 必输
- if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(companyNum)
- || StringUtils.isEmpty(cardId)
- || null == tradeStatus
- || StringUtils.isEmpty(startExTime)
- || StringUtils.isEmpty(endExTime)
- ){
- result.setCode(200);
- result.setMsg("必传参数有为空情况,请核实后再试");
- return result;
- }
- CustomerRec customerRec = new CustomerRec();
- customerRec.setCustomerName(appKey);
- customerRec.setCompanyNum(companyNum);
- CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyNum(customerRec);
- if (null == customerRec1){
- result.setCode(200);
- result.setMsg("该企业编号在平台中不存在,请联系管理员核实!");
- return result;
- }
- TradeRequestVo tradeRequestVo = new TradeRequestVo();
- tradeRequestVo.setCustomerName(appKey);
- tradeRequestVo.setCompanyName(customerRec1.getCompanyName());
- tradeRequestVo.setStartTime(DateUtil.getDistanceHoursFormat(startExTime));
- tradeRequestVo.setEndTime(DateUtil.getDistanceHoursFormat(endExTime));
- tradeRequestVo.setEtcId(cardId);
- tradeRequestVo.setTradeStatus(tradeStatus);
- tradeRequestVo.setInterType(0);//0 接口
- if(tradeRequestVo.getTradeStatus() ==null){
- tradeRequestVo.setTradeStatus(1);
- RespR<List<CardTradeModel>> respRbefore = selfCarService.getTradeList(tradeRequestVo);
- tradeRequestVo.setTradeStatus(2);
- RespR<List<CardTradeModel>> respRUnder = selfCarService.getTradeList(tradeRequestVo);
- tradeRequestVo.setTradeStatus(3);
- RespR<List<CardTradeModel>> respRAfter = selfCarService.getTradeList(tradeRequestVo);
- //合并展示
- List<CardTradeModel> cardTradeModels = new ArrayList<>();
- if(respRbefore.getCode() == 0){
- cardTradeModels.addAll(respRbefore.getData());
- }
- if(respRUnder.getCode() == 0){
- cardTradeModels.addAll(respRUnder.getData());
- }
- if(respRAfter.getCode() == 0){
- cardTradeModels.addAll(respRAfter.getData());
- }
- result.setData(1);
- result.setCode(200);
- result.setMsg(cardTradeModels.toString());
- return result;
- }
- RespR rs = selfCarService.getTradeList(tradeRequestVo);
- long costtimeend = System.currentTimeMillis();
- log.info("[-SelfCarInterServiceImpl.getTradeList-] result is "
- + rs.toString() + ", request is " + data + " ,costtime="
- + (costtimeend - costtimestart));
- if(null != rs && rs.getCode() == 0){
- result.setData(1);
- result.setCode(200);
- result.setMsg(rs.getData().toString());
- return result;
- } else {
- result.setData(3);
- if("未查得".equals(rs.getMsg())){
- result.setData(2);
- }
- result.setCode(200);
- result.setMsg(rs.getMsg());
- return result;
- }
- } catch (Exception e) {
- log.error("[-SelfCarInterServiceImpl.getTradeList-] get httpclient exception is "
- + e + ", request is " + data);
- }
- return result;
- }
- /**
- * 自有车 交易查询接口 渠道通过此接口可以查询单张卡连续90天内的交易(待开票、开票中、已开票)
- * @param appKey
- * @param api
- * @param data
- * @return
- */
- @Override
- public DataResult applInvoice(String appKey, String api, String data,String requestid) {
- long costtimestart = System.currentTimeMillis();
- DataResult result = new DataResult();
- result.setData(3);
- result.setCode(200);
- result.setRequestid(requestid);
- result.setMsg("无法认证");
- try {
- log.info("[-SelfCarInterServiceImpl.applInvoice-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
- JSONObject jsonObject = JSONObject.parseObject(data);
- String companyNum = jsonObject.getString("companyNum");//企业编号 必输
- String cardId = jsonObject.getString("cardId");//卡号 必输
- JSONArray tradeIdModel = jsonObject.getJSONArray("tradeIdModel");//交易ID集合 必输
- /*String startExTime = jsonObject.getString("startExTime");//开始时间 必输
- String endExTime = jsonObject.getString("endExTime");//结束时间 必输*/
- if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(companyNum)
- || StringUtils.isEmpty(cardId)
- || null == tradeIdModel
- ){
- result.setCode(200);
- result.setMsg("必传参数有为空情况,请核实后再试");
- return result;
- }
- CustomerRec customerRec = new CustomerRec();
- customerRec.setCustomerName(appKey);
- customerRec.setCompanyNum(companyNum);
- CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyNum(customerRec);
- if (null == customerRec1 ){
- result.setCode(200);
- result.setMsg("该企业编号在平台中不存在,请联系管理员核实!");
- return result;
- }
- InvoiceApplVo invoiceApplVo = new InvoiceApplVo();
- invoiceApplVo.setCustomerName(appKey);
- invoiceApplVo.setCompanyName(customerRec1.getCompanyName());
- invoiceApplVo.setCardId(cardId);
- invoiceApplVo.setInterType(0);//接口
- List<String> tradeIds = new ArrayList<String>();
- for(int i=0;i<tradeIdModel.size();i++) {
- JSONObject jb = tradeIdModel.getJSONObject(i);
- String tradeId = jb.getString("tradeId");//交易ID
- if(null == jb || StringUtils.isEmpty(tradeId)
- ){
- return result;
- }
- tradeIds.add(tradeId);
- }
- invoiceApplVo.setTradeIds(tradeIds);
- RespR rs = selfCarService.applInvoice(invoiceApplVo);
- long costtimeend = System.currentTimeMillis();
- log.info("[-SelfCarInterServiceImpl.applInvoice-] result is "
- + rs.toString() + ", request is " + data + " ,costtime="
- + (costtimeend - costtimestart));
- if(null != rs && rs.getCode() == 0){
- result.setData(1);
- result.setCode(200);
- result.setMsg(rs.getData().toString());
- return result;
- } else {
- result.setData(3);
- result.setCode(200);
- result.setMsg(rs.getMsg());
- return result;
- }
- } catch (Exception e) {
- log.error("[-SelfCarInterServiceImpl.applInvoice-] get httpclient exception is "
- + e + ", request is " + data);
- }
- return result;
- }
- /**
- * 自有车 已开发票查询接口 渠道通过此接口可以根据该公司绑定的单张卡查询此卡在某个月开具的发票
- * @param appKey
- * @param api
- * @param data
- * @return
- */
- @Override
- public DataResult getSelfCarInvoicesByTime(String appKey, String api, String data,String requestid) {
- long costtimestart = System.currentTimeMillis();
- DataResult result = new DataResult();
- result.setData(3);
- result.setCode(200);
- result.setRequestid(requestid);
- result.setMsg("无法认证");
- try {
- log.info("[-SelfCarInterServiceImpl.getSelfCarInvoicesByTime-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
- JSONObject jsonObject = JSONObject.parseObject(data);
- String companyNum = jsonObject.getString("companyNum");//企业编号 必输
- String cardId = jsonObject.getString("cardId");//卡号 必输
- String startInvoiceMakeTime = jsonObject.getString("startInvoiceMakeTime");//开始时间 必输
- String endInvoiceMakeTime = jsonObject.getString("endInvoiceMakeTime");//结束时间 必输
- if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(companyNum)
- || StringUtils.isEmpty(cardId)
- || StringUtils.isEmpty(startInvoiceMakeTime)
- || StringUtils.isEmpty(endInvoiceMakeTime)
- ){
- result.setCode(200);
- result.setMsg("必传参数有为空情况,请核实后再试");
- return result;
- }
- CustomerRec customerRec = new CustomerRec();
- customerRec.setCustomerName(appKey);
- customerRec.setCompanyNum(companyNum);
- CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyNum(customerRec);
- if (null == customerRec1){
- result.setCode(200);
- result.setMsg("该企业编号在平台中不存在,请联系管理员核实!");
- return result;
- }
- SelfCarDueQueryVo selfCarDueQueryVo = new SelfCarDueQueryVo();
- selfCarDueQueryVo.setCustomername(appKey);
- selfCarDueQueryVo.setCompanyName(customerRec1.getCompanyName());
- selfCarDueQueryVo.setCardId(cardId);
- selfCarDueQueryVo.setStartTime(startInvoiceMakeTime);
- selfCarDueQueryVo.setEndTime(endInvoiceMakeTime);
- RespR rs = selfCarService.getSelfCarInvoicesByTime(selfCarDueQueryVo,customerRec1);
- long costtimeend = System.currentTimeMillis();
- log.info("[-SelfCarInterServiceImpl.getSelfCarInvoicesByTime-] result is "
- + rs.toString() + ", request is " + data + " ,costtime="
- + (costtimeend - costtimestart));
- if(null != rs && rs.getCode() == 0){
- result.setData(1);
- result.setCode(200);
- result.setMsg(rs.getMsg());
- return result;
- } else {
- result.setData(3);
- if("未查得".equals(rs.getMsg())){
- result.setData(2);
- }
- result.setCode(200);
- result.setMsg(rs.getMsg());
- return result;
- }
- } catch (Exception e) {
- log.error("[-SelfCarInterServiceImpl.getSelfCarInvoicesByTime-] get httpclient exception is "
- + e + ", request is " + data);
- }
- return result;
- }
- /**
- * 自有车 发票下载 渠道通过此接口可以下载某公司某个月份开具的发票。
- * @param appKey
- * @param api
- * @param data
- * @return
- */
- @Override
- public DataResult getSelfCarInvoicePackage(String appKey, String api, String data,String requestid) {
- long costtimestart = System.currentTimeMillis();
- DataResult result = new DataResult();
- result.setData(3);
- result.setCode(200);
- result.setRequestid(requestid);
- result.setMsg("无法认证");
- try {
- log.info("[-SelfCarInterServiceImpl.getSelfCarInvoicePackage-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
- JSONObject jsonObject = JSONObject.parseObject(data);
- String companyNum = jsonObject.getString("companyNum");//企业编号 必输
- String makeMonth = jsonObject.getString("makeMonth");//发票开具月份 必输
- if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(companyNum)
- || StringUtils.isEmpty(makeMonth)
- ){
- result.setCode(200);
- result.setMsg("必传参数有为空情况,请核实后再试");
- return result;
- }
- CustomerRec customerRec = new CustomerRec();
- customerRec.setCustomerName(appKey);
- customerRec.setCompanyNum(companyNum);
- CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyNum(customerRec);
- if (null == customerRec1){
- result.setCode(200);
- result.setMsg("该企业编号在平台中不存在,请联系管理员核实!");
- return result;
- }
- InvoicePackageVo invoicePackageVo = new InvoicePackageVo();
- invoicePackageVo.setCustomerName(appKey);
- invoicePackageVo.setCompanyName(customerRec1.getCompanyName());
- invoicePackageVo.setMonth(makeMonth);
- RespR rs = selfCarService.getInvoicePackge(invoicePackageVo);
- long costtimeend = System.currentTimeMillis();
- log.info("[-SelfCarInterServiceImpl.getSelfCarInvoicePackage-] result is "
- + rs.toString() + ", request is " + data + " ,costtime="
- + (costtimeend - costtimestart));
- if(null != rs && rs.getCode() == 0){
- result.setData(1);
- result.setCode(200);
- result.setMsg(rs.getData().toString());
- return result;
- } else {
- result.setData(3);
- result.setCode(200);
- result.setMsg(rs.getMsg());
- return result;
- }
- } catch (Exception e) {
- log.error("[-SelfCarInterServiceImpl.getSelfCarInvoicePackage-] get httpclient exception is "
- + e + ", request is " + data);
- }
- return result;
- }
- /**
- * 自有车 卡解绑接口
- * @param appKey
- * @param api
- * @param data
- * @return
- */
- @Override
- public DataResult customerCarUnRec(String appKey, String api, String data,String requestid) {
- long costtimestart = System.currentTimeMillis();
- DataResult result = new DataResult();
- result.setData(3);
- result.setCode(200);
- result.setRequestid(requestid);
- result.setMsg("无法认证");
- try {
- log.info("[-SelfCarInterServiceImpl.customerCarUnRec-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
- JSONObject jsonObject = JSONObject.parseObject(data);
- String companyNum = jsonObject.getString("companyNum");//企业编号 必输
- String cardId = jsonObject.getString("cardId");//Etc卡号 必输
- if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(companyNum)
- || StringUtils.isEmpty(cardId)
- ){
- return result;
- }
- CustomerRec customerRec = new CustomerRec();
- customerRec.setCustomerName(appKey);
- customerRec.setCompanyNum(companyNum);
- CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyNum(customerRec);
- if (null == customerRec1){
- result.setMsg("该企业编号未注册企业!");
- return result;
- }
- List<CustomerCarRec> customerCarRecList = new ArrayList<CustomerCarRec>();
- CustomerCarRec customerCarRec = new CustomerCarRec();
- customerCarRec.setCustomerName(appKey);
- customerCarRec.setCompanyName(customerRec1.getCompanyName());
- customerCarRec.setEtcNum(cardId);
- customerCarRecList.add(customerCarRec);
- RespR rs = selfCarService.customerCarUnRec(customerCarRecList);
- long costtimeend = System.currentTimeMillis();
- log.info("[-SelfCarInterServiceImpl.customerCarUnRec-] result is "
- + rs.toString() + ", request is " + data + " ,costtime="
- + (costtimeend - costtimestart));
- if(null != rs && rs.getCode() == 0){
- result.setData(1);
- result.setCode(200);
- result.setMsg(rs.getData().toString());
- return result;
- } else {
- result.setData(3);
- result.setCode(200);
- result.setMsg(rs.getMsg());
- return result;
- }
- } catch (Exception e) {
- log.error("[-SelfCarInterServiceImpl.customerCarUnRec-] get httpclient exception is "
- + e + ", request is " + data);
- }
- return result;
- }
- }
|