|
@@ -763,9 +763,12 @@ public class OpsDailyServiceImpl implements OpsDailyService {
|
|
|
head.add(new ArrayList<>(Arrays.asList("团队情况", "境内")));
|
|
head.add(new ArrayList<>(Arrays.asList("团队情况", "境内")));
|
|
|
head.add(new ArrayList<>(Arrays.asList("团队情况", "境外")));
|
|
head.add(new ArrayList<>(Arrays.asList("团队情况", "境外")));
|
|
|
head.add(new ArrayList<>(Arrays.asList("团队情况", "境内外比")));
|
|
head.add(new ArrayList<>(Arrays.asList("团队情况", "境内外比")));
|
|
|
- // 28-29. 礼遇与折扣
|
|
|
|
|
- head.add(new ArrayList<>(Collections.singletonList("升楼层礼遇数量")));
|
|
|
|
|
- head.add(new ArrayList<>(Collections.singletonList("套房95折数量")));
|
|
|
|
|
|
|
+ // 28-29. 增值服务
|
|
|
|
|
+ head.add(new ArrayList<>(Arrays.asList("增值服务", "升楼层礼遇数量")));
|
|
|
|
|
+ head.add(new ArrayList<>(Arrays.asList("增值服务", "套房95折数量")));
|
|
|
|
|
+ // 30-31. 营销政策
|
|
|
|
|
+ head.add(new ArrayList<>(Arrays.asList("营销政策", "升楼层礼遇数量")));
|
|
|
|
|
+ head.add(new ArrayList<>(Arrays.asList("营销政策", "套房95折数量")));
|
|
|
|
|
|
|
|
return head;
|
|
return head;
|
|
|
}
|
|
}
|
|
@@ -817,10 +820,14 @@ public class OpsDailyServiceImpl implements OpsDailyService {
|
|
|
rowData.add(row.getDomesticCount() != null ? row.getDomesticCount() : 0);
|
|
rowData.add(row.getDomesticCount() != null ? row.getDomesticCount() : 0);
|
|
|
rowData.add(row.getOverseasCount() != null ? row.getOverseasCount() : 0);
|
|
rowData.add(row.getOverseasCount() != null ? row.getOverseasCount() : 0);
|
|
|
rowData.add(row.getDomesticOverseasRatio() != null ? row.getDomesticOverseasRatio() : "");
|
|
rowData.add(row.getDomesticOverseasRatio() != null ? row.getDomesticOverseasRatio() : "");
|
|
|
- // 升楼层礼遇数量 - 数字
|
|
|
|
|
|
|
+ // 升楼层礼遇数量(增值服务) - 数字
|
|
|
rowData.add(row.getUpgradeFloorCount() != null ? row.getUpgradeFloorCount() : 0);
|
|
rowData.add(row.getUpgradeFloorCount() != null ? row.getUpgradeFloorCount() : 0);
|
|
|
- // 套房95折数量 - 数字
|
|
|
|
|
|
|
+ // 套房95折数量(增值服务) - 数字
|
|
|
rowData.add(row.getSuiteDiscountCount() != null ? row.getSuiteDiscountCount() : 0);
|
|
rowData.add(row.getSuiteDiscountCount() != null ? row.getSuiteDiscountCount() : 0);
|
|
|
|
|
+ // 升楼层礼遇数量(营销政策) - 数字
|
|
|
|
|
+ rowData.add(row.getMarketingUpgradeFloorCount() != null ? row.getMarketingUpgradeFloorCount() : 0);
|
|
|
|
|
+ // 套房95折数量(营销政策) - 数字
|
|
|
|
|
+ rowData.add(row.getMarketingSuiteDiscountCount() != null ? row.getMarketingSuiteDiscountCount() : 0);
|
|
|
result.add(rowData);
|
|
result.add(rowData);
|
|
|
}
|
|
}
|
|
|
return result;
|
|
return result;
|
|
@@ -888,9 +895,12 @@ public class OpsDailyServiceImpl implements OpsDailyService {
|
|
|
row.add(totalDomestic);
|
|
row.add(totalDomestic);
|
|
|
row.add(totalOverseas);
|
|
row.add(totalOverseas);
|
|
|
row.add(calcRatio(totalDomestic, totalOverseas));
|
|
row.add(calcRatio(totalDomestic, totalOverseas));
|
|
|
- // 升楼层礼遇、套房95折 - 汇总
|
|
|
|
|
|
|
+ // 升楼层礼遇、套房95折(增值服务) - 汇总
|
|
|
row.add(sumInt(dataList, YangtzePassengerSummaryRespVO::getUpgradeFloorCount));
|
|
row.add(sumInt(dataList, YangtzePassengerSummaryRespVO::getUpgradeFloorCount));
|
|
|
row.add(sumInt(dataList, YangtzePassengerSummaryRespVO::getSuiteDiscountCount));
|
|
row.add(sumInt(dataList, YangtzePassengerSummaryRespVO::getSuiteDiscountCount));
|
|
|
|
|
+ // 升楼层礼遇、套房95折(营销政策) - 汇总
|
|
|
|
|
+ row.add(sumInt(dataList, YangtzePassengerSummaryRespVO::getMarketingUpgradeFloorCount));
|
|
|
|
|
+ row.add(sumInt(dataList, YangtzePassengerSummaryRespVO::getMarketingSuiteDiscountCount));
|
|
|
return row;
|
|
return row;
|
|
|
}
|
|
}
|
|
|
|
|
|