Ver código fonte

환자, 의료진 센터 검색기능 paging에 파라미터 안되있는부분 추가

huiwonseo 4 anos atrás
pai
commit
d2d52e0afa

+ 1 - 1
src/main/java/com/lemon/lifecenter/controller/PatientController.java

@@ -168,7 +168,7 @@ public class PatientController extends LifeCenterController {
         ModelAndView mv = setMV("patient/list");
         String param = "";
         try {
-            param = "patientName=" + URLEncoder.encode(patientName, "UTF-8") + "&inputState=" + inputState + "&startDate=" + startDate + "&endDate=" + endDate + "&sortType=" + sortType + "&sort=" + sort;
+            param = "patientName=" + URLEncoder.encode(patientName, "UTF-8") + "&inputState=" + inputState + "&startDate=" + startDate + "&endDate=" + endDate + "&sortType=" + sortType + "&sort=" + sort + "&cla=" + cla;
         } catch (UnsupportedEncodingException e) {
             // TODO Auto-generated catch block
             e.printStackTrace();

+ 1 - 1
src/main/java/com/lemon/lifecenter/controller/StaffController.java

@@ -518,7 +518,7 @@ public class StaffController extends LifeCenterController {
         if (total > 0) {
             list = memberService.selectMemberList(dto);
         }
-        String param = "selectState=" + selectState + "&sData=" + sData + "&useYn=" + useYn;
+        String param = "selectState=" + selectState + "&sData=" + sData + "&useYn=" + useYn + "&cla=" + cla;
         paging = LifeCenterPaging.getInstance();
         paging.paging(config, total, page, param);