|
@@ -184,6 +184,26 @@ public class NoCarController {
|
|
|
}
|
|
|
}
|
|
|
/**
|
|
|
+ * 分页查询无车运单统计信息
|
|
|
+ *
|
|
|
+ * @param billInvoice
|
|
|
+ * @return 用户集合
|
|
|
+ */
|
|
|
+ @PostMapping("/findNocarInvoicesStatic")
|
|
|
+ @ApiOperation(value="分页查询无车发票统计信息", notes="分页查询无车发票统计信息")
|
|
|
+ @LoginRequired
|
|
|
+ public RespR findNocarInvoicesStatic(BillInvoice billInvoice) {
|
|
|
+ try {
|
|
|
+
|
|
|
+ RespR respR = new RespR(nocarInvoiceService.findInvoiceStatics(billInvoice));
|
|
|
+ return respR;
|
|
|
+ }catch (Exception e){
|
|
|
+ e.printStackTrace();
|
|
|
+ return new RespR(false,e.getMessage());
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
* 批量运单导入
|
|
|
*
|
|
|
* @param file 参数集
|
|
@@ -198,7 +218,7 @@ public class NoCarController {
|
|
|
params.setTitleRows(1);
|
|
|
params.setHeadRows(1);
|
|
|
params.setKeyIndex(2);
|
|
|
- List<NoCarWayBill> list = ExcelImportUtil.importExcel(file.getInputStream(), NoCarWayBill.class,params);
|
|
|
+ List<NoCarWayBill> list = ExcelImportUtil.importExcel(file.getInputStream(), NoCarWayBill.class,params) ;list.remove(0);
|
|
|
buildDate(list);
|
|
|
RespR respR = noCarBillWayService.batchBillWayStart(list,customerName);
|
|
|
return respR;
|
|
@@ -247,7 +267,7 @@ public class NoCarController {
|
|
|
params.setTitleRows(1);
|
|
|
params.setHeadRows(1);
|
|
|
params.setKeyIndex(2);
|
|
|
- List<NoCarWayBill> list = ExcelImportUtil.importExcel(file.getInputStream(), NoCarWayBill.class,params);list.remove(0);
|
|
|
+ List<NoCarWayBill> list = ExcelImportUtil.importExcel(file.getInputStream(), NoCarWayBill.class,params);
|
|
|
buildDateEnd(list);
|
|
|
RespR respR = noCarBillWayService.batchBillWayEnd(list,customerName);
|
|
|
return respR;
|