|
@@ -154,11 +154,12 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
WaybillStartRequest waybillStartRequest = buildWaybillStartRequest(noCarWayBill);
|
|
|
RespR<WaybillStartResponse> responseRespR = noCarInterface.waybillStart(waybillStartRequest);
|
|
|
if(responseRespR.getCode() == 1){
|
|
|
- return new RespR(false,"指令开始失败");
|
|
|
+ return new RespR(false,responseRespR.getMsg());
|
|
|
}else{
|
|
|
noCarWayBill.setIntfaceStartTime(DateUtil.getCurrentDateStr());
|
|
|
+ noCarWayBill.setUpdateTime(DateUtil.getCurrentDateStr());
|
|
|
noCarWayBill.setHisFlag(0);
|
|
|
- noCarWayBill.setBillwayStatus(-1);
|
|
|
+ noCarWayBill.setBillwayStatus(1);
|
|
|
noCarWaybillMapper.insert(noCarWayBill);
|
|
|
}
|
|
|
return new RespR("成功");
|
|
@@ -218,10 +219,10 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
noCarWayBill1.setDestAddr(noCarWayBill.getDestAddr());
|
|
|
noCarWayBill1.setPredictEndTime(noCarWayBill.getPredictEndTime());
|
|
|
if(DateUtil.getDistanceHours(noCarWayBill.getStartTime(),DateUtil.StringToDate(noCarWayBill.getPredictEndTime()))<-96){
|
|
|
- noCarWayBill.setBillwayStatus(-2);
|
|
|
+ noCarWayBill.setBillwayStatus(4);
|
|
|
return new RespR(false,"运单已经超时,请拆分");
|
|
|
}
|
|
|
- if(noCarWayBill1 == null || noCarWayBill1.getBillwayStatus() !=-1 || noCarWayBill.getHisFlag() ==1 ){
|
|
|
+ if(noCarWayBill1 == null || noCarWayBill1.getBillwayStatus() !=1 || noCarWayBill.getHisFlag() ==1 ){
|
|
|
return new RespR(false,"当前运单状态无法结束");
|
|
|
}
|
|
|
WaybillEndRequest waybillEndRequest = new WaybillEndRequest();
|
|
@@ -231,13 +232,14 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
waybillEndRequest.setEndTime(DateUtil.dateFormate(noCarWayBill1.getPredictEndTime()));
|
|
|
RespR<WaybillEndResponse> waybillEndResponseRespR = noCarInterface.waybillEnd(waybillEndRequest);
|
|
|
if(waybillEndResponseRespR.getCode() == 1){
|
|
|
- return new RespR(false,"运单结束指令失败");
|
|
|
+ return new RespR(false,waybillEndResponseRespR.getMsg());
|
|
|
}else if("4".equals(waybillEndResponseRespR.getData().getInfo())){
|
|
|
- noCarWayBill.setBillwayStatus(-2);
|
|
|
+ noCarWayBill.setBillwayStatus(2);
|
|
|
return new RespR(false,"运单已经超时,请拆分");
|
|
|
}
|
|
|
noCarWayBill1.setInterfaceEndTime(DateUtil.getCurrentDateStr());
|
|
|
noCarWayBill1.setBillwayStatus(0);
|
|
|
+ noCarWayBill.setUpdateTime(DateUtil.getCurrentDateStr());
|
|
|
noCarWaybillMapper.updateByBillNum(noCarWayBill1);
|
|
|
return new RespR();
|
|
|
}
|
|
@@ -255,11 +257,12 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
RespR<WaybillHistoryStartResponse> responseRespR = noCarInterface.waybillHistoryStart(waybillHistoryStartRequest);
|
|
|
|
|
|
if(responseRespR.getCode() == 1){
|
|
|
- return new RespR(false,"指令开始失败");
|
|
|
+ return new RespR(false,responseRespR.getMsg());
|
|
|
}else{
|
|
|
noCarWayBill.setIntfaceStartTime(DateUtil.getCurrentDateStr());
|
|
|
+ noCarWayBill.setUpdateTime(DateUtil.getCurrentDateStr());
|
|
|
noCarWayBill.setHisFlag(1);
|
|
|
- noCarWayBill.setBillwayStatus(-1);
|
|
|
+ noCarWayBill.setBillwayStatus(1);
|
|
|
noCarWaybillMapper.insert(noCarWayBill);
|
|
|
}
|
|
|
return null;
|
|
@@ -271,7 +274,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
waybillStartRequest.setNum(noCarWayBill.getBillNum());
|
|
|
waybillStartRequest.setPlateNum(noCarWayBill.getPlateNum());
|
|
|
waybillStartRequest.setPlateColor(Integer.parseInt(noCarWayBill.getPlateColor()));
|
|
|
- waybillStartRequest.setStartTime(DateUtil.dateToTTime(noCarWayBill.getStartTime()));
|
|
|
+ waybillStartRequest.setStartTime(DateUtil.tTimeToDate(noCarWayBill.getStartTime()));
|
|
|
waybillStartRequest.setSourceAddr(noCarWayBill.getSourceAddr());
|
|
|
waybillStartRequest.setPredictEndTime(noCarWayBill.getPredictEndTime());
|
|
|
waybillStartRequest.setFee(noCarWayBill.getFee());
|
|
@@ -291,7 +294,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
noCarWayBill1.setDestAddr(noCarWayBill.getDestAddr());
|
|
|
noCarWayBill1.setPredictEndTime(noCarWayBill.getPredictEndTime());
|
|
|
if(DateUtil.getDistanceHours(noCarWayBill.getStartTime(),DateUtil.StringToDate(noCarWayBill.getPredictEndTime()))<-96){
|
|
|
- noCarWayBill.setBillwayStatus(-2);
|
|
|
+ noCarWayBill.setBillwayStatus(4);
|
|
|
return new RespR(false,"运单已经超时,请拆分");
|
|
|
}
|
|
|
if(noCarWayBill1 == null || noCarWayBill1.getBillwayStatus() !=-1 || noCarWayBill.getHisFlag() ==0 ){
|
|
@@ -304,13 +307,14 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
waybillEndRequest.setEndTime(noCarWayBill1.getPredictEndTime());
|
|
|
RespR<WaybillEndResponse> waybillEndResponseRespR = noCarInterface.waybillEnd(waybillEndRequest);
|
|
|
if(waybillEndResponseRespR.getCode() == 1){
|
|
|
- return new RespR(false,"运单结束指令失败");
|
|
|
+ return new RespR(false,waybillEndResponseRespR.getMsg());
|
|
|
}else if("4".equals(waybillEndResponseRespR.getData().getInfo())){
|
|
|
- noCarWayBill.setBillwayStatus(-2);
|
|
|
+ noCarWayBill.setBillwayStatus(4);
|
|
|
return new RespR(false,"运单已经超时,请拆分");
|
|
|
}
|
|
|
noCarWayBill1.setInterfaceEndTime(DateUtil.getCurrentDateStr());
|
|
|
- noCarWayBill1.setBillwayStatus(0);
|
|
|
+ noCarWayBill1.setBillwayStatus(2);
|
|
|
+ noCarWayBill.setUpdateTime(DateUtil.getCurrentDateStr());
|
|
|
noCarWaybillMapper.updateByBillNum(noCarWayBill1);
|
|
|
return new RespR();
|
|
|
}
|
|
@@ -324,7 +328,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
return respR;
|
|
|
}
|
|
|
int status = noCarWayBillDb.getBillwayStatus();
|
|
|
- if(status == -1 || status == -2 || status == 2){
|
|
|
+ if(status == 1 || status == 4){
|
|
|
return new RespR(false,"运单状态无法开票");
|
|
|
}
|
|
|
if(!isCurr){
|
|
@@ -349,12 +353,8 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
}else{
|
|
|
int tempStatus = responseRespR.getData().getWaybillStatus().intValue();
|
|
|
//更改票状态
|
|
|
- noCarWayBillDb.setBillwayStatus(1);
|
|
|
- if(tempStatus ==3){
|
|
|
- noCarWayBillDb.setBillwayStatus(3);
|
|
|
- }else if(tempStatus == 4){
|
|
|
- noCarWayBillDb.setBillwayStatus(2);
|
|
|
- }
|
|
|
+ noCarWayBillDb.setBillwayStatus(tempStatus);
|
|
|
+ noCarWayBillDb.setUpdateTime(DateUtil.getCurrentDateStr());
|
|
|
noCarWaybillMapper.updateByBillNum(noCarWayBillDb);
|
|
|
if(tempStatus == 2 || tempStatus==3){
|
|
|
List<BillInvoice> billInvoices = billInvoiceMapper.selectByBillNum(noCarWayBill.getBillNum());
|
|
@@ -365,6 +365,9 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
List<InvoiceProcessingListModel> invoiceProcessingListModels = responseRespR.getData().getResult();
|
|
|
invoiceProcessingListModels.stream().forEach(invoiceProcessingListModel -> {
|
|
|
BillInvoice billInvoice = buildFromInvoiceProcessingListModel(invoiceProcessingListModel);
|
|
|
+ billInvoice.setCompanyName(noCarWayBillDb.getCompanyName());
|
|
|
+ billInvoice.setCompanyNum(noCarWayBillDb.getCompanyNum());
|
|
|
+ billInvoice.setCustomerName(noCarWayBillDb.getCustomerName());
|
|
|
billInvoiceMapper.insert(billInvoice);
|
|
|
//扣费明细入账
|
|
|
NoCarCalculateInfor calculateInfor = new NoCarCalculateInfor();
|
|
@@ -373,7 +376,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
calculateInfor.setCtype(1);
|
|
|
calculateInfor.setCustomId(noCarWayBill.getCustomerName());
|
|
|
/**
|
|
|
- * 这个设置为动态的
|
|
|
+ * 这个设置为动态的 TODO
|
|
|
*/
|
|
|
calculateInfor.setFee(1500L);
|
|
|
calculateInfor.setTradeId(billInvoice.getTransactionId());
|
|
@@ -384,8 +387,8 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
|
|
|
});
|
|
|
List<BillInvoice> billInvoices1 = billInvoiceMapper.selectByBillNum(noCarWayBill.getBillNum());
|
|
|
- if(billInvoices!=null && billInvoices.size()>0){
|
|
|
- return new RespR(billInvoices);
|
|
|
+ if(billInvoices1!=null && billInvoices1.size()>0){
|
|
|
+ return new RespR(billInvoices1);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -396,32 +399,25 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
public BillInvoice buildFromInvoiceProcessingListModel(InvoiceProcessingListModel invoiceProcessingListModel){
|
|
|
BillInvoice billInvoice = new BillInvoice();
|
|
|
BeanUtils.copyProperties(invoiceProcessingListModel,billInvoice);
|
|
|
+ //设置时间
|
|
|
+ billInvoice.setExTime(DateUtil.tTimeToDate(billInvoice.getExTime()));
|
|
|
+ billInvoice.setInvoiceMakeTime(DateUtil.tTimeToDate(billInvoice.getInvoiceMakeTime()));
|
|
|
+ billInvoice.setWaybillEndTime(DateUtil.tTimeToDate(billInvoice.getWaybillEndTime()));
|
|
|
+ billInvoice.setTradeMatchTime(DateUtil.getCurrentDateStr());
|
|
|
+ billInvoice.setWaybillStartTime(DateUtil.tTimeToDate(billInvoice.getWaybillStartTime()));
|
|
|
return billInvoice;
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
public RespR hCInvoiceQuery(HCInvoiceQueryVo hcInvoiceQueryVo) {
|
|
|
-
|
|
|
- Customer customer = customerMapper.selectByCustomerName(hcInvoiceQueryVo.getCustomerName());
|
|
|
- if(customer==null || customer.getAccstatus() ==1){
|
|
|
- return new RespR(false,"客户不存在或者已经停用");
|
|
|
- }
|
|
|
- CustomerRec customerRecParm = new CustomerRec();
|
|
|
- customerRecParm.setCompanyName(hcInvoiceQueryVo.getCompanyName());
|
|
|
- customerRecParm.setCustomerName(hcInvoiceQueryVo.getCustomerName());
|
|
|
- CustomerRec customerRec = customerRecMapper.selectByCustomerNameAndCompany(customerRecParm);
|
|
|
- if(customerRec == null || customerRec.getRecStatus()!=1){
|
|
|
- return new RespR(false,"客户未备案或备案失败");
|
|
|
- }
|
|
|
WaybillInvoiceRedQueryRequest redQueryRequest = new WaybillInvoiceRedQueryRequest();
|
|
|
- redQueryRequest.setCompanyNum(customerRec.getCompanyNum());
|
|
|
+ redQueryRequest.setCompanyNum(hcInvoiceQueryVo.getCompanyNum());
|
|
|
redQueryRequest.setMonth(hcInvoiceQueryVo.getMonth());
|
|
|
RespR<WaybillInvoiceRedQueryResponse> respR = noCarInterface.waybillInvoiceRedQuery(redQueryRequest);
|
|
|
if(respR.getCode() == 1){
|
|
|
return new RespR(false,respR.getMsg());
|
|
|
}
|
|
|
return new RespR(respR.getData().getResult());
|
|
|
-
|
|
|
}
|
|
|
|
|
|
@Override
|
|
@@ -432,7 +428,7 @@ public class NoCarServiceImpl implements NoCarService{
|
|
|
}
|
|
|
CustomerRec customerRecParm = new CustomerRec();
|
|
|
customerRecParm.setCompanyName(monthAccountQueryVo.getComPanyName());
|
|
|
- customerRecParm.setCustomerName(monthAccountQueryVo.getComPanyName());
|
|
|
+ customerRecParm.setCustomerName(monthAccountQueryVo.getCustomeName());
|
|
|
CustomerRec customerRec = customerRecMapper.selectByCustomerNameAndCompany(customerRecParm);
|
|
|
if(customerRec == null || customerRec.getRecStatus()==1){
|
|
|
return new RespR(false,"客户未备案或备案失败");
|