Ver Fonte

3dDisplayEngine YtiotVAlarmServiceImpl.java 吉超博 commit at 2020-12-09

吉超博 há 4 anos atrás
pai
commit
9f24be9727
1 ficheiros alterados com 110 adições e 0 exclusões
  1. 110 0
      3dDisplayEngine/buildingService/YtiotVAlarmServiceImpl.java

+ 110 - 0
3dDisplayEngine/buildingService/YtiotVAlarmServiceImpl.java

@@ -1909,3 +1909,113 @@ public class YtiotVAlarmServiceImpl implements YtiotVAlarmService {
 					for(int i=0;i<j_tmp.size();i++) {
 						String tmp = j_tmp.getString(i);
 						if(i==0)
+							device_code_list = tmp;
+						else
+							device_code_list += ","+tmp;
+					}
+				}else
+					device_code = q_json.getString("device_code");
+			}
+			time_start = q_json.has("time_start")?q_json.getString("time_start"):null;
+			time_end = q_json.has("time_end")?q_json.getString("time_end"):null;
+		}
+		if(V_LOGINNAME.equals("ypsgec")) {
+			return json.toString();
+		}else {
+			if(sort!=null) {
+				Sort = JSONArray.fromObject(sort);
+				if((Sort.isArray())&&(Sort.size()>0)) {
+					JSONObject s_json = Sort.getJSONObject(0);
+					order = s_json.has("property")?s_json.getString("property"):order;
+					dir = s_json.has("direction")?s_json.getString("direction"):dir;
+				}
+				json.put("sort", sort);
+			}
+			Start = start;
+			Limit = limit;
+			Page = page;
+			if((V_LOGINNAME!=null)&&(company_code==null)&&(company_code_list==null)) {
+				String where = " where u.id.agentid='"+V_LOGINNAME+"' ";
+				List list = ytiotVUserCompanyDao.query(where, null, null, null, null);
+				if(list.size()>0) {
+					for(int i=0;i<list.size();i++) {
+						YtiotVUsercompany o = (YtiotVUsercompany)list.get(i);
+						YtiotVUsercompanyId oid = o.getId();
+						if(i==0)
+							Company_Code_List = oid.getOwnerCode();
+						else
+							Company_Code_List += ","+oid.getOwnerCode();
+					}
+				}
+			}
+			if(address!=null)
+				hqlwhere = chkhw(hqlwhere) + " u.id."+fieldname("address")+" like '%"+address+"' ";
+			if((clzt!=null)&&(clzt.length()>0))
+				hqlwhere = chkhw(hqlwhere) + " u.id."+fieldname("clzt")+" = "+clzt+" ";
+			if(Company_Code_List!=null)
+				hqlwhere = chkhw(hqlwhere) + " u.id."+fieldname("company_code")+" in ("+Company_Code_List+") ";
+			else {
+				if(company_code!=null)
+					hqlwhere = chkhw(hqlwhere) + " u.id."+fieldname("company_code")+"  =  "+company_code+" ";
+				if(company_code_list!=null)
+					hqlwhere = chkhw(hqlwhere) + " u.id."+fieldname("company_code")+" in ("+company_code_list+") ";
+			}
+//			if(company_code!=null)
+//				hqlwhere = chkhw(hqlwhere) + " u.id."+fieldname("company_code")+" = '"+company_code+"' ";
+//			if(company_code_list!=null)
+//				hqlwhere = chkhw(hqlwhere) + " u.id."+fieldname("company_code")+" in ("+company_code_list+") ";
+			if(company_name!=null)
+				hqlwhere = chkhw(hqlwhere) + " u.id."+fieldname("company_name")+" like '%"+company_name+"%' ";
+			if(device_code!=null)
+				hqlwhere = chkhw(hqlwhere) + " u.id."+fieldname("device_code")+" = '"+device_code+"' ";
+			if(device_code_list!=null)
+				hqlwhere = chkhw(hqlwhere) + " u.id."+fieldname("device_code")+" in ("+device_code_list+") ";
+			if(time_start!=null)
+				hqlwhere = chkhw(hqlwhere) + " u.id."+fieldname("time")+" >= '"+time_start+"' ";
+			if(time_end!=null)
+				hqlwhere = chkhw(hqlwhere) + " u.id."+fieldname("time")+" <= '"+time_end+"' ";
+			if(COMMSTATUS!=null) {
+				if(COMMSTATUS.equals("NO"))
+					hqlwhere = chkhw(hqlwhere)+"( u.id.data1 <> 'WP4' and u.id.data1 <> 'LL4' ) ";
+				else if(COMMSTATUS.equals("ONLY"))
+					hqlwhere = chkhw(hqlwhere)+" ( u.id.data1 = 'WP4' or u.id.data1 = 'LL4' ) ";
+			}
+			if(order!=null)
+				order_str = " order by u.id."+fieldname(order);
+			else
+				order_str = " order by u.id.id ";
+			int totalCount = ytiotVAlarmDao.getSJCount(hqlwhere);
+			json.put("totalCount", totalCount);
+			if(Start!=null){
+				if(Integer.parseInt(Start)>totalCount){
+					Start = "0";
+					Page = "0";
+				}else if(page==null)
+					Page="0";
+			}else{
+				Start = "0";
+				Page = "0";
+			}
+			json.put("page", Page);
+			json.put("start", Start);
+			json.put("limit", Limit);
+			if(totalCount>0) {
+				List<?> ulist = ytiotVUserphoneDao.query(null, null, null, null, null);
+				List<?> list = ytiotVAlarmDao.SJQuery(hqlwhere, order_str, dir, Start, Limit);
+				SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
+				if(list.size()>0) {
+					for(int i=0;i<list.size();i++) {
+						YtiotVSj hj = (YtiotVSj)list.get(i);
+						YtiotVSjId id = hj.getId();
+						String cl_name = "";
+						if((company_code!=null)&&(i==0))
+							json.put("company_name", id.getCompanyName());
+						Map<String, Comparable> map = new HashMap<String, Comparable>();
+						map.put("orderIdx", Integer.parseInt(Start)+i+1);
+						map.put("address", id.getAddress());
+						map.put("cldh", id.getCldh());
+						map.put("cllx", id.getCllx());
+						map.put("cllxr", id.getCllxr());
+						map.put("clnr", id.getClnr());
+						map.put("clr", id.getClr());
+						map.put("clwb", id.getClwb());