|
|
|
@ -347,6 +347,7 @@ public class PortalPerformanceInfoCmd {
|
|
|
|
|
" and DELETE_TYPE = '0'\n" +
|
|
|
|
|
" order by name desc\n" +
|
|
|
|
|
") w limit 2";
|
|
|
|
|
|
|
|
|
|
log.error("sql4:" + sql);
|
|
|
|
|
|
|
|
|
|
List<String> strlist3 = new ArrayList<>(100);
|
|
|
|
@ -363,7 +364,7 @@ public class PortalPerformanceInfoCmd {
|
|
|
|
|
Map<String, Object> recordMap3 = recordList3.get(k);
|
|
|
|
|
|
|
|
|
|
String data_row = String.valueOf(recordMap3.get("data_row"));
|
|
|
|
|
|
|
|
|
|
log.error("data_row:" + data_row);
|
|
|
|
|
Map<String, Object> indicatorMap = new HashMap<String, Object>();
|
|
|
|
|
|
|
|
|
|
sql = " select name,data_row,property\n" +
|
|
|
|
@ -371,8 +372,8 @@ public class PortalPerformanceInfoCmd {
|
|
|
|
|
" where kpi_details in( " +
|
|
|
|
|
" select id\n" +
|
|
|
|
|
" from hr_kpi_details " +
|
|
|
|
|
" where KPI_SCHEME=?\n" +
|
|
|
|
|
" and MODULE='kpiSchemeSetting'\n" +
|
|
|
|
|
" where kpi_scheme=?\n" +
|
|
|
|
|
" and module='kpiSchemeSetting'\n" +
|
|
|
|
|
" and TENANT_KEY=?\n" +
|
|
|
|
|
" and DELETE_TYPE = 0" +
|
|
|
|
|
" )\n" +
|
|
|
|
@ -380,7 +381,7 @@ public class PortalPerformanceInfoCmd {
|
|
|
|
|
" and TENANT_KEY = ?\n" +
|
|
|
|
|
" and DELETE_TYPE = '0'\n" +
|
|
|
|
|
" and property in('weight', 'describe', 'type')\n" +
|
|
|
|
|
" and data_row in(?)";
|
|
|
|
|
" and data_row = ? ";
|
|
|
|
|
|
|
|
|
|
log.error("sql5:" + sql);
|
|
|
|
|
|
|
|
|
@ -412,7 +413,6 @@ public class PortalPerformanceInfoCmd {
|
|
|
|
|
indicatorMap.put("indicator_type", name);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
indicatorList.add(indicatorMap);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|