|
@@ -156,6 +156,12 @@
|
|
|
<if test="personal!=null and personal.handlerName!=null and personal.handlerName!='' ">
|
|
|
and u4.name like concat('%',#{personal.handlerName},'%')
|
|
|
</if>
|
|
|
+ <if test="personal!=null and personal.isCancellation!=null and personal.isCancellation==true">
|
|
|
+ and u4.name = '项目作废'
|
|
|
+ </if>
|
|
|
+ <if test="personal!=null and personal.isCancellation!=null and personal.isCancellation==false">
|
|
|
+ and u4.name != '项目作废'
|
|
|
+ </if>
|
|
|
<if test="personal!=null and personal.userIds!=null and personal.userIds.size!=0">
|
|
|
and p.client_manager_id in
|
|
|
<foreach collection="personal.userIds" open="(" close=")" separator="," item="userId">
|