|
@@ -33,6 +33,7 @@ import java.io.*;
|
|
import java.net.URLEncoder;
|
|
import java.net.URLEncoder;
|
|
import java.text.DateFormat;
|
|
import java.text.DateFormat;
|
|
import java.text.SimpleDateFormat;
|
|
import java.text.SimpleDateFormat;
|
|
|
|
+import java.util.Arrays;
|
|
import java.util.List;
|
|
import java.util.List;
|
|
@Api(tags = "无车操作")
|
|
@Api(tags = "无车操作")
|
|
@RestController
|
|
@RestController
|
|
@@ -141,7 +142,9 @@ public class NoCarController {
|
|
@LoginRequired
|
|
@LoginRequired
|
|
public RespR findBillWay(Page page, NoCarWayBill noCarWayBill) {
|
|
public RespR findBillWay(Page page, NoCarWayBill noCarWayBill) {
|
|
try {
|
|
try {
|
|
|
|
+
|
|
setTimeDue(noCarWayBill);
|
|
setTimeDue(noCarWayBill);
|
|
|
|
+ setBillNums(noCarWayBill);
|
|
RespR respR = new RespR(noCarBillWayService.findByPageAndWayBill(page, noCarWayBill));
|
|
RespR respR = new RespR(noCarBillWayService.findByPageAndWayBill(page, noCarWayBill));
|
|
return respR;
|
|
return respR;
|
|
}catch (Exception e){
|
|
}catch (Exception e){
|
|
@@ -150,7 +153,13 @@ public class NoCarController {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
|
|
+ public void setBillNums(NoCarWayBill noCarWayBill){
|
|
|
|
+ String billNums = noCarWayBill.getBillNum();
|
|
|
|
+ if(!StringUtils.isEmpty(billNums)){
|
|
|
|
+ String [] billNumArr = billNums.split(",");
|
|
|
|
+ noCarWayBill.setBillNums(Arrays.asList(billNumArr));
|
|
|
|
+ }
|
|
|
|
+ }
|
|
/**
|
|
/**
|
|
* 分页查询客户运单信息
|
|
* 分页查询客户运单信息
|
|
*
|
|
*
|
|
@@ -244,16 +253,7 @@ public class NoCarController {
|
|
@LoginRequired
|
|
@LoginRequired
|
|
public RespR findNocarInvoices(Page page, BillInvoice billInvoice) {
|
|
public RespR findNocarInvoices(Page page, BillInvoice billInvoice) {
|
|
try {
|
|
try {
|
|
- if(!StringUtils.isEmpty(billInvoice.getInvoiceMakeTime()) && !"null".equals(billInvoice.getInvoiceMakeTime())){
|
|
|
|
- String [] res =billInvoice.getInvoiceMakeTime().split(",");
|
|
|
|
- billInvoice.setInvoiceMakeStart(res[0]);
|
|
|
|
- billInvoice.setInvoiceMakeEnd(res[1].replace("00:00:00","23:59:59"));
|
|
|
|
- }
|
|
|
|
- if(!StringUtils.isEmpty(billInvoice.getCalculateTime()) && !"null".equals(billInvoice.getCalculateTime())){
|
|
|
|
- String [] res =billInvoice.getCalculateTime().split(",");
|
|
|
|
- billInvoice.setCalculateTimeStart(res[0]);
|
|
|
|
- billInvoice.setCalculateTimeEnd(res[1].replace("00:00:00","23:59:59"));
|
|
|
|
- }
|
|
|
|
|
|
+ setParams(billInvoice);
|
|
RespR respR = new RespR(nocarInvoiceService.findByPageAndInvoice(page, billInvoice));
|
|
RespR respR = new RespR(nocarInvoiceService.findByPageAndInvoice(page, billInvoice));
|
|
return respR;
|
|
return respR;
|
|
}catch (Exception e){
|
|
}catch (Exception e){
|
|
@@ -261,7 +261,32 @@ public class NoCarController {
|
|
return new RespR(false,e.getMessage());
|
|
return new RespR(false,e.getMessage());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ private void setParams(BillInvoice billInvoice){
|
|
|
|
+ if(!StringUtils.isEmpty(billInvoice.getInvoiceMakeTime()) && !"null".equals(billInvoice.getInvoiceMakeTime())){
|
|
|
|
+ String [] res =billInvoice.getInvoiceMakeTime().split(",");
|
|
|
|
+ billInvoice.setInvoiceMakeStart(res[0]);
|
|
|
|
+ billInvoice.setInvoiceMakeEnd(res[1].replace("00:00:00","23:59:59"));
|
|
|
|
+ }
|
|
|
|
+ if(!StringUtils.isEmpty(billInvoice.getCalculateTime()) && !"null".equals(billInvoice.getCalculateTime())){
|
|
|
|
+ String [] res =billInvoice.getCalculateTime().split(",");
|
|
|
|
+ billInvoice.setCalculateTimeStart(res[0]);
|
|
|
|
+ billInvoice.setCalculateTimeEnd(res[1].replace("00:00:00","23:59:59"));
|
|
|
|
+ }
|
|
|
|
+ if(!StringUtils.isEmpty(billInvoice.getWaybillNum())){
|
|
|
|
+ String [] billNumArr = billInvoice.getWaybillNum().split(",");
|
|
|
|
+ billInvoice.setWaybillNums(Arrays.asList(billNumArr));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if(!StringUtils.isEmpty(billInvoice.getInvoiceCode())){
|
|
|
|
+ String [] invoiceCodeArr = billInvoice.getInvoiceCode().split(",");
|
|
|
|
+ billInvoice.setInvoiceCodes(Arrays.asList(invoiceCodeArr));
|
|
|
|
+ }
|
|
|
|
|
|
|
|
+ if(!StringUtils.isEmpty(billInvoice.getInvoiceNum())){
|
|
|
|
+ String [] invoiceNumArr = billInvoice.getInvoiceNum().split(",");
|
|
|
|
+ billInvoice.setInvoiceNums(Arrays.asList(invoiceNumArr));
|
|
|
|
+ }
|
|
|
|
+ }
|
|
/**
|
|
/**
|
|
* 批量查询无车发票信息
|
|
* 批量查询无车发票信息
|
|
*
|
|
*
|