| | |
| | | o.processing_note, |
| | | fc.process_id, |
| | | SUM( od.quantity) as quantity, |
| | | SUM(od.gross_area) as gross_area, |
| | | SUM(ogd.total_area) as gross_area, |
| | | SUM(od.weight) as weight, |
| | | #{technologyNumber} as technologyNumber, |
| | | concat(fc.process_id,'/',#{technologyNumber}) as processIdNumber |
| | |
| | | select fc.order_number, |
| | | concat(ogd.child_width, "*", ogd.child_height) as child_width, |
| | | od.quantity, |
| | | ogd.total_area, |
| | | round(ogd.total_area,2) as total_area, |
| | | od.perimeter, |
| | | od.bend_radius, |
| | | od.remarks |
| | |
| | | update flow_card set inventory_quantity=#{completedQuantity} |
| | | where process_id = #{processId} and order_number = #{orderNumber} and technology_number = #{technologyNumber} |
| | | </update> |
| | | |
| | | <!-- 复选框修改排版状态--> |
| | | <update id="updateComposing"> |
| | | update flow_card as fc |
| | | set fc.layout_status=1 |
| | | where fc.process_id = #{processId} |
| | | </update> |
| | | </mapper> |