|
@@ -320,23 +320,23 @@ public class ReportSettlementServiceImpl implements IReportSettlementService {
|
|
|
|
|
|
//5:创建第2行的单元格
|
|
|
HSSFCell cell = row.createCell(0); //第一个单元格
|
|
|
- cell.setCellValue(" 日期 "); //设定值
|
|
|
+ cell.setCellValue("日期"); //设定值
|
|
|
cell.setCellStyle(style); //内容居中
|
|
|
|
|
|
cell = row.createCell(1);
|
|
|
- cell.setCellValue(" 账户快手ID ");
|
|
|
+ cell.setCellValue("账户快手ID");
|
|
|
cell.setCellStyle(style);
|
|
|
|
|
|
cell = row.createCell(2);
|
|
|
- cell.setCellValue(" 广告主账户ID ");
|
|
|
+ cell.setCellValue("广告主账户ID");
|
|
|
cell.setCellStyle(style);
|
|
|
|
|
|
cell = row.createCell(3);
|
|
|
- cell.setCellValue(" 日总花费 ");
|
|
|
+ cell.setCellValue("日总花费");
|
|
|
cell.setCellStyle(style);
|
|
|
|
|
|
cell = row.createCell(4);
|
|
|
- cell.setCellValue(" 充值花费 ");
|
|
|
+ cell.setCellValue("充值花费");
|
|
|
cell.setCellStyle(style);
|
|
|
|
|
|
cell = row.createCell(5);
|
|
@@ -372,8 +372,6 @@ public class ReportSettlementServiceImpl implements IReportSettlementService {
|
|
|
cell.setCellStyle(style);
|
|
|
|
|
|
|
|
|
-
|
|
|
-
|
|
|
for (int i = 0; i < settlementList.size(); i++) {
|
|
|
SettlementReportKuaiShouVo vo = settlementList.get(i);
|
|
|
//创建行 (表头占0-1行 所以 从 2开始)
|