Browse Source

开票导出文件

git-svn-id: svn+ssh://10.10.101.21/source/platform/platform-b2b@10805 f3bf4e98-0cf0-11e4-a00c-a99a8b9d557d
huangct 8 years ago
parent
commit
4420816321

+ 4 - 4
src/main/java/com/uas/platform/b2b/controller/SaleApBillOutController.java

@@ -380,7 +380,7 @@ public class SaleApBillOutController {
 		modelAndView.addObject("state", "全部");
 		modelAndView.addObject("data",
 				purchaseApBillOutService.findAllByPageInfo(pageInfo, filter.getKeyword(), filter).getContent());
-		modelAndView.setView(new JxlsExcelView("classpath:jxls-tpl/fa/saleApBillOut", "开票单列表_全部"));
+		modelAndView.setView(new JxlsExcelView("classpath:jxls-tpl/fa/faApBillOut", "开票单列表_全部"));
 		logger.log("开票单", "导出Excel列表", "导出全部Excel列表");
 		return modelAndView;
 	}
@@ -403,7 +403,7 @@ public class SaleApBillOutController {
 		modelAndView.addObject("state", "已开票");
 		modelAndView.addObject("data",
 				purchaseApBillOutService.findDoneByPageInfo(pageInfo, filter.getKeyword(), filter).getContent());
-		modelAndView.setView(new JxlsExcelView("classpath:jxls-tpl/fa/saleApBillOut", "开票单列表_已开票"));
+		modelAndView.setView(new JxlsExcelView("classpath:jxls-tpl/fa/faApBillOut", "开票单列表_已开票"));
 		logger.log("开票单", "导出Excel列表", "导出已开票Excel列表");
 		return modelAndView;
 	}
@@ -426,7 +426,7 @@ public class SaleApBillOutController {
 		modelAndView.addObject("state", "未开票");
 		modelAndView.addObject("data",
 				purchaseApBillOutService.findTodoByPageInfo(pageInfo, filter.getKeyword(), filter).getContent());
-		modelAndView.setView(new JxlsExcelView("classpath:jxls-tpl/fa/saleApBillOut", "开票单列表_未开票"));
+		modelAndView.setView(new JxlsExcelView("classpath:jxls-tpl/fa/faApBillOut", "开票单列表_未开票"));
 		logger.log("开票单", "导出Excel列表", "导出未开票Excel列表");
 		return modelAndView;
 	}
@@ -449,7 +449,7 @@ public class SaleApBillOutController {
 		modelAndView.addObject("state", "已作废");
 		modelAndView.addObject("data",
 				purchaseApBillOutService.findEndByPageInfo(pageInfo, filter.getKeyword(), filter).getContent());
-		modelAndView.setView(new JxlsExcelView("classpath:jxls-tpl/fa/saleApBillOut", "开票单列表_已作废"));
+		modelAndView.setView(new JxlsExcelView("classpath:jxls-tpl/fa/faApBillOut", "开票单列表_已作废"));
 		logger.log("开票单", "导出Excel列表", "导出已作废Excel列表");
 		return modelAndView;
 	}

BIN
src/main/resources/jxls-tpl/fa/saleApBillOut.xls → src/main/resources/jxls-tpl/fa/faApBillOut.xls