Browse Source

增加实际执行人员字段筛选

java8
赵宏斌 3 months ago
parent
commit
b7c8a14ab9
  1. 3
      src/main/resources/mapper/pms/EamMapper.xml

3
src/main/resources/mapper/pms/EamMapper.xml

@ -803,6 +803,9 @@
<if test="query.planOperatorName != null and query.planOperatorName != ''">
AND a.PlanOperatorName like '%' + #{query.planOperatorName} + '%'
</if>
<if test="query.actualOperatorName != null and query.actualOperatorName != ''">
AND dbo.eam_Get_eamAdminName_TPM(a.Site, a.ActualOperator) like '%' + #{query.actualOperatorName} + '%'
</if>
<if test='(query.status == null || query.status == "") and query.functionType == "A" and query.searchType == "checkOrder" '>
AND a.status != '已取消'
</if>

Loading…
Cancel
Save