|
@@ -118,8 +118,9 @@ public class TsystemInfoService {
|
|
|
// lastDepts=lastDepts+")";
|
|
|
// }
|
|
|
// sql.append(" where p.sys_dept_id in ").append(lastDepts);
|
|
|
- sql.append(" where (p.sys_dept_id in (select dept_id from deptinfo where instr(concat(pdeptids,','),?)>0 or dept_id=?) or iskj='1' )");
|
|
|
- paramList.add(","+deptid+",");
|
|
|
+// sql.append(" where (p.sys_dept_id in (select dept_id from deptinfo where instr(concat(pdeptids,','),?)>0 or dept_id=?) or iskj='1' )");
|
|
|
+ sql.append(" where (p.sys_dept_id in (select dept_id from deptinfo where position (? in concat(pdeptids,',')) or dept_id=?) or iskj='1' )");
|
|
|
+ paramList.add(","+deptid+",");
|
|
|
paramList.add(deptid);
|
|
|
}
|
|
|
|