修改支付宝号,实物订单增加备注

This commit is contained in:
wuchunlei
2025-10-12 16:20:20 +08:00
parent 534975b4bb
commit b58888afe2
5 changed files with 14 additions and 12 deletions

View File

@@ -222,6 +222,7 @@ public class StatisticsController {
titleRow.createCell(7).setCellValue("订单金额");
titleRow.createCell(8).setCellValue("实物金额");
titleRow.createCell(9).setCellValue("商品名称");
titleRow.createCell(10).setCellValue("备注");
//序号默认为1
int cell = 1;
//遍历
@@ -237,6 +238,7 @@ public class StatisticsController {
row.createCell(7).setCellValue(map.get("orderPrice").toString());
row.createCell(8).setCellValue(map.get("price").toString());
row.createCell(9).setCellValue(map.get("productName").toString());
row.createCell(10).setCellValue(map.get("remark").toString());
//序号自增
cell++;
}