|
@@ -142,22 +142,7 @@
|
|
|
<if test="createUserName !=null and createUserName != ''">
|
|
|
AND operateUserId like concat ('%',#{createUserName},'%')
|
|
|
</if>
|
|
|
- <!--
|
|
|
- <if test="operatorUserIds !=null and operatorUserIds.size() >0 ">
|
|
|
- AND operateUserId in
|
|
|
- <foreach collection="operatorUserIds" item="item" separator=","
|
|
|
- open="(" close=")">
|
|
|
- #{item}
|
|
|
- </foreach>
|
|
|
- </if>
|
|
|
- <if test="saleUserIds !=null and saleUserIds.size() > 0">
|
|
|
- AND saleUserId in
|
|
|
- <foreach collection="saleUserIds" item="item" separator=","
|
|
|
- open="(" close=")">
|
|
|
- #{item}
|
|
|
- </foreach>
|
|
|
- </if>
|
|
|
- -->
|
|
|
+
|
|
|
<if test="saleUserIds !=null and saleUserIds.size() >0 ">
|
|
|
AND (operateUserId in
|
|
|
<foreach collection="saleUserIds" item="item" separator=","
|
|
@@ -171,9 +156,9 @@
|
|
|
</foreach>
|
|
|
)
|
|
|
</if>
|
|
|
- <if test="createUserId !=null and createUserId != ''">
|
|
|
+ <!-- <if test="createUserId !=null and createUserId != ''">
|
|
|
AND (operateUserId = #{createUserId} or saleUserId = #{createUserId})
|
|
|
- </if>
|
|
|
+ </if>-->
|
|
|
</where>
|
|
|
ORDER BY t.update_time DESC,t.projectId
|
|
|
</select>
|