修改支付宝号,实物订单增加备注
This commit is contained in:
@@ -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++;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user