123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935 |
- package com.jkcredit.invoice.credit.interserver;
- import cn.com.taiji.sdk.model.comm.protocol.tts.vehicle.VehicleQueryResponse;
- import com.alibaba.fastjson.JSON;
- import com.alibaba.fastjson.JSONObject;
- import com.jkcredit.invoice.common.DataResult;
- import com.jkcredit.invoice.mapper.binvoce.BillInvoiceMapper;
- import com.jkcredit.invoice.mapper.customer.CustomerCarRecMapper;
- import com.jkcredit.invoice.mapper.customer.CustomerMapper;
- import com.jkcredit.invoice.mapper.waybill.NoCarWaybillMapper;
- import com.jkcredit.invoice.model.entity.customer.Customer;
- import com.jkcredit.invoice.model.entity.customer.CustomerCarRec;
- import com.jkcredit.invoice.model.entity.customer.CustomerRec;
- import com.jkcredit.invoice.model.entity.invoice.BillInvoice;
- import com.jkcredit.invoice.model.entity.manager.Param;
- import com.jkcredit.invoice.model.entity.waybill.NoCarWayBill;
- import com.jkcredit.invoice.service.customer.CustomerRecService;
- import com.jkcredit.invoice.service.lowerservice.NoCarService;
- import com.jkcredit.invoice.service.lowerservice.vo.HCInvoiceQueryVo;
- import com.jkcredit.invoice.service.manager.ParamService;
- import com.jkcredit.invoice.service.nocar.NoCarBillWayImportService;
- import com.jkcredit.invoice.util.DateUtil;
- import com.jkcredit.invoice.util.RespR;
- import lombok.extern.slf4j.Slf4j;
- import net.sf.json.JSONArray;
- 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;
- import static java.util.stream.Collectors.toList;
- @Service("noCarInterService")
- @Slf4j
- public class NoCarInterServiceImpl implements NoCarInterService {
-
- @Autowired
- private NoCarService noCarService;
- @Autowired
- NoCarBillWayImportService noCarWaybillMapperImprt;
- @Autowired
- CustomerCarRecMapper customerCarRecMapper;
- @Autowired
- NoCarWaybillMapper noCarWaybillMapper;
- @Autowired
- CustomerRecService customerRecMapper;
- @Autowired
- BillInvoiceMapper billInvoiceMapper;
- @Autowired
- CustomerMapper customerMapper;
- @Autowired
- ParamService paramService;
- /**
- * 无车 车辆备案接口
- * @param appKey
- * @param api
- * @param data
- * @return
- */
- @Override
- public DataResult customerCarRec(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("[-NoCarInterServiceImpl.customerCarRec-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
- JSONObject jsonObject = JSONObject.parseObject(data);
- String companyName = jsonObject.getString("companyName");//企业名称 选输
- String plateNumber = jsonObject.getString("plateNumber");//plateNumber 必输
- String plateColor = jsonObject.getString("plateColor");//plateColor 必输
- if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(plateNumber)
- || StringUtils.isEmpty(plateColor)
- ){
- result.setMsg("必传参数有空值");
- return result;
- }
- List<CustomerCarRec> customerCarRecList = new ArrayList<CustomerCarRec>();
- CustomerCarRec customerCarRec = new CustomerCarRec();
- customerCarRec.setCustomerName(appKey);
- Customer cust = customerMapper.selectByCustomerName(appKey);
- CustomerRec customerRec = new CustomerRec();
- customerRec.setCustomerName(appKey);
- customerRec.setCompanyName(cust.getCompany());
- CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyConcat(customerRec);
- if(null == customerRec1){
- result.setMsg("该客户: "+appKey+" 未备案企业");
- return result;
- }
- customerCarRec.setCompanyName(customerRec1.getCompanyName());
- customerCarRec.setCustomerName(customerRec1.getCustomerName());
- customerCarRec.setBusinessType("2");//无车
- customerCarRec.setCarColor(plateColor);
- customerCarRec.setCarNum(plateNumber);
- customerCarRec.setInterType(0);
- if("0".equals(customerCarRec.getCarColor())){
- customerCarRec.setServiceOperation(1);//默认运营车辆
- }
- customerCarRecList.add(customerCarRec);
- RespR rs = noCarService.customerCarRec(customerCarRecList);
- long costtimeend = System.currentTimeMillis();
- log.info("[-NoCarInterServiceImpl.customerCarRec-] 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("[-NoCarInterServiceImpl.customerCarRec-] get httpclient exception is "
- + e + ", request is " + data);
- }
- return result;
- }
- /**
- * 无车 车辆备案查询接口
- * @param appKey
- * @param api
- * @param data
- * @return
- */
- @Override
- public DataResult customeRecUpperQuery(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("[-NoCarInterServiceImpl.customeRecUpperQuery-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
- JSONObject jsonObject = JSONObject.parseObject(data);
- String waybillSource = jsonObject.getString("waybillSource");//备案来源 选输
- String plateNumber = jsonObject.getString("plateNumber");//plateNumber 必输
- String plateColor = jsonObject.getString("plateColor");//plateColor 必输
- if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(plateNumber)
- || StringUtils.isEmpty(plateColor)
- ){
- result.setMsg("必传参数有空值");
- return result;
- }
- CustomerCarRec customerCarRec = new CustomerCarRec();
- Param param = paramService.getParamsByParamName("REQUEST_COMPANY_NUM");
- customerCarRec.setCompanyNum(param.getParamValue());//无车,车辆备案,运单上传,运单查询都是统一用交科的企业编号;自有车用客户的企业编号
- customerCarRec.setCarColor(plateColor);
- customerCarRec.setCarNum(plateNumber);
- customerCarRec.setCustomerName(appKey);
- customerCarRec.setBusinessType("2");//无车
- customerCarRec.setInterType(8);//此处代表仅查询上游接口,无任何处理逻辑
- RespR rs = noCarService.customerCarRecQueryUpper(customerCarRec);
- long costtimeend = System.currentTimeMillis();
- log.info("[-NoCarInterServiceImpl.customeRecUpperQuery-] 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());
- JSONObject jb = JSONObject.parseObject(rs.getData().toString());
- result.setData(1);
- result.setMsg("车辆已备案");
- if(null == jb.getJSONArray("result") || jb.getJSONArray("result").size() == 0){
- result.setData(2);
- result.setMsg("车辆未备案");
- }
- return result;
- } else {
- result.setData(3);
- result.setCode(200);
- result.setMsg("查询失败");
- return result;
- }
- } catch (Exception e) {
- log.error("[-NoCarInterServiceImpl.customeRecUpperQuery-] get httpclient exception is "
- + e + ", request is " + data);
- }
- return result;
- }
- /**
- * 无车 实时运单开始指令接口
- * @param appKey
- * @param api
- * @param data
- * @return
- */
- @Override
- public DataResult noCarBillStart(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("[-NoCarInterServiceImpl.noCarBillStart-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
- JSONObject jsonObject = JSONObject.parseObject(data);
- String num = jsonObject.getString("num");//运单编号 必选
- String plateNumber = jsonObject.getString("plateNumber");//车牌号 必选
- String plateColor = jsonObject.getString("plateColor");//车牌颜色 必选
- String startTime = jsonObject.getString("startTime");//运单开始时间 必选
- String sourceAddr = jsonObject.getString("sourceAddr");//运单开始地址 必选
- String destAddr = jsonObject.getString("destAddr");//运单目的地址 必选
- String predictEndTime = jsonObject.getString("predictEndTime");//运单预计完成时间 必选
- Integer fee = jsonObject.getInteger("fee");//运单费用 必选
- Integer titleType = jsonObject.getInteger("titleType");//发票抬头类型 必选
- String taxplayerCode = jsonObject.getString("taxplayerCode");//税号 必选
- if(StringUtils.isEmpty(data)|| null == jsonObject
- || StringUtils.isEmpty(num)
- || StringUtils.isEmpty(plateNumber)
- || StringUtils.isEmpty(plateColor)
- || StringUtils.isEmpty(startTime)
- || StringUtils.isEmpty(sourceAddr)
- || StringUtils.isEmpty(destAddr)
- || StringUtils.isEmpty(predictEndTime)
- || null == fee
- || null == titleType
- || StringUtils.isEmpty(taxplayerCode)
- ){
- result.setMsg("必传参数有空值");
- return result;
- }
- CustomerRec customerRec = new CustomerRec();
- customerRec.setCustomerName(appKey);
- customerRec.setCompanyReferencenum(taxplayerCode);
- customerRec = customerRecMapper.selectByCustomerNameAndCompanyReference(customerRec);
- if(customerRec == null || customerRec.getRecStatus()!=1){
- result.setMsg("客户:"+appKey+";税号"+taxplayerCode+"未在平台备案成功,请先做备案");
- return result;
- }
- NoCarWayBill noCarWayBill = new NoCarWayBill();
- noCarWayBill.setCustomerName(appKey);
- noCarWayBill.setCompanyName(customerRec.getCompanyName());
- noCarWayBill.setPlateNum(plateNumber);
- noCarWayBill.setBillNum(num);
- noCarWayBill.setPlateColor(plateColor);
- noCarWayBill.setStartTime(DateUtil.getDistanceHoursFormat(startTime));
- noCarWayBill.setSourceAddr(sourceAddr);
- noCarWayBill.setDestAddr(destAddr);
- noCarWayBill.setPredictEndTime(DateUtil.getDistanceHoursFormat(predictEndTime));
- noCarWayBill.setFee(fee.longValue());
- noCarWayBill.setTitleType(titleType);
- noCarWayBill.setTaxplayerCode(taxplayerCode);
- noCarWayBill.setHisFlag(0);
- noCarWayBill.setIntfaceStartTime(DateUtil.getCurrentDateStr());
- List<CustomerCarRec> customerCarRecs = new ArrayList<>();
- CustomerCarRec customerCarRec = new CustomerCarRec();
- customerCarRec.setCompanyName(noCarWayBill.getCompanyName());
- customerCarRec.setCarNum(noCarWayBill.getPlateNum());
- customerCarRec.setCarColor(noCarWayBill.getPlateColor());
- customerCarRec.setCustomerName(appKey);
- customerCarRec.setInterType(0);//接口
- customerCarRec.setCompanyNum(customerRec.getCompanyNum());
- customerCarRec.setBusinessType("2");
- customerCarRec.setServiceOperation(1);//默认运营车辆
- noCarWayBill.setTitleType(2);
- noCarWayBill.setInterType(0);//接口
- //先查询上游是否已经备案
- RespR<VehicleQueryResponse> respRquery = noCarService.customerCarRecQueryUpper(customerCarRec);
- if(respRquery.getCode() == 1 || respRquery.getData() == null || respRquery.getData().getResult() == null || respRquery.getData().getResult().size()<=0){
- customerCarRecs.add(customerCarRec);
- RespR respR = noCarService.customerCarRec(customerCarRecs);
- if(respR.getCode() ==1){
- noCarWayBill.setFailReason(respR.getMsg());
- noCarWayBill.setBillwayStatus(-2);
- insertOrUpdateBillStart(noCarWayBill);
- result.setMsg("车牌号备案失败,失败原因:"+respR.getMsg());
- return result;
- }
- }
- RespR rs = noCarService.noCarWaybillStart(noCarWayBill);
- long costtimeend = System.currentTimeMillis();
- log.info("[-NoCarInterServiceImpl.noCarBillStart-] 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("[-NoCarInterServiceImpl.noCarBillStart-] get httpclient exception is "
- + e + ", request is " + data);
- }
- return result;
- }
- /**
- * 无车 实时运单结束指令接口
- * @param appKey
- * @param api
- * @param data
- * @return
- */
- @Override
- public DataResult noCarBillEnd(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("[-NoCarInterServiceImpl.noCarBillEnd-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
- JSONObject jsonObject = JSONObject.parseObject(data);
- String num = jsonObject.getString("num");//运单号 必输
- String realDestAddr = jsonObject.getString("realDestAddr");//运单实际目的地址 必输
- String endTime = jsonObject.getString("endTime");//运单实际结束时间 必输
- if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(num)
- || StringUtils.isEmpty(realDestAddr)
- || StringUtils.isEmpty(endTime)
- ){
- result.setMsg("必传参数有空值");
- return result;
- }
- NoCarWayBill noCarWayBill = new NoCarWayBill();
- noCarWayBill.setCustomerName(appKey);
- noCarWayBill.setBillNum(num);
- noCarWayBill.setDestAddr(realDestAddr);
- noCarWayBill.setPredictEndTime(DateUtil.getDistanceHoursFormat(endTime));
- noCarWayBill.setHisFlag(0);
- noCarWayBill.setInterType(0);//接口
- RespR rs = noCarService.noCarWaybillEnd(noCarWayBill);
- long costtimeend = System.currentTimeMillis();
- log.info("[-NoCarInterServiceImpl.noCarBillEnd-] 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("[-NoCarInterServiceImpl.noCarBillEnd-] get httpclient exception is "
- + e + ", request is " + data);
- }
- return result;
- }
- /**
- * 无车 历史运单开始指令接口
- * @param appKey
- * @param api
- * @param data
- * @return
- */
- @Override
- public DataResult noCarHisWaybillStart(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("[-NoCarInterServiceImpl.noCarHisWaybillStart-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data + " ,requestid=" +requestid);
- JSONObject jsonObject = JSONObject.parseObject(data);
- String num = jsonObject.getString("num");//运单编号 必选
- String plateNumber = jsonObject.getString("plateNumber");//车牌号 必选
- String plateColor = jsonObject.getString("plateColor");//车牌颜色 必选
- String startTime = jsonObject.getString("startTime");//运单开始时间 必选
- String sourceAddr = jsonObject.getString("sourceAddr");//运单开始地址 必选
- String destAddr = jsonObject.getString("destAddr");//运单目的地址 必选
- String predictEndTime = jsonObject.getString("predictEndTime");//运单预计完成时间 必选
- Integer fee = jsonObject.getInteger("fee");//运单费用 必选
- Integer titleType = jsonObject.getInteger("titleType");//发票抬头类型 必选
- String taxplayerCode = jsonObject.getString("taxplayerCode");//税号 必选
- if(StringUtils.isEmpty(data)|| null == jsonObject
- || StringUtils.isEmpty(num)
- || StringUtils.isEmpty(plateNumber)
- || StringUtils.isEmpty(plateColor)
- || StringUtils.isEmpty(startTime)
- || StringUtils.isEmpty(sourceAddr)
- || StringUtils.isEmpty(destAddr)
- || StringUtils.isEmpty(predictEndTime)
- || null == fee
- || null == titleType
- || StringUtils.isEmpty(taxplayerCode)
- ){
- result.setMsg("有空的必填运单要素,请检查");
- return result;
- }
- CustomerRec customerRec = new CustomerRec();
- customerRec.setCustomerName(appKey);
- customerRec.setCompanyReferencenum(taxplayerCode);
- customerRec = customerRecMapper.selectByCustomerNameAndCompanyReference(customerRec);
- if(customerRec == null){
- result.setMsg("客户:"+appKey+";税号"+taxplayerCode+"未在平台备案成功,请先做备案");
- return result;
- }
- NoCarWayBill noCarWayBill = new NoCarWayBill();
- noCarWayBill.setCustomerName(appKey);
- noCarWayBill.setCompanyName(customerRec.getCompanyName());
- noCarWayBill.setPlateNum(plateNumber);
- noCarWayBill.setBillNum(num);
- noCarWayBill.setPlateColor(plateColor);
- noCarWayBill.setStartTime(DateUtil.getDistanceHoursFormat(startTime));
- noCarWayBill.setSourceAddr(sourceAddr);
- noCarWayBill.setDestAddr(destAddr);
- noCarWayBill.setPredictEndTime(DateUtil.getDistanceHoursFormat(predictEndTime));
- noCarWayBill.setFee(fee.longValue());
- noCarWayBill.setTitleType(titleType);
- noCarWayBill.setTaxplayerCode(taxplayerCode);
- noCarWayBill.setHisFlag(1);
- noCarWayBill.setUpdateTime(DateUtil.getCurrentDateStr());
- noCarWayBill.setIntfaceStartTime(DateUtil.getCurrentDateStr());
- noCarWayBill.setInterType(0);//接口
- List<CustomerCarRec> customerCarRecs = new ArrayList<>();
- CustomerCarRec customerCarRec = new CustomerCarRec();
- customerCarRec.setCompanyName(noCarWayBill.getCompanyName());
- customerCarRec.setCarNum(noCarWayBill.getPlateNum());
- customerCarRec.setCarColor(noCarWayBill.getPlateColor());
- customerCarRec.setCustomerName(appKey);
- customerCarRec.setInterType(0);
- customerCarRec.setCompanyNum(customerRec.getCompanyNum());
- customerCarRec.setBusinessType("2");
- customerCarRec.setServiceOperation(1);//默认运营车辆
- noCarWayBill.setTitleType(2);
- //先查询上游是否已经备案
- RespR<VehicleQueryResponse> respRquery = noCarService.customerCarRecQueryUpper(customerCarRec);
- if(respRquery.getCode() == 1 || respRquery.getData() == null || respRquery.getData().getResult() == null || respRquery.getData().getResult().size()<=0){
- customerCarRecs.add(customerCarRec);
- RespR respR = noCarService.customerCarRec(customerCarRecs);
- if(respR.getCode() ==1){
- result.setMsg("车牌号备案失败,失败原因:"+respR.getMsg());
- noCarWayBill.setFailReason(respR.getMsg());
- noCarWayBill.setBillwayStatus(-2);
- insertOrUpdateBillStart(noCarWayBill);
- return result;
- }
- }
- RespR rs = noCarService.noCarHisWaybillStart(noCarWayBill);
- long costtimeend = System.currentTimeMillis();
- log.info("[-NoCarInterServiceImpl.noCarHisWaybillStart-] 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("[-NoCarInterServiceImpl.noCarHisWaybillStart-] get httpclient exception is "
- + e + ", request is " + data);
- }
- return result;
- }
- //插入或者更新运单
- public void insertOrUpdateBillStart(NoCarWayBill noCarWayBill){
- noCarWayBill.setIntfaceStartTime(DateUtil.getCurrentDateStr());
- noCarWayBill.setUpdateTime(DateUtil.getCurrentDateStr());
- NoCarWayBill curr = noCarWaybillMapper.selectByBillNum(noCarWayBill.getBillNum());
- if(null == curr){
- noCarWaybillMapper.insert(noCarWayBill);
- }else{
- if(curr.getBillwayStatus()<1)
- noCarWaybillMapper.updateByBillNum(noCarWayBill);
- }
- }
- /**
- * 无车 历史运单结束指令接口
- * @param appKey
- * @param api
- * @param data
- * @return
- */
- @Override
- public DataResult noCarHisWaybillEnd(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("[-NoCarInterServiceImpl.noCarHisWaybillEnd-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
- JSONObject jsonObject = JSONObject.parseObject(data);
- String num = jsonObject.getString("num");//运单号 必输
- String realDestAddr = jsonObject.getString("realDestAddr");//运单实际目的地址 必输
- String endTime = jsonObject.getString("endTime");//运单实际结束时间 必输
- if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(num)
- || StringUtils.isEmpty(realDestAddr)
- || StringUtils.isEmpty(endTime)
- ){
- result.setMsg("有空的必填运单要素,请检查");
- return result;
- }
- NoCarWayBill noCarWayBill = new NoCarWayBill();
- noCarWayBill.setBillNum(num);
- noCarWayBill.setDestAddr(realDestAddr);
- noCarWayBill.setPredictEndTime(DateUtil.getDistanceHoursFormat(endTime));
- noCarWayBill.setHisFlag(1);
- noCarWayBill.setCustomerName(appKey);
- noCarWayBill.setInterType(0);//接口
- RespR rs = noCarService.noCarHisWaybillEnd(noCarWayBill);
- long costtimeend = System.currentTimeMillis();
- log.info("[-NoCarInterServiceImpl.noCarHisWaybillEnd-] 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("[-NoCarInterServiceImpl.noCarHisWaybillEnd-] get httpclient exception is "
- + e + ", request is " + data);
- }
- return result;
- }
- /**
- * 无车 运单号查询发票数据
- * @param appKey
- * @param api
- * @param data
- * @return
- */
- @Override
- public DataResult noCarVoiceQuery(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("[-NoCarInterServiceImpl.noCarVoiceQuery-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
- JSONObject jsonObject = JSONObject.parseObject(data);
- String num = jsonObject.getString("num");//运单号 必输
- if(StringUtils.isEmpty(data)|| null == jsonObject || StringUtils.isEmpty(num)
- ){
- result.setMsg("有空的必填运单要素,请检查");
- return result;
- }
- NoCarWayBill noCarWayBill1 =null ;
- try {
- noCarWayBill1 = noCarWaybillMapper.selectByBillNum(num);
- }catch (Exception e){
- log.info("xuyaoshanchuyundan:"+num);
- result.setMsg("平台运单号存在多条,请联系管理员删除无效运单");
- return result;
- }
- if (null == noCarWayBill1){
- noCarWayBill1 = new NoCarWayBill();
- noCarWayBill1.setBillNum(num);
- noCarWayBill1.setInterType(0);
- noCarWayBill1.setBillwayStatus(-5);
- }
- if(noCarWayBill1.getInterType() == 3 || (noCarWayBill1.getBillwayStatus()<2 && noCarWayBill1.getFailReason()!=null && noCarWayBill1.getFailReason().contains("XyWaybillHistoryEnd"))){
- noCarWayBill1.setBillwayStatus(-5);
- }
- noCarWayBill1.setCustomerName(appKey);
- noCarWayBill1.setCompanyName(noCarWayBill1.getCompanyName());
- RespR rs = noCarService.getInvoiceByWayBillNumReal(noCarWayBill1,true);
- long costtimeend = System.currentTimeMillis();
- log.info("[-NoCarInterServiceImpl.noCarVoiceQuery-] 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("[-NoCarInterServiceImpl.noCarVoiceQuery-] get httpclient exception is "
- + e + ", request is " + data);
- }
- return result;
- }
- /**
- * 无车 获取未查询过发票的运单编号
- * @param appKey
- * @param api
- * @param data
- * @return
- */
- @Override
- public DataResult noCarNoVoiceQuery(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("[-NoCarInterServiceImpl.noCarNoVoiceQuery-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
- String param = paramService.getParamsByParamName("FIND_NO_SEARCH_NUM_ON_OFF").getParamValue();;
- if(!StringUtils.equals("1",param)){
- result.setMsg("获取未查询过发票的运单编号接口已关闭");
- return result;
- }
- List<NoCarWayBill> noCarWayBills = noCarWaybillMapper.getNoCarNoVoiceQuery(appKey);
- List<String> list1 = new ArrayList<String>();
- for (NoCarWayBill noCarWayBill:noCarWayBills
- ) {
- list1.add(noCarWayBill.getBillNum());
- }
- List<BillInvoice> billInvoices = billInvoiceMapper.selectNoCarNoVoiceQuery(appKey);
- List<String> list2 = new ArrayList<String>();
- for (BillInvoice billInvoice:billInvoices
- ) {
- list2.add(billInvoice.getWaybillNum());
- }
- List<String> reduce1 = list1.stream().filter(item -> !list2.contains(item)).collect(toList());
- long costtimeend = System.currentTimeMillis();
- log.info("[-NoCarInterServiceImpl.noCarNoVoiceQuery-] result is "
- + reduce1.toString() + ", request is " + data + " ,costtime="
- + (costtimeend - costtimestart));
- if(null != reduce1 && reduce1.size() > 0){
- result.setData(1);
- result.setCode(200);
- result.setMsg(JSONArray.fromObject(reduce1).toString());
- return result;
- } else {
- result.setData(2);
- result.setCode(200);
- result.setMsg("未查得");
- return result;
- }
- } catch (Exception e) {
- log.error("[-NoCarInterServiceImpl.noCarNoVoiceQuery-] get httpclient exception is "
- + e + ", request is " + data);
- }
- return result;
- }
- /**
- * 无车 账户余额查询接口
- * @param appKey
- * @param api
- * @param data
- * @return
- */
- @Override
- public DataResult balanceQuery(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("[-NoCarInterServiceImpl.balanceQuery-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
- Customer customer = customerMapper.selectByCustomerName(appKey);
- long costtimeend = System.currentTimeMillis();
- log.info("[-NoCarInterServiceImpl.balanceQuery-] result is "
- + customer.toString() + ", request is " + data + " ,costtime="
- + (costtimeend - costtimestart));
- if(null != customer){
- result.setData(1);
- result.setCode(200);
- JSONObject jb = new JSONObject();
- jb.put("balance",customer.getAccountBalance());
- jb.put("lastDeductionTime",customer.getInvoiceTime());
- result.setMsg(jb.toString());
- return result;
- } else {
- result.setData(3);
- result.setCode(200);
- result.setMsg("无法认证");
- return result;
- }
- } catch (Exception e) {
- log.error("[-NoCarInterServiceImpl.balanceQuery-] get httpclient exception is "
- + e + ", request is " + data);
- }
- return result;
- }
- /**
- * 无车 红冲发票查询接口
- * @param appKey
- * @param api
- * @param data
- * @return
- */
- @Override
- public DataResult redInkInvoiceQuery(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("[-NoCarInterServiceImpl.redInkInvoiceQuery-] request appKey=" + appKey + " ,api=" + api + " ,data=" +data+ " ,requestid=" +requestid);
- JSONObject jsonObject = JSONObject.parseObject(data);
- String taxplayerCode = jsonObject.getString("taxplayerCode");//企业税号 必输
- String month = jsonObject.getString("month");//开票月份 样例:yyyy-MM 必输
- if(StringUtils.isEmpty(data)|| null == jsonObject){
- return result;
- }
- if(StringUtils.isEmpty(taxplayerCode) || StringUtils.isEmpty(month)){
- return result;
- }
- if (null == DateUtil.parseDate(month)){
- result.setMsg("日期格式不正确!");
- return result;
- }
- HCInvoiceQueryVo hcInvoiceQueryVo = new HCInvoiceQueryVo();
- hcInvoiceQueryVo.setBuyerTaxpayerCode(taxplayerCode);
- hcInvoiceQueryVo.setMonth(month);
- RespR rs = noCarService.hCInvoiceQuery(hcInvoiceQueryVo);
- long costtimeend = System.currentTimeMillis();
- log.info("[-NoCarInterServiceImpl.redInkInvoiceQuery-] result is "
- + rs.toString() + ", request is " + data + " ,costtime="
- + (costtimeend - costtimestart));
- if(null != rs && rs.getCode() == 0){
- result.setData(1);
- result.setCode(200);
- result.setMsg(JSON.toJSONString(rs.getData()));
- return result;
- } else {
- result.setData(3);
- result.setCode(200);
- result.setMsg("查询失败");
- return result;
- }
- } catch (Exception e) {
- log.error("[-NoCarInterServiceImpl.redInkInvoiceQuery-] get httpclient exception is "
- + e + ", request is " + data);
- }
- return result;
- }
- public static void main(String[] args) {
- List<String> list1 = new ArrayList<String>();
- list1.add("1");
- list1.add("2");
- list1.add("3");
- list1.add("5");
- list1.add("6");
- List<String> list2 = new ArrayList<String>();
- list2.add("2");
- list2.add("3");
- list2.add("7");
- list2.add("8");
- // 交集
- List<String> intersection = list1.stream().filter(item -> list2.contains(item)).collect(toList());
- System.out.println("---交集 intersection---");
- intersection.parallelStream().forEach(System.out :: println);
- // 差集 (list1 - list2)
- List<String> reduce1 = list1.stream().filter(item -> !list2.contains(item)).collect(toList());
- System.out.println("---差集 reduce1 (list1 - list2)---");
- reduce1.parallelStream().forEach(System.out :: println); // 并集
- List<String> listAll = list1.parallelStream().collect(toList());
- List<String> listAll2 = list2.parallelStream().collect(toList());
- listAll.addAll(listAll2);
- System.out.println("---并集 listAll---");
- listAll.parallelStream().forEachOrdered(System.out :: println);
- // 去重并集
- List<String> listAllDistinct = listAll.stream().distinct().collect(toList());
- System.out.println("---得到去重并集 listAllDistinct---");
- listAllDistinct.parallelStream().forEachOrdered(System.out :: println);
- System.out.println("---原来的List1---");
- list1.parallelStream().forEachOrdered(System.out :: println);
- System.out.println("---原来的List2---");
- list2.parallelStream().forEachOrdered(System.out :: println);
- }
- }
|