|
@@ -1,5 +1,4 @@
|
|
|
package com.jkcredit.invoice.service.lowerService.impl;
|
|
|
-
|
|
|
import cn.com.taiji.sdk.model.comm.protocol.tts.card.server.*;
|
|
|
import cn.com.taiji.sdk.model.comm.protocol.tts.invoice.server.*;
|
|
|
import cn.com.taiji.sdk.model.comm.protocol.tts.trade.service.CardTradeModel;
|
|
@@ -13,7 +12,6 @@ import com.jkcredit.invoice.mapper.customer.CustomerCarRecMapper;
|
|
|
import com.jkcredit.invoice.mapper.customer.CustomerMapper;
|
|
|
import com.jkcredit.invoice.mapper.customer.CustomerRecMapper;
|
|
|
import com.jkcredit.invoice.mapper.waybill.SellCarTradeMapper;
|
|
|
-import com.jkcredit.invoice.model.entity.B2bInvoicePackage;
|
|
|
import com.jkcredit.invoice.model.entity.Calculate.SelfCarCalculateInfor;
|
|
|
import com.jkcredit.invoice.model.entity.customer.Customer;
|
|
|
import com.jkcredit.invoice.model.entity.customer.CustomerCarRec;
|
|
@@ -21,20 +19,21 @@ import com.jkcredit.invoice.model.entity.customer.CustomerRec;
|
|
|
import com.jkcredit.invoice.model.entity.invoice.SelfCarAppl;
|
|
|
import com.jkcredit.invoice.model.entity.invoice.SelfCarInvoice;
|
|
|
import com.jkcredit.invoice.model.entity.waybill.SelfCarTrade;
|
|
|
+import com.jkcredit.invoice.service.customer.CustomerService;
|
|
|
import com.jkcredit.invoice.service.lowerService.SelfCarServiceL;
|
|
|
import com.jkcredit.invoice.service.lowerService.vo.*;
|
|
|
import com.jkcredit.invoice.service.upService.SelfCarInterface;
|
|
|
import com.jkcredit.invoice.util.DateUtil;
|
|
|
import com.jkcredit.invoice.util.MathUtil;
|
|
|
import com.jkcredit.invoice.util.RespR;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
-import org.springframework.transaction.annotation.Transactional;
|
|
|
-
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.List;
|
|
|
+@Slf4j
|
|
|
@Service
|
|
|
public class SelfCarServiceLImpl implements SelfCarServiceL {
|
|
|
@Autowired
|
|
@@ -53,16 +52,22 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
|
|
|
SelfCarInvoiceMapper selfCarInvoiceMapper;
|
|
|
@Autowired
|
|
|
SelfCarCalculateInforMapper calculateInforMapper;
|
|
|
+ @Autowired
|
|
|
+ CustomerService customerService;
|
|
|
@Override
|
|
|
public RespR<List<CardTradeModel>> getTradeList(TradeRequestVo tradeRequestVo) {
|
|
|
+ log.info("获取交易开始SelfCarServiceLImpl.getTradeList{}",tradeRequestVo);
|
|
|
Customer customer = customerMapper.selectByCustomerName(tradeRequestVo.getCustomerName());
|
|
|
if(customer == null || customer.getAccstatus().intValue() == 1){
|
|
|
+ log.info("获取交易失败SelfCarServiceLImpl.getTradeList{},msg{}",tradeRequestVo,"客户已经停用");
|
|
|
return new RespR(false,"客户已经停用");
|
|
|
}
|
|
|
if(StringUtils.isEmpty(tradeRequestVo.getStartTime()) || StringUtils.isEmpty(tradeRequestVo.getEndTime())){
|
|
|
+ log.info("获取交易失败SelfCarServiceLImpl.getTradeList{},msg{}",tradeRequestVo,"时间为空");
|
|
|
return new RespR(false,"时间为空");
|
|
|
}
|
|
|
if(DateUtil.getDistanceDays(tradeRequestVo.getEndTime(),tradeRequestVo.getStartTime())>90){
|
|
|
+ log.info("获取交易失败SelfCarServiceLImpl.getTradeList{},msg{}",tradeRequestVo,"不能查询大于90天的交易");
|
|
|
return new RespR(false,"不能查询大于90天的交易");
|
|
|
}
|
|
|
CustomerRec customerRec = new CustomerRec();
|
|
@@ -70,10 +75,12 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
|
|
|
customerRec.setCompanyName(tradeRequestVo.getCompanyName());
|
|
|
customerRec = customerRecMapper.selectByCustomerNameAndCompany(customerRec);
|
|
|
if(customerRec == null || customerRec.getRecStatus().intValue() !=1 ){
|
|
|
+ log.info("获取交易失败SelfCarServiceLImpl.getTradeList{},msg{}",tradeRequestVo,"客户未备案");
|
|
|
return new RespR(false,"客户未备案");
|
|
|
}
|
|
|
CustomerCarRec customerCarRec = customerCarRecMapper.selectByETC(tradeRequestVo.getEtcId());
|
|
|
if(customerCarRec == null || customerCarRec.getRecStatus() != 1){
|
|
|
+ log.info("获取交易失败SelfCarServiceLImpl.getTradeList{},msg{}",tradeRequestVo,"该etc卡未绑定或绑定类型错误");
|
|
|
return new RespR(false,"该etc卡未绑定或绑定类型错误");
|
|
|
}
|
|
|
CardTradeRequest cardTradeRequest = new CardTradeRequest();
|
|
@@ -84,6 +91,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
|
|
|
cardTradeRequest.setTradeStatus(tradeRequestVo.getTradeStatus());
|
|
|
RespR<CardTradeResponse> resp = selfCarInterface.cardTrade(cardTradeRequest);
|
|
|
if(resp.getCode() == 1){
|
|
|
+ log.info("获取交易失败SelfCarServiceLImpl.getTradeList{},msg{}",tradeRequestVo,resp.getMsg());
|
|
|
return new RespR(false,"请求失败:"+resp.getMsg());
|
|
|
}else{
|
|
|
CardTradeResponse cardTradeResponse = resp.getData();
|
|
@@ -118,8 +126,14 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
|
|
|
|
|
|
@Override
|
|
|
public RespR<String> applInvoice(InvoiceApplVo invoiceApplVo) {
|
|
|
+ log.info("申请开票开始SelfCarServiceLImpl.applInvoice{}",invoiceApplVo);
|
|
|
+ if(!customerService.checkMoneyEnough(invoiceApplVo.getCustomerName())){
|
|
|
+ log.info("申请开票失败SelfCarServiceLImpl.applInvoice{},msg{}",invoiceApplVo,"余额不足");
|
|
|
+ return new RespR(false,"余额不足");
|
|
|
+ }
|
|
|
Customer customer = customerMapper.selectByCustomerName(invoiceApplVo.getCustomerName());
|
|
|
if(customer == null || customer.getAccstatus().intValue() == 1){
|
|
|
+ log.info("申请开票失败SelfCarServiceLImpl.applInvoice{},msg{}",invoiceApplVo,"客户已经停用");
|
|
|
return new RespR(false,"客户已经停用");
|
|
|
}
|
|
|
CustomerRec customerRec = new CustomerRec();
|
|
@@ -127,10 +141,12 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
|
|
|
customerRec.setCompanyName(invoiceApplVo.getCompanyName());
|
|
|
customerRec = customerRecMapper.selectByCustomerNameAndCompany(customerRec);
|
|
|
if(customerRec == null || customerRec.getRecStatus().intValue() !=1 ){
|
|
|
+ log.info("申请开票失败SelfCarServiceLImpl.applInvoice{},msg{}",invoiceApplVo,"客户未备案");
|
|
|
return new RespR(false,"客户未备案");
|
|
|
}
|
|
|
CustomerCarRec customerCarRec = customerCarRecMapper.selectByETC(invoiceApplVo.getCardId());
|
|
|
if(customerCarRec == null || customerCarRec.getRecStatus() != 1){
|
|
|
+ log.info("申请开票失败SelfCarServiceLImpl.applInvoice{},msg{}",invoiceApplVo,"该etc卡未绑定或绑定类型错误");
|
|
|
return new RespR(false,"该etc卡未绑定或绑定类型错误");
|
|
|
}
|
|
|
B2BInvoiceApplyRequest b2BInvoiceApplyRequest = new B2BInvoiceApplyRequest();
|
|
@@ -149,6 +165,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
|
|
|
b2BInvoiceApplyRequest.setTradeIdModel(b2BInvoiceApplyModels);
|
|
|
RespR<B2BInvoiceApplyResponse> respR = selfCarInterface.b2BInvoiceApply(b2BInvoiceApplyRequest);
|
|
|
if(respR.getCode()==1){
|
|
|
+ log.info("申请开票失败SelfCarServiceLImpl.applInvoice{},msg{}",invoiceApplVo,respR.getMsg());
|
|
|
return new RespR(false,"申请失败");
|
|
|
}else{
|
|
|
B2BInvoiceApplyResponse b2BInvoiceApplyResponse = respR.getData();
|
|
@@ -193,8 +210,15 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
|
|
|
|
|
|
@Override
|
|
|
public RespR<List<SelfCarInvoice>> getSelfCarInvoicesByApplyIds(ApplQueryInvVo applQueryInvVo) {
|
|
|
+ log.info("申请开票开始SelfCarServiceLImpl.getSelfCarInvoicesByApplyIds{}",applQueryInvVo);
|
|
|
+ if(!customerService.checkMoneyEnough(applQueryInvVo.getCustomerName())){
|
|
|
+ return new RespR(false,"余额不足");
|
|
|
+ }
|
|
|
B2BInvoiceQueryByApplyRequest b2BInvoiceQueryRequest = new B2BInvoiceQueryByApplyRequest();
|
|
|
Customer customer = customerMapper.selectByCustomerName(applQueryInvVo.getCustomerName());
|
|
|
+ if(customer == null || customer.getAccstatus().intValue() == 1){
|
|
|
+ return new RespR(false,"客户已经停用");
|
|
|
+ }
|
|
|
CustomerRec customerRec = new CustomerRec();
|
|
|
customerRec.setCustomerName(applQueryInvVo.getCustomerName());
|
|
|
customerRec.setCompanyName(applQueryInvVo.getCompanyName());
|
|
@@ -207,6 +231,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
|
|
|
b2BInvoiceQueryRequest.setApplyId(applQueryInvVo.getApplId());
|
|
|
RespR<B2BInvoiceQueryByApplyResponse> responseRespR = selfCarInterface.b2bContractQuery(b2BInvoiceQueryRequest);
|
|
|
if(responseRespR.getCode() == 1){
|
|
|
+ log.info("申请开票失败SelfCarServiceLImpl.getSelfCarInvoicesByApplyIds{},msg{}",applQueryInvVo,responseRespR.getMsg());
|
|
|
return new RespR(false,responseRespR.getMsg());
|
|
|
}else{
|
|
|
B2BInvoiceQueryByApplyResponse response = responseRespR.getData();
|
|
@@ -224,10 +249,6 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
|
|
|
selfCarInvoice.setExTime(DateUtil.tTimeToDate(selfCarInvoice.getExTime()));
|
|
|
if(selfCarInvoiceMapper.selectByTradeAndInvoiceMakeTime(selfCarInvoice)==null || selfCarInvoiceMapper.selectByTradeAndInvoiceMakeTime(selfCarInvoice).size()==0){
|
|
|
selfCarInvoiceMapper.insert(selfCarInvoice);
|
|
|
- //更新为开票完成
|
|
|
- SelfCarTrade selfCarTrade = sellCarTradeMapper.selectByTradeId(selfCarInvoice.getTradeId());
|
|
|
- selfCarTrade.setStatus(3);
|
|
|
- sellCarTradeMapper.updateByTradeId(selfCarTrade);
|
|
|
}
|
|
|
|
|
|
}
|
|
@@ -238,6 +259,10 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
|
|
|
|
|
|
@Override
|
|
|
public RespR<List<B2BInvoiceListModel>> getSelfCarInvoicesByTime(SelfCarDueQueryVo selfCarDueQueryVo) {
|
|
|
+ log.info("申请开票开始SelfCarServiceLImpl.getSelfCarInvoicesByTime{}",selfCarDueQueryVo);
|
|
|
+ if(!customerService.checkMoneyEnough(selfCarDueQueryVo.getCustomername())){
|
|
|
+ return new RespR(false,"余额不足");
|
|
|
+ }
|
|
|
Customer customer = customerMapper.selectByCustomerName(selfCarDueQueryVo.getCustomername());
|
|
|
if(customer == null || customer.getAccstatus().intValue() == 1){
|
|
|
return new RespR(false,"客户已经停用");
|
|
@@ -261,6 +286,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
|
|
|
|
|
|
RespR<B2BInvoiceQueryResponse> responseRespR = selfCarInterface.b2BInvoiceQuery(b2BInvoiceQueryRequest);
|
|
|
if(responseRespR.getCode() == 1){
|
|
|
+ log.info("申请开票失败SelfCarServiceLImpl.getSelfCarInvoicesByTime{},msg{}",selfCarDueQueryVo,responseRespR.getMsg());
|
|
|
return new RespR(false,responseRespR.getMsg());
|
|
|
}else{
|
|
|
B2BInvoiceQueryResponse b2BInvoiceQueryResponse = responseRespR.getData();
|
|
@@ -273,10 +299,6 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
|
|
|
selfCarInvoice.setExTime(DateUtil.dateFormate(selfCarInvoice.getExTime()));
|
|
|
if(selfCarInvoiceMapper.selectByTradeAndInvoiceMakeTime(selfCarInvoice)==null || selfCarInvoiceMapper.selectByTradeAndInvoiceMakeTime(selfCarInvoice).size()==0){
|
|
|
selfCarInvoiceMapper.insert(selfCarInvoice);
|
|
|
- //更新为开票完成
|
|
|
- SelfCarTrade selfCarTrade = sellCarTradeMapper.selectByTradeId(selfCarInvoice.getTradeId());
|
|
|
- selfCarTrade.setStatus(3);
|
|
|
- sellCarTradeMapper.updateByTradeId(selfCarTrade);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -286,10 +308,14 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
|
|
|
|
|
|
@Override
|
|
|
public RespR<List<B2bInvoicePackageModel>> getInvoicePackge(InvoicePackageVo invoicePackageVo) {
|
|
|
+ log.info("申请开票开始SelfCarServiceLImpl.getInvoicePackge{}",invoicePackageVo);
|
|
|
Customer customer = customerMapper.selectByCustomerName(invoicePackageVo.getCustomerName());
|
|
|
if(customer == null || customer.getAccstatus().intValue() == 1){
|
|
|
return new RespR(false,"客户已经停用");
|
|
|
}
|
|
|
+ if(!customerService.checkMoneyEnough(invoicePackageVo.getCustomerName())){
|
|
|
+ return new RespR(false,"余额不足");
|
|
|
+ }
|
|
|
CustomerRec customerRec = new CustomerRec();
|
|
|
customerRec.setCustomerName(invoicePackageVo.getCustomerName());
|
|
|
customerRec.setCompanyName(invoicePackageVo.getCompanyName());
|
|
@@ -303,6 +329,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
|
|
|
b2bInvoicePackageRequest.setMakeMonth(invoicePackageVo.getMonth());
|
|
|
RespR<B2bInvoicePackageResponse> b2bInvoicePackageResponseRespR = selfCarInterface.b2bInvoicePackage(b2bInvoicePackageRequest);
|
|
|
if(b2bInvoicePackageResponseRespR.getCode() == 1){
|
|
|
+ log.info("申请开票失败SelfCarServiceLImpl.getInvoicePackge{},msg{}",invoicePackageVo,b2bInvoicePackageResponseRespR.getMsg());
|
|
|
return new RespR(false,b2bInvoicePackageResponseRespR.getMsg());
|
|
|
}else{
|
|
|
return new RespR(b2bInvoicePackageResponseRespR.getData().getResult());
|
|
@@ -311,6 +338,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
|
|
|
|
|
|
@Override
|
|
|
public RespR getEtcInfo(EtcQueryVo etcQueryVo) {
|
|
|
+ log.info("获取etc信息:SelfCarServiceLImpl.getEtcInfo{}",etcQueryVo);
|
|
|
Customer customer = customerMapper.selectByCustomerName(etcQueryVo.getCustomerName());
|
|
|
if(customer == null || customer.getAccstatus().intValue() == 1){
|
|
|
return new RespR(false,"客户已经停用");
|
|
@@ -329,11 +357,13 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
|
|
|
cardQueryCardToBRequest.setPalteColor(etcQueryVo.getPlateColor());//车牌颜色.非必输
|
|
|
RespR<CardBindQueryListToBResponse> respR = selfCarInterface.cardBindQueryListToB(cardQueryCardToBRequest);
|
|
|
if(respR.getCode() == 1){
|
|
|
+ log.info("获取etc信息失败:SelfCarServiceLImpl.getEtcInfo{},msg{}",etcQueryVo,respR.getMsg());
|
|
|
return new RespR(false,respR.getMsg());
|
|
|
}
|
|
|
return new RespR(respR.getData().getResult());
|
|
|
}
|
|
|
public RespR queryEtcInfo(EtcBindVo etcBindVo){
|
|
|
+ log.info("获取etc信息:SelfCarServiceLImpl.queryEtcInfo{}",etcBindVo);
|
|
|
StringBuffer res = new StringBuffer();
|
|
|
if(etcBindVo== null || etcBindVo.getCards() ==null || etcBindVo.getCards().size()<=0){
|
|
|
return new RespR(false,"无备案Etc");
|
|
@@ -363,9 +393,11 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
|
|
|
cardQueryCardToBRequest.setVehicleList(cardQueryCardToBModels);
|
|
|
RespR<CardQueryCardToBResponse> respR = selfCarInterface.cardQueryCardToB(cardQueryCardToBRequest);
|
|
|
if(respR.getCode() == 1){
|
|
|
+ log.info("获取etc信息失败:SelfCarServiceLImpl.queryEtcInfo{},msg{}",etcBindVo,respR.getMsg());
|
|
|
return new RespR(false,respR.getMsg());
|
|
|
}
|
|
|
if(respR.getData().getResult() == null){
|
|
|
+ log.info("获取etc信息失败:SelfCarServiceLImpl.queryEtcInfo{},msg{}",etcBindVo,"没有etc卡");
|
|
|
return new RespR(false,"没有etc卡");
|
|
|
}
|
|
|
return new RespR(respR.getData().getResult());
|
|
@@ -373,6 +405,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
|
|
|
}
|
|
|
@Override
|
|
|
public RespR customerEtcRec(EtcBindVo etcBindVo) {
|
|
|
+ log.info("etc注册:SelfCarServiceLImpl.customerEtcRec{}",etcBindVo);
|
|
|
if(etcBindVo== null || etcBindVo.getCards() ==null || etcBindVo.getCards().size()<=0){
|
|
|
return new RespR(false,"无备案Etc");
|
|
|
}
|
|
@@ -407,6 +440,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
|
|
|
cardBindingToBRequest.setCardIdList(cardBindingToBModels);
|
|
|
RespR<CardBindingToBResponse> respR1 = selfCarInterface.cardBindingToB(cardBindingToBRequest);
|
|
|
if(respR1.getCode() == 1){
|
|
|
+ log.info("etc注册失败:SelfCarServiceLImpl.customerEtcRec{},msg{}",etcBindVo,respR1.getMsg());
|
|
|
return new RespR(false,"注册失败:"+respR1.getMsg());
|
|
|
}else{
|
|
|
return new RespR("已经发送绑定请求,请发送收到的验证码");
|
|
@@ -424,6 +458,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
|
|
|
}
|
|
|
@Override
|
|
|
public RespR customerEtcRecValid(EtcValidVo etcValidVo) {
|
|
|
+ log.info("etc注册校验:SelfCarServiceLImpl.customerEtcRecValid{}",etcValidVo);
|
|
|
StringBuffer res = new StringBuffer();
|
|
|
Customer customer = customerMapper.selectByCustomerName(etcValidVo.getCustomerName());
|
|
|
if(customer == null || customer.getAccstatus()!=0){
|
|
@@ -444,6 +479,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
|
|
|
cardValidCodeToBRequest.setValidCode(etcValidVo.getValidCode());
|
|
|
RespR<CardValidCodeToBResponse> respR = selfCarInterface.cardValidCodeToB(cardValidCodeToBRequest);
|
|
|
if(respR.getCode() == 1){
|
|
|
+ log.info("etc注册校验失败:SelfCarServiceLImpl.customerEtcRecValid{},msg",etcValidVo,respR.getMsg());
|
|
|
return new RespR(false,"验证失败:"+respR.getMsg());
|
|
|
}else{
|
|
|
/**
|
|
@@ -469,6 +505,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
|
|
|
}
|
|
|
@Override
|
|
|
public RespR customerCarUnRec(List<CustomerCarRec> customerCarRecs) {
|
|
|
+ log.info("etc解绑:SelfCarServiceLImpl.customerCarUnRec{}",customerCarRecs);
|
|
|
if(customerCarRecs==null || customerCarRecs.size()<=0){
|
|
|
return new RespR(false,"无解绑信息");
|
|
|
}
|
|
@@ -486,6 +523,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
|
|
|
cardUnbindToBRequest.setCompanyNum(customerRec.getCompanyNum());
|
|
|
RespR<CardUnbindToBResponse> respR = selfCarInterface.cardUnbindToB(cardUnbindToBRequest);
|
|
|
if(respR.getCode() == 1){
|
|
|
+ log.info("etc解绑失败:SelfCarServiceLImpl.customerCarUnRec{},msg{}",customerCarRecs,respR.getMsg());
|
|
|
res.append(customerCarRec.getEtcNum()+","+customerCarRec.getCarNum()+"解绑失败;"+"#");
|
|
|
}else{
|
|
|
customerCarRec.setRecStatus(2);
|