|
@@ -572,7 +572,8 @@ public class ClinicController extends LifeCenterController {
|
|
|
cell17.setCellValue("기타증상");
|
|
|
cell18.setCellValue("기록자");
|
|
|
|
|
|
- for (PatientSymptomSimDTO dto : data) {
|
|
|
+ for (int index = data.size() - 1; index >= 0; index--) {
|
|
|
+ PatientSymptomSimDTO dto = data.get(index);
|
|
|
row = sheet1.createRow(i);
|
|
|
cell1 = row.createCell(0);
|
|
|
cell2 = row.createCell(1);
|
|
@@ -702,7 +703,8 @@ public class ClinicController extends LifeCenterController {
|
|
|
cell2.setCellValue("내용");
|
|
|
cell3.setCellValue("기록자");
|
|
|
|
|
|
- for (PatientMemoDTO dto : data) {
|
|
|
+ for (int index = data.size() - 1; index >= 0; index--) {
|
|
|
+ PatientMemoDTO dto = data.get(index);
|
|
|
row = sheet1.createRow(i);
|
|
|
cell1 = row.createCell(0);
|
|
|
cell2 = row.createCell(1);
|