|
@@ -131,7 +131,7 @@ public class CommonCtl extends BaseWebCtl {
|
|
|
@ResponseBody
|
|
|
public List<GqEntity> selectGq(Model model, String szd, String szgk) {
|
|
|
List<GqEntity> list = new ArrayList<GqEntity>();
|
|
|
- if (GlobalData.CITY_CODE.length() > 3 && !isJyr()) {
|
|
|
+ /*if (GlobalData.CITY_CODE.length() > 3 && !isJyr()) {
|
|
|
List<String> gqlist = (List<String>) Utils.getSession().getAttribute("gqList");
|
|
|
if (gqlist != null && gqlist.size() > 0) {
|
|
|
for (String gq : gqlist) {
|
|
@@ -139,9 +139,9 @@ public class CommonCtl extends BaseWebCtl {
|
|
|
list.add(entity);
|
|
|
}
|
|
|
}
|
|
|
- } else {
|
|
|
+ } else {*/
|
|
|
list = gqService.findAllBySzdAndGk(szd, szgk);
|
|
|
- }
|
|
|
+ /*}*/
|
|
|
return list;
|
|
|
}
|
|
|
|