Browse Source

2025/6/3

master
Aoi_Tori 8 months ago
parent
commit
1b0ec55fa9
  1. 9
      src/main/resources/mapper/part/RoutingManagementMapper.xml

9
src/main/resources/mapper/part/RoutingManagementMapper.xml

@ -590,10 +590,17 @@
operation_name
FROM plm_routing_component
<where>
site = #{site} and part_no = #{partNo} and routing_revision = #{routingRevision} and routing_type = #{routingType} and alternative_no = #{alternativeNo}
site = #{site} and routing_type = #{routingType} and
alternative_no = #{alternativeNo}
<if test="operationNo != null and operationNo != ''">
AND operation_no = #{operationNo}
</if>
<if test="routingRevision != null and routingRevision != ''">
AND routing_revision = #{routingRevision}
</if>
<if test="partNo != null and partNo != ''">
AND part_no = #{partNo}
</if>
<if test="operationName != null and operationName != ''">
AND operation_name like #{operationName}
</if>

Loading…
Cancel
Save