|
@@ -19,6 +19,7 @@ import com.jkcredit.invoice.service.lowerService.NoCarService;
|
|
|
import com.jkcredit.invoice.service.lowerService.SelfCarServiceL;
|
|
|
import com.jkcredit.invoice.service.lowerService.vo.*;
|
|
|
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;
|
|
@@ -38,6 +39,8 @@ public class NoCarInterServiceImpl implements NoCarInterService {
|
|
|
|
|
|
@Autowired
|
|
|
private NoCarService noCarService;
|
|
|
+ @Autowired
|
|
|
+ NoCarBillWayImportService noCarWaybillMapperImprt;
|
|
|
|
|
|
@Autowired
|
|
|
CustomerCarRecMapper customerCarRecMapper;
|
|
@@ -96,11 +99,13 @@ public class NoCarInterServiceImpl implements NoCarInterService {
|
|
|
customerCarRec.setCustomerName(appKey);
|
|
|
if(StringUtils.isEmpty(companyName)){
|
|
|
String companyNum = paramService.getParamsByParamName("REQUEST_COMPANY_NUM").getParamValue();
|
|
|
+ String appKeyDemo = paramService.getParamsByParamName("REQUEST_COMPANY_NAME").getParamValue();
|
|
|
CustomerRec customerRec = new CustomerRec();
|
|
|
- customerRec.setCustomerName(appKey);
|
|
|
+ customerRec.setCustomerName(appKeyDemo);
|
|
|
customerRec.setCompanyNum(companyNum);
|
|
|
CustomerRec customerRec1 = customerRecMapper.selectByCustomerNameAndCompanyNum(customerRec);
|
|
|
customerCarRec.setCompanyName(customerRec1.getCompanyName());
|
|
|
+ customerCarRec.setCustomerName(appKeyDemo);
|
|
|
}else {
|
|
|
customerCarRec.setCompanyName(companyName);
|
|
|
}
|
|
@@ -108,7 +113,9 @@ public class NoCarInterServiceImpl implements NoCarInterService {
|
|
|
customerCarRec.setCarColor(plateColor);
|
|
|
customerCarRec.setCarNum(plateNumber);
|
|
|
customerCarRec.setInterType(0);
|
|
|
- customerCarRec.setServiceOperation(1);//默认运营车辆
|
|
|
+ if("0".equals(customerCarRec.getCarColor())){
|
|
|
+ customerCarRec.setServiceOperation(1);//默认运营车辆
|
|
|
+ }
|
|
|
|
|
|
customerCarRecList.add(customerCarRec);
|
|
|
|
|
@@ -275,8 +282,11 @@ public class NoCarInterServiceImpl implements NoCarInterService {
|
|
|
noCarWayBill.setFee(fee.longValue());
|
|
|
noCarWayBill.setTitleType(titleType);
|
|
|
noCarWayBill.setTaxplayerCode(taxplayerCode);
|
|
|
+ NoCarWayBill noCarWayBillDb = noCarWaybillMapper.selectByBillNum(noCarWayBill.getBillNum());
|
|
|
|
|
|
-
|
|
|
+ if(noCarWayBillDb!=null && (noCarWayBillDb.getBillwayStatus() == 1||noCarWayBillDb.getBillwayStatus() == 2 || noCarWayBillDb.getBillwayStatus() == 3 || noCarWayBillDb.getBillwayStatus() == 4)) {
|
|
|
+ noCarWaybillMapperImprt.updateBillway(-2, "失败,运单号重复", noCarWayBill);
|
|
|
+ }
|
|
|
RespR rs = noCarService.noCarWaybillStart(noCarWayBill);
|
|
|
long costtimeend = System.currentTimeMillis();
|
|
|
log.info("[-NoCarInterServiceImpl.noCarBillStart-] result is "
|
|
@@ -444,7 +454,13 @@ public class NoCarInterServiceImpl implements NoCarInterService {
|
|
|
noCarWayBill.setTaxplayerCode(taxplayerCode);
|
|
|
|
|
|
|
|
|
- RespR rs = noCarService.noCarHisWaybillStart(noCarWayBill);
|
|
|
+ NoCarWayBill noCarWayBillDb = noCarWaybillMapper.selectByBillNum(noCarWayBill.getBillNum());
|
|
|
+
|
|
|
+ if(noCarWayBillDb!=null && (noCarWayBillDb.getBillwayStatus() == 1||noCarWayBillDb.getBillwayStatus() == 2 || noCarWayBillDb.getBillwayStatus() == 3 || noCarWayBillDb.getBillwayStatus() == 4)) {
|
|
|
+ noCarWaybillMapperImprt.updateBillway(-2, "失败,运单号重复", noCarWayBill);
|
|
|
+ }
|
|
|
+
|
|
|
+ RespR rs = noCarService.noCarHisWaybillStart(noCarWayBill);
|
|
|
long costtimeend = System.currentTimeMillis();
|
|
|
log.info("[-NoCarInterServiceImpl.noCarHisWaybillStart-] result is "
|
|
|
+ rs.toString() + ", request is " + data + " ,costtime="
|