|
@@ -212,6 +212,16 @@ public class enterprise extends Controller {
|
|
|
|
|
|
}
|
|
|
}
|
|
|
+ if(StringUtils.isNotBlank(sa_accountclassids)){
|
|
|
+ if(isJSONArray(sa_accountclassids)){
|
|
|
+ JSONArray jsonArrayResult = JSONArray.parseArray(sa_accountclassids);
|
|
|
+ if(!jsonArrayResult.isEmpty()){
|
|
|
+ where1=where1+ " and sa_accountclassid in"+jsonArrayResult;
|
|
|
+ where1 = where1.replace("[", "(").replace("]", ")");
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
sqlFactory.addParameter_SQL("where1",where1);
|
|
|
}
|