|
@@ -209,7 +209,30 @@ public class NoCarController {
|
|
|
return new RespR(false,e.getMessage());
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
/**
|
|
|
+ * 批量查询无车发票信息
|
|
|
+ *
|
|
|
+ * @param file 参数集
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @PostMapping("/batchImportNocarInvoices")
|
|
|
+ @ApiOperation(value="批量查询无车发票信息", notes="批量查询无车发票信息")
|
|
|
+ @LoginRequired
|
|
|
+ public RespR batchImportNocarInvoices(@RequestParam("file") MultipartFile file) {
|
|
|
+ try {
|
|
|
+ ImportParams params = new ImportParams();
|
|
|
+ params.setTitleRows(1);
|
|
|
+ params.setHeadRows(1);
|
|
|
+ params.setKeyIndex(2);
|
|
|
+ List<BillInvoice> list = ExcelImportUtil.importExcel(file.getInputStream(), BillInvoice.class,params) ;
|
|
|
+ RespR respR = nocarInvoiceService.findImportNocarInvoices(list);
|
|
|
+ return respR;
|
|
|
+ }catch (Exception e){
|
|
|
+ e.printStackTrace();
|
|
|
+ return new RespR(false,e.getMessage());
|
|
|
+ }
|
|
|
+ } /**
|
|
|
* 分页查询无车运单统计信息
|
|
|
*
|
|
|
* @param billInvoice
|
|
@@ -366,11 +389,13 @@ public class NoCarController {
|
|
|
fileName = "运单结束模板.xlsx";
|
|
|
}else if("3".equals(fileName)){
|
|
|
fileName = "历史运单模板.xlsx";
|
|
|
+ }else if("4".equals(fileName)){
|
|
|
+ fileName = "无车发票查询模板.xlsx";
|
|
|
}
|
|
|
OutputStream outputStream = null;
|
|
|
InputStream inputStream = null;
|
|
|
try {
|
|
|
- File file = new File("/home/app/excel/"+fileName);
|
|
|
+ File file = new File("D:\\sys_invoice_tools\\"+fileName);
|
|
|
inputStream = new FileInputStream(file);
|
|
|
response.setHeader("Content-Disposition", "attachment;filename="+ URLEncoder.encode(fileName, "UTF-8"));
|
|
|
outputStream = response.getOutputStream();
|