| | |
| | | <result column="owner" property="owner" /> |
| | | <result column="payment" property="payment" /> |
| | | <result column="uuid" property="uuid" /> |
| | | <result column="source_loc_name" property="sourceLocName" /> |
| | | <result column="target_loc_name" property="targetLocName" /> |
| | | |
| | | </resultMap> |
| | | |
| | |
| | | |
| | | <sql id="pakOutPageCondition"> |
| | | <if test="order_id!=null and order_id!='' "> |
| | | and mod.order_id like '%' + #{order_id} + '%' |
| | | and mod.order_id = #{order_id} |
| | | </if> |
| | | <if test="matnr!=null and matnr!='' "> |
| | | and mod.matnr like '%' + #{matnr} + '%' |
| | |
| | | |
| | | <update id="increase"> |
| | | update man_order_detl |
| | | set qty = qty + #{qty} |
| | | set work_qty = work_qty + #{workQty} |
| | | where 1=1 |
| | | and order_id = #{orderId} |
| | | and matnr = #{matnr} |