فهرست منبع

运营绩效 导出添加激励

zhaoxian 2 سال پیش
والد
کامیت
7d28998d15

+ 6 - 1
jeecg-boot-module-system/src/main/java/cn/com/ctop/kuaishou/modules/report/controller/KuaishouOperationReportController.java

@@ -290,6 +290,9 @@ public class KuaishouOperationReportController {
                         temp.add(data.getString("1FWCharge"));
                         temp.add(data.getString("2FWCharge"));
                         temp.add(data.getString("3FWCharge"));
+                        temp.add(data.getString("1JLCharge"));
+                        temp.add(data.getString("2JLCharge"));
+                        temp.add(data.getString("3JLCharge"));
                         temp.add(data.getString("quitTime"));
                         excelList.add(temp);
                     });
@@ -301,7 +304,9 @@ public class KuaishouOperationReportController {
                 String[] titles = {"运营", "岗位", "晋升时间",
                         monthInt.get(0) + "月总消耗", monthInt.get(1) + "月总消耗", monthInt.get(2) + "月总消耗",
                         monthInt.get(0) + "月框返消耗", monthInt.get(1) + "月框返消耗", monthInt.get(2) + "月框返消耗",
-                        monthInt.get(0) + "月服务消耗", monthInt.get(1) + "月服务消耗", monthInt.get(2) + "月服务消耗", "离职时间"};
+                        monthInt.get(0) + "月服务消耗", monthInt.get(1) + "月服务消耗", monthInt.get(2) + "月服务消耗",
+                        monthInt.get(0) + "月激励消耗", monthInt.get(1) + "月激励消耗", monthInt.get(2) + "月激励消耗",
+                        "离职时间"};
                 eeu.exportExcelForAttendance(workbook, 0, "运营数据", titles, excelList);
                 HttpUtils.setResponseHeader(response, "clockIn.xlsx");
                 workbook.write(os);