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