|
|
|
@ -642,7 +642,12 @@ |
|
|
|
a.update_date, |
|
|
|
a.update_by, |
|
|
|
b.plm_part_no as testPartNo, |
|
|
|
b.ifs_part_no |
|
|
|
b.ifs_part_no, |
|
|
|
c.manu_facturing_flag, |
|
|
|
c.manu_facturing_type, |
|
|
|
c.manu_facturing_cost_remark1, |
|
|
|
c.quotation_flag, |
|
|
|
c.manu_facturing_cost_remark2 |
|
|
|
FROM plm_change_request_detail as a |
|
|
|
left join plm_change_request as c on a.site = c.site and a.change_no = c.change_no |
|
|
|
left join part as b on a.site = b.site and a.part_no = b.ifs_part_no and b.show_in_query_flag ='Y' |
|
|
|
@ -1672,4 +1677,14 @@ |
|
|
|
item_execution_date = null |
|
|
|
where site = #{site} and change_no = #{changeNo} |
|
|
|
</update> |
|
|
|
<update id="udpateChangeRequestManuFacturingCost"> |
|
|
|
update plm_change_request |
|
|
|
set |
|
|
|
manu_facturing_flag = #{manuFacturingFlag}, |
|
|
|
manu_facturing_type = #{manuFacturingType}, |
|
|
|
manu_facturing_cost_remark1 = #{manuFacturingCostRemark1}, |
|
|
|
quotation_flag = #{quotationFlag}, |
|
|
|
manu_facturing_cost_remark2 = #{manuFacturingCostRemark2} |
|
|
|
where site = #{site} and change_no = #{changeNo} |
|
|
|
</update> |
|
|
|
</mapper> |