|
@@ -288,7 +288,10 @@ public class NoCarController {
|
|
|
String [] billNumArr = billInvoice.getWaybillNum().split(",");
|
|
|
billInvoice.setWaybillNums(Arrays.asList(billNumArr));
|
|
|
}
|
|
|
-
|
|
|
+ if(!StringUtils.isEmpty(billInvoice.getPlateNum())){
|
|
|
+ String [] plateNums = billInvoice.getPlateNum().split(",");
|
|
|
+ billInvoice.setPlateNums(Arrays.asList(plateNums));
|
|
|
+ }
|
|
|
if(!StringUtils.isEmpty(billInvoice.getInvoiceCode()) && billInvoice.getInvoiceCode().indexOf(',')>0){
|
|
|
String [] invoiceCodeArr = billInvoice.getInvoiceCode().split(",");
|
|
|
String [] invoiceNumArr=null;
|