fix: 获取企标计划列表接口SQL条件错误

This commit is contained in:
2023-12-22 10:50:27 +08:00
parent b88ace30fd
commit 21893abfea
@@ -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>
<!--推进人工号-->