|
@@ -628,7 +628,9 @@ public class MainCtl extends BaseWebCtl {
|
|
|
list = jsjdcbsjdsService.findByJyrids(getSsjyr().getId());
|
|
|
} else {
|
|
|
List<String> gqlist = (List<String>) Utils.getSession().getAttribute("gqList");
|
|
|
- list = jsjdcbsjdsService.findByGqids(gqlist);
|
|
|
+ if (gqlist != null && gqlist.size() > 0) {
|
|
|
+ list = jsjdcbsjdsService.findByGqids(gqlist);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
if (list != null && list.size() > 0) {
|
|
@@ -706,7 +708,9 @@ public class MainCtl extends BaseWebCtl {
|
|
|
list = jsjdbgdsService.findByJyrids(getSsjyr().getId());
|
|
|
} else {
|
|
|
List<String> gqlist = (List<String>) Utils.getSession().getAttribute("gqList");
|
|
|
- list = jsjdbgdsService.findByGqids(gqlist);
|
|
|
+ if (gqlist != null && gqlist.size() > 0) {
|
|
|
+ list = jsjdbgdsService.findByGqids(gqlist);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
if (list != null && list.size() > 0) {
|
|
@@ -784,7 +788,9 @@ public class MainCtl extends BaseWebCtl {
|
|
|
list = jgsqdsService.findByJyrids(getSsjyr().getId());
|
|
|
} else {
|
|
|
List<String> gqlist = (List<String>) Utils.getSession().getAttribute("gqList");
|
|
|
- list = jgsqdsService.findByGqids(gqlist);
|
|
|
+ if (gqlist != null && gqlist.size() > 0) {
|
|
|
+ list = jgsqdsService.findByGqids(gqlist);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
if (list != null && list.size() > 0) {
|
|
@@ -900,7 +906,9 @@ public class MainCtl extends BaseWebCtl {
|
|
|
list = xkzsqService.findByJyrids(getSsjyr().getId());
|
|
|
} else {
|
|
|
List<String> gqlist = (List<String>) Utils.getSession().getAttribute("gqList");
|
|
|
- list = xkzsqService.findByGqids(gqlist);
|
|
|
+ if (gqlist != null && gqlist.size() > 0) {
|
|
|
+ list = xkzsqService.findByGqids(gqlist);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
if (list != null && list.size() > 0) {
|
|
@@ -947,7 +955,9 @@ public class MainCtl extends BaseWebCtl {
|
|
|
list = xkzbgService.findByJyrids(getSsjyr().getId());
|
|
|
} else {
|
|
|
List<String> gqlist = (List<String>) Utils.getSession().getAttribute("gqList");
|
|
|
- list = xkzbgService.findByGqids(gqlist);
|
|
|
+ if (gqlist != null && gqlist.size() > 0) {
|
|
|
+ list = xkzbgService.findByGqids(gqlist);
|
|
|
+ }
|
|
|
}
|
|
|
if (list != null && list.size() > 0) {
|
|
|
for (Object id : list) {
|
|
@@ -992,7 +1002,9 @@ public class MainCtl extends BaseWebCtl {
|
|
|
list = xkzyxService.findByJyrids(getSsjyr().getId());
|
|
|
} else {
|
|
|
List<String> gqlist = (List<String>) Utils.getSession().getAttribute("gqList");
|
|
|
- list = xkzyxService.findByGqids(gqlist);
|
|
|
+ if (gqlist != null && gqlist.size() > 0) {
|
|
|
+ list = xkzyxService.findByGqids(gqlist);
|
|
|
+ }
|
|
|
}
|
|
|
if (list != null && list.size() > 0) {
|
|
|
for (Object id : list) {
|
|
@@ -1038,7 +1050,9 @@ public class MainCtl extends BaseWebCtl {
|
|
|
list = xkzzxService.findByJyrids(getSsjyr().getId());
|
|
|
} else {
|
|
|
List<String> gqlist = (List<String>) Utils.getSession().getAttribute("gqList");
|
|
|
- list = xkzzxService.findByGqids(gqlist);
|
|
|
+ if (gqlist != null && gqlist.size() > 0) {
|
|
|
+ list = xkzzxService.findByGqids(gqlist);
|
|
|
+ }
|
|
|
}
|
|
|
if (list != null && list.size() > 0) {
|
|
|
for (Object id : list) {
|