fix: 企标计划选择接口人员相关查询错误
This commit is contained in:
+2
-2
@@ -108,7 +108,7 @@
|
|||||||
</if>
|
</if>
|
||||||
<!--主起草人-->
|
<!--主起草人-->
|
||||||
<if test="param.mainDraftingUser != null and param.mainDraftingUser != ''">
|
<if test="param.mainDraftingUser != null and param.mainDraftingUser != ''">
|
||||||
AND u1.username LIKE CONCAT('%',#{param.mainDraftingUser},'%')
|
AND CONCAT(u1.realname, '(', u1.username, ')') LIKE CONCAT('%',#{param.mainDraftingUser},'%')
|
||||||
</if>
|
</if>
|
||||||
<!--主起草单位-->
|
<!--主起草单位-->
|
||||||
<if test="param.mainDraftingUnit != null and param.mainDraftingUnit != ''">
|
<if test="param.mainDraftingUnit != null and param.mainDraftingUnit != ''">
|
||||||
@@ -116,7 +116,7 @@
|
|||||||
</if>
|
</if>
|
||||||
<!--主起草单位负责人-->
|
<!--主起草单位负责人-->
|
||||||
<if test="param.mainDraftingUnitResponsiblePerson != null and param.mainDraftingUnitResponsiblePerson != null">
|
<if test="param.mainDraftingUnitResponsiblePerson != null and param.mainDraftingUnitResponsiblePerson != null">
|
||||||
AND u2.username LIKE CONCAT('%',#{param.mainDraftingUnitResponsiblePerson},'%')
|
AND CONCAT(u2.realname, '(', u2.username, ')') LIKE CONCAT('%',#{param.mainDraftingUnitResponsiblePerson},'%')
|
||||||
</if>
|
</if>
|
||||||
<!--项目状态-->
|
<!--项目状态-->
|
||||||
<if test="param.projectStatus != null and param.projectStatus != ''">
|
<if test="param.projectStatus != null and param.projectStatus != ''">
|
||||||
|
|||||||
Reference in New Issue
Block a user