|
@@ -15,12 +15,14 @@ import com.jkcredit.invoice.service.lowerService.NoCarService;
|
|
|
import com.jkcredit.invoice.service.nocar.NoCarBillWayService;
|
|
|
import com.jkcredit.invoice.util.DateUtil;
|
|
|
import com.jkcredit.invoice.util.RespR;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.springframework.util.StringUtils;
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.List;
|
|
|
+@Slf4j
|
|
|
@Service
|
|
|
public class NoCarBillWayServiceImpl extends ServiceImpl<NoCarWaybillMapper,NoCarWayBill> implements NoCarBillWayService{
|
|
|
@Autowired
|
|
@@ -76,6 +78,7 @@ public class NoCarBillWayServiceImpl extends ServiceImpl<NoCarWaybillMapper,NoCa
|
|
|
customerCarRec.setCarColor(noCarWayBill.getPlateColor());
|
|
|
customerCarRec.setCustomerName(customerName);
|
|
|
customerCarRec.setBusinessType("2");
|
|
|
+ noCarWayBill.setTitleType(2);
|
|
|
customerCarRecs.add(customerCarRec);
|
|
|
RespR respR = noCarService.customerCarRec(customerCarRecs);
|
|
|
if(respR.getCode() ==1){
|
|
@@ -102,59 +105,71 @@ public class NoCarBillWayServiceImpl extends ServiceImpl<NoCarWaybillMapper,NoCa
|
|
|
//保存批次号信息
|
|
|
String batchNumber = customerOperService.saveCustomerOper(customerName,3);
|
|
|
noCarWayBills.parallelStream().forEach(noCarWayBill -> {
|
|
|
- //根据税号,查询备案企业
|
|
|
- CustomerRec customerRec = new CustomerRec();
|
|
|
- customerRec.setCustomerName(customerName);
|
|
|
- customerRec.setCompanyReferencenum(noCarWayBill.getTaxplayerCode());
|
|
|
- customerRec = customerRecMapper.selectByCustomerNameAndCompanyReference(customerRec);
|
|
|
- if(customerRec == null || customerRec.getRecStatus()!=1){
|
|
|
- stringBuffer.append("#").append(noCarWayBill.getBillNum()).append(":").append("企业税号未备案#");
|
|
|
- return;
|
|
|
- }
|
|
|
- noCarWayBill.setCompanyName(customerRec.getCompanyName());
|
|
|
- noCarWayBill.setCustomerName(customerName);
|
|
|
- noCarWayBill.setBatchNum(batchNumber);
|
|
|
- //1.查询是否有车辆备案
|
|
|
- CustomerCarRec customerCarRec = customerCarRecMapper.selectByCarNum(noCarWayBill.getPlateColor());
|
|
|
-
|
|
|
- //2.无车车辆备案时进行车辆备案
|
|
|
- if(customerCarRec== null || customerCarRec.getRecStatus()!=1){
|
|
|
- List<CustomerCarRec> customerCarRecs = new ArrayList<>();
|
|
|
- customerCarRec = new CustomerCarRec();
|
|
|
- customerCarRec.setCompanyName(noCarWayBill.getCompanyName());
|
|
|
- customerCarRec.setCarNum(noCarWayBill.getPlateNum());
|
|
|
- customerCarRec.setCarColor(noCarWayBill.getPlateColor());
|
|
|
- customerCarRec.setCustomerName(customerName);
|
|
|
- customerCarRec.setBusinessType("2");
|
|
|
- customerCarRecs.add(customerCarRec);
|
|
|
- RespR respR = noCarService.customerCarRec(customerCarRecs);
|
|
|
- if(respR.getCode() ==1){
|
|
|
- stringBuffer.append("#").append(noCarWayBill.getBillNum()).append(":").append(respR.getMsg()).append("#");
|
|
|
+ try {
|
|
|
+ log.info("kai shi chu li li si yun dan"+noCarWayBill.getBillNum());
|
|
|
+ //根据税号,查询备案企业
|
|
|
+ CustomerRec customerRec = new CustomerRec();
|
|
|
+ customerRec.setCustomerName(customerName);
|
|
|
+ customerRec.setCompanyReferencenum(noCarWayBill.getTaxplayerCode());
|
|
|
+ customerRec = customerRecMapper.selectByCustomerNameAndCompanyReference(customerRec);
|
|
|
+ if(customerRec == null || customerRec.getRecStatus()!=1){
|
|
|
+ stringBuffer.append("#").append(noCarWayBill.getBillNum()).append(":").append("企业税号未备案#");
|
|
|
return;
|
|
|
}
|
|
|
- }
|
|
|
-
|
|
|
- //3.kais指令上传
|
|
|
- NoCarWayBill noCarWayBillClo = null;
|
|
|
- try{
|
|
|
- noCarWayBillClo = noCarWayBill.clone();
|
|
|
- }catch (Exception e){
|
|
|
- e.printStackTrace();
|
|
|
- noCarWayBillClo = noCarWayBill;
|
|
|
- }
|
|
|
+ noCarWayBill.setCompanyName(customerRec.getCompanyName());
|
|
|
+ noCarWayBill.setCustomerName(customerName);
|
|
|
+ noCarWayBill.setBatchNum(batchNumber);
|
|
|
+ noCarWayBill.setTitleType(2);
|
|
|
+ //1.查询是否有车辆备案
|
|
|
+ CustomerCarRec customerCarRec = customerCarRecMapper.selectByCarNum(noCarWayBill.getPlateNum());
|
|
|
+
|
|
|
+ //2.无车车辆备案时进行车辆备案
|
|
|
+ if(customerCarRec== null || customerCarRec.getRecStatus()!=1){
|
|
|
+ List<CustomerCarRec> customerCarRecs = new ArrayList<>();
|
|
|
+ customerCarRec = new CustomerCarRec();
|
|
|
+ customerCarRec.setCompanyName(noCarWayBill.getCompanyName());
|
|
|
+ customerCarRec.setCarNum(noCarWayBill.getPlateNum());
|
|
|
+ customerCarRec.setCarColor(noCarWayBill.getPlateColor());
|
|
|
+ customerCarRec.setCustomerName(customerName);
|
|
|
+ customerCarRec.setBusinessType("2");
|
|
|
+ customerCarRecs.add(customerCarRec);
|
|
|
+ RespR respR = noCarService.customerCarRec(customerCarRecs);
|
|
|
+ if(respR.getCode() ==1){
|
|
|
+ stringBuffer.append("#").append(noCarWayBill.getBillNum()).append(":").append(respR.getMsg()).append("#");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- RespR respR = noCarService.noCarHisWaybillStart(noCarWayBill);
|
|
|
- if (respR.getCode() == 1){
|
|
|
- stringBuffer.append("#").append(noCarWayBill.getBillNum()).append(":").append(respR.getMsg()).append("#");
|
|
|
- }else{
|
|
|
//3.kais指令上传
|
|
|
- respR = noCarService.noCarHisWaybillEnd(noCarWayBillClo);
|
|
|
- if(respR.getCode() == 1){
|
|
|
+ NoCarWayBill noCarWayBillClo = null;
|
|
|
+ try{
|
|
|
+ noCarWayBillClo = noCarWayBill.clone();
|
|
|
+ }catch (Exception e){
|
|
|
+ e.printStackTrace();
|
|
|
+ noCarWayBillClo = noCarWayBill;
|
|
|
+ }
|
|
|
+
|
|
|
+ RespR respR = noCarService.noCarHisWaybillStart(noCarWayBill);
|
|
|
+ if (respR.getCode() == 1){
|
|
|
stringBuffer.append("#").append(noCarWayBill.getBillNum()).append(":").append(respR.getMsg()).append("#");
|
|
|
+ log.info(noCarWayBill.getBillNum()+"#开始指令失败"+respR.getMsg());
|
|
|
}else{
|
|
|
- //取发票
|
|
|
- noCarService.getInvoiceByWayBillNumReal(noCarWayBill,true);
|
|
|
+ log.info(noCarWayBill.getBillNum()+"#开始指令成功"+respR.getMsg());
|
|
|
+ //3.kais指令上传
|
|
|
+ respR = noCarService.noCarHisWaybillEnd(noCarWayBillClo);
|
|
|
+
|
|
|
+ if(respR.getCode() == 1){
|
|
|
+ log.info(noCarWayBill.getBillNum()+"#结束指令失败"+respR.getMsg());
|
|
|
+ stringBuffer.append("#").append(noCarWayBill.getBillNum()).append(":").append(respR.getMsg()).append("#");
|
|
|
+ }else{
|
|
|
+ log.info(noCarWayBill.getBillNum()+"#结束指令成功"+respR.getMsg());
|
|
|
+ //取发票
|
|
|
+ noCarService.getInvoiceByWayBillNumReal(noCarWayBill,true);
|
|
|
+ }
|
|
|
}
|
|
|
+ log.info("kai shi chu li li si yun dan"+noCarWayBill.getBillNum());
|
|
|
+ }catch (Exception e){
|
|
|
+ e.printStackTrace();
|
|
|
}
|
|
|
|
|
|
|
|
@@ -171,11 +186,16 @@ public class NoCarBillWayServiceImpl extends ServiceImpl<NoCarWaybillMapper,NoCa
|
|
|
//保存批次号信息
|
|
|
String batchNumber = customerOperService.saveCustomerOper(customerName,2);
|
|
|
noCarWayBills.parallelStream().forEach(noCarWayBill -> {
|
|
|
- noCarWayBill.setBatchNumEnd(batchNumber);
|
|
|
- RespR respR = noCarService.noCarWaybillEnd(noCarWayBill);
|
|
|
- if (respR.getCode() == 1){
|
|
|
- stringBuffer.append("#").append(noCarWayBill.getBillNum()).append(":").append(respR.getMsg()).append("#");
|
|
|
+ try {
|
|
|
+ noCarWayBill.setBatchNumEnd(batchNumber);
|
|
|
+ RespR respR = noCarService.noCarWaybillEnd(noCarWayBill);
|
|
|
+ if (respR.getCode() == 1){
|
|
|
+ stringBuffer.append("#").append(noCarWayBill.getBillNum()).append(":").append(respR.getMsg()).append("#");
|
|
|
+ }
|
|
|
+ }catch (Exception e){
|
|
|
+ e.printStackTrace();
|
|
|
}
|
|
|
+
|
|
|
});
|
|
|
if(!StringUtils.isEmpty(stringBuffer.toString())){
|
|
|
return new RespR(false,stringBuffer.toString());
|