| | |
| | | insert into store_order( |
| | | person_name,ext_order_id,order_id,total_price,pay_price,person_id,remark,o_id,state,freight_price |
| | | ) values ( |
| | | #{personName},#{extOrderId},#{orderId},#{totalPrice},#{payPrice},#{personId},#{remark},#{oId},#{state},#{freightPrice} |
| | | #{personName},#{extOrderId},#{orderId},#{totalPrice},#{payPrice},#{personId},#{remark},#{OId},#{state},#{freightPrice} |
| | | ) |
| | | </insert> |
| | | |
| | |
| | | <!-- 修改购物车信息 add by wuxw 2018-07-03 --> |
| | | <update id="updateStoreOrderInfo" parameterType="Map"> |
| | | update store_order t set t.status_cd = #{statusCd} |
| | | <if test="newBId != null and newBId != ''"> |
| | | ,t.b_id = #{newBId} |
| | | </if> |
| | | |
| | | <if test="personName !=null and personName != ''"> |
| | | , t.person_name= #{personName} |
| | | </if> |