|
@@ -547,8 +547,16 @@ public class PersonRosterListHandler extends ListHandler {
|
|
|
StringBuffer typesql = new StringBuffer();
|
|
|
String[] typeArry = new String[0];
|
|
|
|
|
|
- // 状态的sql
|
|
|
+ // 状态的sql 20250311 状态取值改变
|
|
|
StringBuffer statussql = new StringBuffer();
|
|
|
+ if(StringUtils.equals(status, "1")) {
|
|
|
+ statussql.append(" and p.FINSERVICE in ( ");
|
|
|
+ statussql.append(" '1','4' ) ");
|
|
|
+
|
|
|
+ }else if(StringUtils.equals(status, "2")) {
|
|
|
+ statussql.append(" and p.FINSERVICE in ( ");
|
|
|
+ statussql.append(" '0','2','3' ) ");
|
|
|
+ }
|
|
|
statussql.append(" and p.FINSERVICE = ");
|
|
|
statussql.append("'");
|
|
|
statussql.append(status);
|