|
@@ -174,9 +174,7 @@ public class ReportServiceV3 {
|
|
|
list.sort((o1, o2) -> Double.compare((double) o2.get(0), (double) o1.get(0)));
|
|
|
stringBuffer.append(list.get(0).get(1).toString()).append("、")
|
|
|
.append(list.get(1).get(1).toString()).append("、")
|
|
|
- .append(list.get(2).get(1).toString()).append("</font>;与")
|
|
|
- .append(sheet.getRow(1).getCell(7).getStringCellValue()).append("比<font color=#FF0000>")
|
|
|
- .append(sheet.getRow(2).getCell(6).getStringCellValue()).append("</font>时长增幅较大。");
|
|
|
+ .append(list.get(2).get(1).toString()).append("</font>。");
|
|
|
}
|
|
|
TextUtil.writeToFileWithUTF8(stringBuffer.toString(), Paths.get(file.getParent(), "总结.txt").toString());
|
|
|
} catch (IOException e) {
|
|
@@ -536,10 +534,10 @@ public class ReportServiceV3 {
|
|
|
cell.setCellValue(String.format("%s月", monthOfYear));
|
|
|
cell.setCellStyle(workbookWrapper.getCellStyle3());
|
|
|
cell = row.createCell(9);
|
|
|
- cell.setCellValue("达标值");
|
|
|
+ cell.setCellValue("目标值");
|
|
|
cell.setCellStyle(workbookWrapper.getCellStyle3());
|
|
|
cell = row.createCell(10);
|
|
|
- cell.setCellValue("涨幅");
|
|
|
+ cell.setCellValue("与目标值差距");
|
|
|
cell.setCellStyle(workbookWrapper.getCellStyle3());
|
|
|
// 写入超时工单情况
|
|
|
List<List<Object>> sheet3Data1 = workFlowService.getTimeoutCountInfo(day);
|
|
@@ -582,7 +580,7 @@ public class ReportServiceV3 {
|
|
|
cell = row.createCell(8);
|
|
|
cell.setCellValue((double) list.get(2));
|
|
|
cell.setCellStyle(workbookWrapper.getCellStyle5());
|
|
|
- // 达标值
|
|
|
+ // 目标值
|
|
|
cell = row.createCell(9);
|
|
|
cell.setCellValue((int) list.get(3));
|
|
|
cell.setCellStyle(workbookWrapper.getCellStyle5());
|