|
|
|
@ -1193,7 +1193,14 @@ |
|
|
|
adhesive_active_period_flag, |
|
|
|
thawing_duration, |
|
|
|
accumulated_exposure_duration, |
|
|
|
issue_method |
|
|
|
issue_method, |
|
|
|
tracking_flag, |
|
|
|
defect_threshold, |
|
|
|
recovery_batch_count, |
|
|
|
current_defect_count, |
|
|
|
last_defect_count, |
|
|
|
remaining_tracking_batches, |
|
|
|
last_trigger_time |
|
|
|
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 |
|
|
|
@ -1264,7 +1271,9 @@ |
|
|
|
adhesive_active_period_flag = #{adhesiveActivePeriodFlag}, |
|
|
|
thawing_duration = #{thawingDuration}, |
|
|
|
accumulated_exposure_duration = #{accumulatedExposureDuration}, |
|
|
|
issue_method = #{issueMethod} |
|
|
|
issue_method = #{issueMethod}, |
|
|
|
defect_threshold = #{defectThreshold, jdbcType=INTEGER}, |
|
|
|
recovery_batch_count = #{recoveryBatchCount, jdbcType=INTEGER} |
|
|
|
WHERE site = #{site} and partNo = #{partNo} and bu_no = #{buNo} |
|
|
|
</update> |
|
|
|
|
|
|
|
|