fix: 78168
企标计划-查询 制修订类型不能查询出对应的数据
This commit is contained in:
+6
-6
@@ -150,27 +150,27 @@
|
||||
AND p.change_status = #{param.changeStatus}
|
||||
</if>
|
||||
<!--推进人工号-->
|
||||
<if test="param.standardPromoterWorkNo != null and param.standardPromoterWorkNo != null">
|
||||
<if test="param.standardPromoterWorkNo != null and param.standardPromoterWorkNo != ''">
|
||||
AND u3.username LIKE CONCAT('%',#{param.standardPromoterWorkNo},'%')
|
||||
</if>
|
||||
<!--标准类型-->
|
||||
<if test="param.standardType != null and param.standardType != null">
|
||||
<if test="param.standardType != null and param.standardType != ''">
|
||||
AND p.standard_type = #{param.standardType}
|
||||
</if>
|
||||
<!--制修订类型-->
|
||||
<if test="param.applicationCategory != null and param.applicationCategory != null">
|
||||
<if test="param.revisionType != null and param.revisionType != ''">
|
||||
AND p.application_category = #{param.revisionType}
|
||||
</if>
|
||||
<!--申请类型-->
|
||||
<if test="param.applicationCategory != null and param.applicationCategory != null">
|
||||
<if test="param.applicationCategory != null and param.applicationCategory != ''">
|
||||
AND p.application_category = #{param.applicationCategory}
|
||||
</if>
|
||||
<!--计划报批日期-->
|
||||
<if test="param.planApprovalStartDate != null and param.planApprovalEndDate != null">
|
||||
<if test="param.planApprovalStartDate != null and param.planApprovalEndDate != ''">
|
||||
AND p.plan_approval_date BETWEEN #{param.planApprovalStartDate} AND #{param.planApprovalEndDate}
|
||||
</if>
|
||||
<!--创建日期-->
|
||||
<if test="param.createStartDate != null and param.createEndDate != null">
|
||||
<if test="param.createStartDate != null and param.createEndDate != ''">
|
||||
AND p.create_time BETWEEN #{param.createStartDate} AND #{param.createEndDate}
|
||||
</if>
|
||||
<if test="param.idList != null and param.idList.size() > 0">
|
||||
|
||||
Reference in New Issue
Block a user