Browse Source

Merge remote-tracking branch 'origin/master'

java8
yuejiayang 1 year ago
parent
commit
5732e82f3b
  1. 4
      src/main/java/com/xujie/sys/modules/quote/entity/QuoteDetailRouting.java
  2. 2
      src/main/resources/mapper/quote/QuoteDetailBomTreeMapper.xml

4
src/main/java/com/xujie/sys/modules/quote/entity/QuoteDetailRouting.java

@ -54,9 +54,9 @@ public class QuoteDetailRouting {
private BigDecimal laborSetupTime;
private Integer crewSize;
private BigDecimal crewSize;
private Integer setupCrewSize;
private BigDecimal setupCrewSize;
private String outsideOpItem;

2
src/main/resources/mapper/quote/QuoteDetailBomTreeMapper.xml

@ -39,6 +39,7 @@
where bd.site = #{site}
and bd.part_no = #{partNo}
and bd.bu_no = #{buNo}
and bd.status != 'Tentative'
<if test="engChgLevel == null">
and bh.eff_phase_out_date is null
</if>
@ -120,6 +121,7 @@
where bom.site = #{site}
and bom.part_no = #{partNo}
and bom.bu_no = #{buNo}
and bom.status != 'Tentative'
<if test="bomType != null and bomType != ''">
and bom.bom_type = #{bomType}
</if>

Loading…
Cancel
Save