|
@@ -29,6 +29,8 @@ import org.apache.commons.lang3.StringUtils;
|
|
import org.springframework.beans.BeanUtils;
|
|
import org.springframework.beans.BeanUtils;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
+import org.springframework.transaction.annotation.Transactional;
|
|
|
|
+
|
|
import java.util.ArrayList;
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import java.util.List;
|
|
@Service
|
|
@Service
|
|
@@ -133,6 +135,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
|
|
}
|
|
}
|
|
|
|
|
|
@Override
|
|
@Override
|
|
|
|
+ @Transactional
|
|
public RespR<String> applInvoice(InvoiceApplVo invoiceApplVo) {
|
|
public RespR<String> applInvoice(InvoiceApplVo invoiceApplVo) {
|
|
log.info("申请开票开始SelfCarServiceLImpl.applInvoice{}",invoiceApplVo);
|
|
log.info("申请开票开始SelfCarServiceLImpl.applInvoice{}",invoiceApplVo);
|
|
if(!customerService.checkMoneyEnough(invoiceApplVo.getCustomerName())){
|
|
if(!customerService.checkMoneyEnough(invoiceApplVo.getCustomerName())){
|
|
@@ -188,7 +191,7 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
|
|
selfCarAppl.setInvoiceTaxAmount(b2BInvoiceApplyResponse.getInvoiceTaxAmount());
|
|
selfCarAppl.setInvoiceTaxAmount(b2BInvoiceApplyResponse.getInvoiceTaxAmount());
|
|
selfCarAppl.setInterType(invoiceApplVo.getInterType());
|
|
selfCarAppl.setInterType(invoiceApplVo.getInterType());
|
|
selfCarApplMapper.insert(selfCarAppl);
|
|
selfCarApplMapper.insert(selfCarAppl);
|
|
-
|
|
|
|
|
|
+ double needFee = 0;
|
|
//更新交易id申请开票时间,并将转态改为开票中
|
|
//更新交易id申请开票时间,并将转态改为开票中
|
|
for(String tradeId : tradeIds){
|
|
for(String tradeId : tradeIds){
|
|
SelfCarTrade selfCarTrade = sellCarTradeMapper.selectByTradeId(tradeId);
|
|
SelfCarTrade selfCarTrade = sellCarTradeMapper.selectByTradeId(tradeId);
|
|
@@ -208,12 +211,14 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
|
|
carCalculateInfor.setCompanyReferencenum(customerRec.getCompanyReferencenum());
|
|
carCalculateInfor.setCompanyReferencenum(customerRec.getCompanyReferencenum());
|
|
carCalculateInfor.setEtcNum(selfCarTrade.getCardId());
|
|
carCalculateInfor.setEtcNum(selfCarTrade.getCardId());
|
|
if(calculateInforMapper.selectByEtcAndTime(carCalculateInfor) == null){
|
|
if(calculateInforMapper.selectByEtcAndTime(carCalculateInfor) == null){
|
|
- customer.setInvoiceTime(DateUtil.getCurrentDateStr());
|
|
|
|
- customer.setAccountBalance(MathUtil.sub(customer.getAccountBalance(),carCalculateInfor.getFee()));
|
|
|
|
- customerMapper.updateByPrimaryKeySelective(customer);
|
|
|
|
|
|
+ needFee = MathUtil.add(needFee,carCalculateInfor.getFee());
|
|
calculateInforMapper.insert(carCalculateInfor);
|
|
calculateInforMapper.insert(carCalculateInfor);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ //客户统一扣费
|
|
|
|
+ customer.setInvoiceTime(DateUtil.getCurrentDateStr());
|
|
|
|
+ customer.setAccountBalance(MathUtil.sub(customer.getAccountBalance(),needFee));
|
|
|
|
+ customerMapper.updateByPrimaryKeySelective(customer);
|
|
//SelfCarTrade selfCarTrade = sellCarTradeMapper.selectByTradeId(cardTradeModel.getTradeId());
|
|
//SelfCarTrade selfCarTrade = sellCarTradeMapper.selectByTradeId(cardTradeModel.getTradeId());
|
|
return new RespR(respR.getData());
|
|
return new RespR(respR.getData());
|
|
}
|
|
}
|
|
@@ -313,26 +318,8 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@Override
|
|
@Override
|
|
- public RespR<List<B2BInvoiceListModel>> getSelfCarInvoicesByTime(SelfCarDueQueryVo selfCarDueQueryVo) {
|
|
|
|
|
|
+ public RespR<List<B2BInvoiceListModel>> getSelfCarInvoicesByTime(SelfCarDueQueryVo selfCarDueQueryVo,CustomerRec customerRec) {
|
|
log.info("申请开票开始SelfCarServiceLImpl.getSelfCarInvoicesByTime{}",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,"客户已经停用");
|
|
|
|
- }
|
|
|
|
- CustomerRec customerRec = new CustomerRec();
|
|
|
|
- customerRec.setCustomerName(selfCarDueQueryVo.getCustomername());
|
|
|
|
- customerRec.setCompanyName(selfCarDueQueryVo.getCompanyName());
|
|
|
|
- customerRec = customerRecMapper.selectByCustomerNameAndCompany(customerRec);
|
|
|
|
- if(customerRec == null || customerRec.getRecStatus().intValue() !=1 ){
|
|
|
|
- return new RespR(false,"客户未备案");
|
|
|
|
- }
|
|
|
|
- CustomerCarRec customerCarRec = customerCarRecMapper.selectByETC(selfCarDueQueryVo.getCardId());
|
|
|
|
- if(customerCarRec == null || customerCarRec.getRecStatus() != 1){
|
|
|
|
- return new RespR(false,"业务校验错误:该卡号不在该企业下绑定!\\n:803");
|
|
|
|
- }
|
|
|
|
B2BInvoiceQueryRequest b2BInvoiceQueryRequest = new B2BInvoiceQueryRequest();
|
|
B2BInvoiceQueryRequest b2BInvoiceQueryRequest = new B2BInvoiceQueryRequest();
|
|
b2BInvoiceQueryRequest.setCompanyNum(customerRec.getCompanyNum());
|
|
b2BInvoiceQueryRequest.setCompanyNum(customerRec.getCompanyNum());
|
|
b2BInvoiceQueryRequest.setCardId(selfCarDueQueryVo.getCardId());
|
|
b2BInvoiceQueryRequest.setCardId(selfCarDueQueryVo.getCardId());
|
|
@@ -352,11 +339,11 @@ public class SelfCarServiceLImpl implements SelfCarServiceL {
|
|
BeanUtils.copyProperties(b2BInvoiceListModel,selfCarInvoice);
|
|
BeanUtils.copyProperties(b2BInvoiceListModel,selfCarInvoice);
|
|
selfCarInvoice.setInvoiceMakeTime(DateUtil.tTimeToDate(selfCarInvoice.getInvoiceMakeTime()));
|
|
selfCarInvoice.setInvoiceMakeTime(DateUtil.tTimeToDate(selfCarInvoice.getInvoiceMakeTime()));
|
|
selfCarInvoice.setExTime(DateUtil.tTimeToDate(selfCarInvoice.getExTime()));
|
|
selfCarInvoice.setExTime(DateUtil.tTimeToDate(selfCarInvoice.getExTime()));
|
|
- selfCarInvoice.setCustomerName(customer.getCustomerName());
|
|
|
|
|
|
+ selfCarInvoice.setCustomerName(selfCarDueQueryVo.getCustomername());
|
|
selfCarInvoice.setCompanyName(customerRec.getCompanyName());
|
|
selfCarInvoice.setCompanyName(customerRec.getCompanyName());
|
|
selfCarInvoice.setBuyerTaxpayerCode(customerRec.getCompanyReferencenum());
|
|
selfCarInvoice.setBuyerTaxpayerCode(customerRec.getCompanyReferencenum());
|
|
selfCarInvoice.setBuyerName(customerRec.getCompanyName());
|
|
selfCarInvoice.setBuyerName(customerRec.getCompanyName());
|
|
- selfCarInvoice.setCompanyNum(customerCarRec.getCompanyNum());
|
|
|
|
|
|
+ selfCarInvoice.setCompanyNum(customerRec.getCompanyNum());
|
|
selfCarInvoice.setEnStation(b2BInvoiceListModel.getEnStationName());
|
|
selfCarInvoice.setEnStation(b2BInvoiceListModel.getEnStationName());
|
|
selfCarInvoice.setExStation(b2BInvoiceListModel.getExStationName());
|
|
selfCarInvoice.setExStation(b2BInvoiceListModel.getExStationName());
|
|
SelfCarInvoice selfCarInvoice1 = selfCarInvoiceMapper.selectByCodeAndNum(selfCarInvoice);
|
|
SelfCarInvoice selfCarInvoice1 = selfCarInvoiceMapper.selectByCodeAndNum(selfCarInvoice);
|