Explorar el Código

update

tags/Baseline_30082024_BACKEND_UAT
MSI\derek hace 1 año
padre
commit
f9584e7b55
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/main/java/com/ffii/tsms/modules/report/service/ReportService.kt

+ 1
- 1
src/main/java/com/ffii/tsms/modules/report/service/ReportService.kt Ver fichero

@@ -959,7 +959,7 @@ open class ReportService(
temp.forEachIndexed { index, _ ->
dayInt = temp[index]["date"].toString().toInt()
tempCell = sheet.getRow(dayInt.plus(7)).createCell(columnIndex)
tempCell.setCellValue(temp[index]["normalConsumed"] as Double)
tempCell.setCellValue((temp[index]["normalConsumed"] as Double) + (temp[index]["otConsumed"] as Double))
}
columnIndex++
}


Cargando…
Cancelar
Guardar