Browse Source

2024/1/19 返工返修记录

master
zelian_wu 2 years ago
parent
commit
e33270e781
  1. 6
      src/main/resources/mapper/production/ReworkRecordMapper.xml

6
src/main/resources/mapper/production/ReworkRecordMapper.xml

@ -123,6 +123,12 @@
<if test="operatorName != null and operatorName != ''">
and dbo.Get_OperatorDesc(rw.site,rw.operator_id) like #{operatorName}
</if>
<if test="reworkStartDate != null">
and create_time &gt;= #{reworkStartDate}
</if>
<if test="reworkEndDate != null">
and create_time &lt;= #{reworkEndDate}
</if>
</where>
</select>
</mapper>
Loading…
Cancel
Save