|
@@ -544,14 +544,20 @@ public class NoCarServiceImpl implements NoCarService{
|
|
@Transactional(isolation= Isolation.READ_COMMITTED)
|
|
@Transactional(isolation= Isolation.READ_COMMITTED)
|
|
public RespR getInvoiceByWayBillNumReal(NoCarWayBill noCarWayBill, boolean isInterface) {
|
|
public RespR getInvoiceByWayBillNumReal(NoCarWayBill noCarWayBill, boolean isInterface) {
|
|
byte isKf = 1;
|
|
byte isKf = 1;
|
|
|
|
+ /**
|
|
|
|
+ * 迁移数据
|
|
|
|
+ */
|
|
if(noCarWayBill.getInterType() == 3){
|
|
if(noCarWayBill.getInterType() == 3){
|
|
isKf = 3;
|
|
isKf = 3;
|
|
}
|
|
}
|
|
|
|
+ /**
|
|
|
|
+ * 特殊处理数据
|
|
|
|
+ */
|
|
if(noCarWayBill.getInterType() == 5){
|
|
if(noCarWayBill.getInterType() == 5){
|
|
isKf = 5;
|
|
isKf = 5;
|
|
}
|
|
}
|
|
log.info("取票啦:NoCarServiceImpl.getInvoiceByWayBillNumReal{},isCurr{}",noCarWayBill,isInterface);
|
|
log.info("取票啦:NoCarServiceImpl.getInvoiceByWayBillNumReal{},isCurr{}",noCarWayBill,isInterface);
|
|
- if(isInterface && noCarWayBill.getBillwayStatus()!=-5){
|
|
|
|
|
|
+ if(isInterface && (noCarWayBill.getBillwayStatus()!=-5 || noCarWayBill.getInterType() == 4)){
|
|
if(noCarWayBill.getBillwayStatus() == 1 || noCarWayBill.getBillwayStatus() == 2 || noCarWayBill.getBillwayStatus() == 3 || noCarWayBill.getBillwayStatus() == 4){
|
|
if(noCarWayBill.getBillwayStatus() == 1 || noCarWayBill.getBillwayStatus() == 2 || noCarWayBill.getBillwayStatus() == 3 || noCarWayBill.getBillwayStatus() == 4){
|
|
//直接返回发票信息
|
|
//直接返回发票信息
|
|
List<BillInvoice> billInvoices = billInvoiceMapper.selectByBillNum(noCarWayBill.getBillNum());
|
|
List<BillInvoice> billInvoices = billInvoiceMapper.selectByBillNum(noCarWayBill.getBillNum());
|
|
@@ -584,6 +590,10 @@ public class NoCarServiceImpl implements NoCarService{
|
|
if(noCarWayBill.getBillwayStatus()==-5){
|
|
if(noCarWayBill.getBillwayStatus()==-5){
|
|
if(isKf != 3){
|
|
if(isKf != 3){
|
|
noCarWayBill.setInterType(0);
|
|
noCarWayBill.setInterType(0);
|
|
|
|
+ }else{
|
|
|
|
+ if(tempStatus == 3){
|
|
|
|
+ noCarWayBill.setInterType(4);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
noCarWayBill.setPlateNum(responseRespR.getData().getPlateNum());
|
|
noCarWayBill.setPlateNum(responseRespR.getData().getPlateNum());
|
|
noCarWayBill.setStartTime(DateUtil.tTimeToDate(responseRespR.getData().getWaybillStartTime()));
|
|
noCarWayBill.setStartTime(DateUtil.tTimeToDate(responseRespR.getData().getWaybillStartTime()));
|
|
@@ -615,7 +625,12 @@ public class NoCarServiceImpl implements NoCarService{
|
|
billInvoice.setCustomerName(noCarWayBill.getCustomerName());
|
|
billInvoice.setCustomerName(noCarWayBill.getCustomerName());
|
|
//扣费明细入账
|
|
//扣费明细入账
|
|
NoCarCalculateInfor calculateInfor = new NoCarCalculateInfor();
|
|
NoCarCalculateInfor calculateInfor = new NoCarCalculateInfor();
|
|
- calculateInfor.setCalculateTime(DateUtil.getCurrentDateStr());
|
|
|
|
|
|
+ if(noCarWayBill.getInterType()!=4){
|
|
|
|
+ calculateInfor.setCalculateTime(DateUtil.getCurrentDateStr());
|
|
|
|
+ }else{
|
|
|
|
+ calculateInfor.setCalculateTime("2021-01-11 00:00:00");
|
|
|
|
+ }
|
|
|
|
+
|
|
calculateInfor.setCompanyNum(noCarWayBill.getCompanyNum());
|
|
calculateInfor.setCompanyNum(noCarWayBill.getCompanyNum());
|
|
calculateInfor.setCtype(1);
|
|
calculateInfor.setCtype(1);
|
|
calculateInfor.setCustomId(noCarWayBill.getCustomerName());
|
|
calculateInfor.setCustomId(noCarWayBill.getCustomerName());
|
|
@@ -731,7 +746,12 @@ public class NoCarServiceImpl implements NoCarService{
|
|
CustomerRec customerRec = null;
|
|
CustomerRec customerRec = null;
|
|
List<CustomerRec> customerRecs = customerRecMapper.selectByCompanyName(monthAccountQueryVo.getCompanyName());
|
|
List<CustomerRec> customerRecs = customerRecMapper.selectByCompanyName(monthAccountQueryVo.getCompanyName());
|
|
if(customerRecs != null && customerRecs.size()>0){
|
|
if(customerRecs != null && customerRecs.size()>0){
|
|
- customerRec = customerRecs.get(0);
|
|
|
|
|
|
+ for(CustomerRec customerRec1:customerRecs){
|
|
|
|
+ if("2".equals(customerRec1.getBussinessType())){
|
|
|
|
+ customerRec = customerRec1;
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
if(customerRec == null || customerRec.getRecStatus()!=1){
|
|
if(customerRec == null || customerRec.getRecStatus()!=1){
|