Browse Source

2025-10-10

领料申请管理的材料明细新增
master
fengyuan_yang 3 months ago
parent
commit
a2ac542bdd
  1. 1
      src/main/java/com/gaotao/modules/pms/entity/PartInformationEntity.java
  2. 6
      src/main/resources/mapper/pms/QcBaseInfoMapper.xml

1
src/main/java/com/gaotao/modules/pms/entity/PartInformationEntity.java

@ -73,6 +73,7 @@ public class PartInformationEntity {
private Integer expirationWarningDay;
private String inboundWarehouseId;
private String outboundWarehouseId;
private String issueMethod;
private String inboundLocationId;
private Double exceedInRatio;
private Double exceedOutRatio;

6
src/main/resources/mapper/pms/QcBaseInfoMapper.xml

@ -1181,7 +1181,8 @@
min_value,
adhesive_active_period_flag,
thawing_duration,
accumulated_exposure_duration
accumulated_exposure_duration,
issue_method
from part as a
left join wareHouse as b on a.site = b.site and a.bu_no = b.bu_no and a.inbound_warehouse_id = b.WarehouseID
left join wareHouse as c on a.site = c.site and a.bu_no = c.bu_no and a.outbound_warehouse_id = c.WarehouseID
@ -1248,7 +1249,8 @@
min_value = #{minValue, jdbcType=DECIMAL},
adhesive_active_period_flag = #{adhesiveActivePeriodFlag},
thawing_duration = #{thawingDuration},
accumulated_exposure_duration = #{accumulatedExposureDuration}
accumulated_exposure_duration = #{accumulatedExposureDuration},
issue_method = #{issueMethod}
WHERE site = #{site} and partNo = #{partNo} and bu_no = #{buNo}
</update>

Loading…
Cancel
Save