Browse Source

0412更新

master
ruanqi 1 year ago
parent
commit
cf00739ac5
  1. 12
      src/main/resources/mapper/production/DailyPlanMapper.xml

12
src/main/resources/mapper/production/DailyPlanMapper.xml

@ -1352,6 +1352,18 @@
<if test="query.endDate != null ">
and #{query.endDate} >= r2.S_ScheduledDate
</if>
<if test="query.seqNo != null ">
and r2.SeqNo= #{query.seqNo}
</if>
<if test="query.operatorName != null and query.operatorName != '' ">
and operatorName like #{query.operatorName}
</if>
<if test="query.partNo != null and query.partNo != '' ">
and r2.partNo like #{query.partNo}
</if>
<if test="query.partDesc != null and query.partDesc != '' ">
and dbo.Get_Part_SpecDesc(r2.site,r2.partNo) like #{query.partDesc}
</if>
</where>

Loading…
Cancel
Save