fix: 获取企标计划列表接口SQL条件错误
This commit is contained in:
+2
-2
@@ -142,11 +142,11 @@
|
||||
AND u2.username LIKE CONCAT('%',#{param.mainDraftingUnitResponsiblePerson},'%')
|
||||
</if>
|
||||
<!--项目状态-->
|
||||
<if test="param.projectStatus != null and param.projectStatus != null">
|
||||
<if test="param.projectStatus != null and param.projectStatus != ''">
|
||||
AND p.project_status = #{param.projectStatus}
|
||||
</if>
|
||||
<!--变更状态-->
|
||||
<if test="param.changeStatus != null and param.changeStatus != null">
|
||||
<if test="param.changeStatus != null and param.changeStatus != ''">
|
||||
AND p.change_status = #{param.changeStatus}
|
||||
</if>
|
||||
<!--推进人工号-->
|
||||
|
||||
Reference in New Issue
Block a user