Commit 4f4bb6cc823ec7300ca2eef12adfcf5e2d24fb32
1 parent
e3cf3630
提交
Showing
1 changed file
with
5 additions
and
5 deletions
src/main/java/com/zteits/irain/portal/web/parkinglotcloudplatform/datastatistic/MonthBillManagementController.java
... | ... | @@ -279,8 +279,8 @@ public class MonthBillManagementController extends BizController { |
279 | 279 | SimpleDateFormat format2 = new SimpleDateFormat("yyyy-MM-dd"); |
280 | 280 | String[] title = new String[] { "流水号", "时间", "车主车牌号", "进场时间", "出场时间", "停车时长", "收费规则", "支付方式", "应收金额", "优惠券", |
281 | 281 | "红包", "实收金额", "共计" }; |
282 | - String sheetName = "月账单"; | |
283 | - String fileName = "月账单管理" + format2.format(new Date()); | |
282 | + String sheetName = "账单"; | |
283 | + String fileName = "账单管理" + format2.format(new Date()); | |
284 | 284 | |
285 | 285 | // 1.创建excel信息 |
286 | 286 | XSSFSheet workSheet = ExcelUtil.createExcel(sheetName); |
... | ... | @@ -378,8 +378,8 @@ public class MonthBillManagementController extends BizController { |
378 | 378 | |
379 | 379 | SimpleDateFormat format2 = new SimpleDateFormat("yyyy-MM-dd"); |
380 | 380 | String[] title = new String[] { "交易单号", "交易时间", "种类", "卡名称", "车牌号", "支付金额", "有效期" }; |
381 | - String sheetName = "月账单"; | |
382 | - String fileName = "月账单管理" + format2.format(new Date()); | |
381 | + String sheetName = "账单"; | |
382 | + String fileName = "账单管理" + format2.format(new Date()); | |
383 | 383 | |
384 | 384 | // 1.创建excel信息 |
385 | 385 | XSSFSheet workSheet = ExcelUtil.createExcel(sheetName); |
... | ... | @@ -489,7 +489,7 @@ public class MonthBillManagementController extends BizController { |
489 | 489 | SimpleDateFormat format2 = new SimpleDateFormat("yyyy-MM-dd"); |
490 | 490 | String[] title = new String[] { "停车场名称", "现金", "微信", "支付宝", "合计"}; |
491 | 491 | String[] sheetName = new String[]{"临停收费","年卡月卡收费"}; |
492 | - String fileName = "月账单管理" + format2.format(new Date()); | |
492 | + String fileName = "账单管理" + format2.format(new Date()); | |
493 | 493 | |
494 | 494 | // 1.创建excel信息,多个sheet页 |
495 | 495 | XSSFWorkbook workbook = new XSSFWorkbook(); | ... | ... |