vip日志表添加price字段,保存初始付款金额

This commit is contained in:
wuchunlei
2025-10-12 13:27:56 +08:00
parent dba68189ca
commit ef935c98d1
5 changed files with 60 additions and 44 deletions

View File

@@ -281,15 +281,16 @@ public class StatisticsController {
titleRow.createCell(6).setCellValue("订单号");
titleRow.createCell(7).setCellValue("支付方式");
titleRow.createCell(8).setCellValue("备注");
titleRow.createCell(9).setCellValue("金额");
titleRow.createCell(10).setCellValue("总天数");
titleRow.createCell(11).setCellValue("每日摊销");
titleRow.createCell(12).setCellValue("已摊销天数");
titleRow.createCell(13).setCellValue("当月摊销天数");
titleRow.createCell(14).setCellValue("摊销天数");
titleRow.createCell(15).setCellValue("摊销金额");
titleRow.createCell(16).setCellValue("当月摊销金额");
titleRow.createCell(17).setCellValue("剩余摊销金额");
titleRow.createCell(9).setCellValue("缴费金额");
titleRow.createCell(10).setCellValue("摊销计算金额");
titleRow.createCell(11).setCellValue("总天数");
titleRow.createCell(12).setCellValue("每日摊销");
titleRow.createCell(13).setCellValue("摊销天数");
titleRow.createCell(14).setCellValue("当月摊销天数");
titleRow.createCell(15).setCellValue("摊销天数");
titleRow.createCell(16).setCellValue("摊销金额");
titleRow.createCell(17).setCellValue("当月摊销金额");
titleRow.createCell(18).setCellValue("剩余摊销金额");
//序号默认为1
int cell = 1;
//遍历
@@ -304,15 +305,16 @@ public class StatisticsController {
row.createCell(6).setCellValue(map.get("orderSn").toString());
row.createCell(7).setCellValue(map.get("payType").toString());
row.createCell(8).setCellValue(map.get("remark").toString());
row.createCell(9).setCellValue(map.get("fee").toString());
row.createCell(10).setCellValue(map.get("totalDays").toString());
row.createCell(11).setCellValue(map.get("dayAmount").toString());
row.createCell(12).setCellValue(map.get("alreadyDays").toString());
row.createCell(13).setCellValue(map.get("currentDays").toString());
row.createCell(14).setCellValue(map.get("notyetDays").toString());
row.createCell(15).setCellValue(map.get("alreadyTanxiao").toString());
row.createCell(16).setCellValue(map.get("currentTanxiao").toString());
row.createCell(17).setCellValue(map.get("notyetTanxiao").toString());
row.createCell(9).setCellValue(map.get("price").toString());
row.createCell(10).setCellValue(map.get("fee").toString());
row.createCell(11).setCellValue(map.get("totalDays").toString());
row.createCell(12).setCellValue(map.get("dayAmount").toString());
row.createCell(13).setCellValue(map.get("alreadyDays").toString());
row.createCell(14).setCellValue(map.get("currentDays").toString());
row.createCell(15).setCellValue(map.get("notyetDays").toString());
row.createCell(16).setCellValue(map.get("alreadyTanxiao").toString());
row.createCell(17).setCellValue(map.get("currentTanxiao").toString());
row.createCell(18).setCellValue(map.get("notyetTanxiao").toString());
//序号自增
cell++;
}