|
|
@@ -183,6 +183,11 @@ public class enterprisetarget extends Controller {
|
|
|
where1.append(" t1.enterprisename like '%").append(content_where.getJSONObject("tablefilter").getStringValue("enterprisename")).append("%' ");
|
|
|
where1.append(")");
|
|
|
}
|
|
|
+ if(StringUtils.isNotBlank(content_where.getJSONObject("tablefilter").getStringValue("abbreviation"))){
|
|
|
+ where1.append(" and(");
|
|
|
+ where1.append(" t1.abbreviation like '%").append(content_where.getJSONObject("tablefilter").getStringValue("abbreviation")).append("%' ");
|
|
|
+ where1.append(")");
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|