123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="com.kmall.schedule.dao.QzOrderMapper">
- <select id="queryrderUnEvaluateList" resultType="map">
- SELECT
- a.id AS order_id,
- a.order_sn,
- c.goods_name,
- a.form_id,
- u.weixin_openid AS open_id
- FROM
- mall_order a
- LEFT JOIN mall_comment b ON a.id = b.order_id
- LEFT JOIN mall_order_goods c ON c.order_id = a.id
- LEFT JOIN mall_user u ON a.user_id = u.id
- WHERE
- b.id IS NULL
- AND a.confirm_time > date_add(now(), INTERVAL - 1 DAY)
- AND a.confirm_time IS NOT NULL
- </select>
- <select id="queryPastOrderList" resultType="map">
- SELECT b.product_id,b.number,c.stock_num,c.id as storeRelaId
- FROM mall_order a
- LEFT JOIN mall_order_goods b ON a.id = b.order_id
- LEFT JOIN mall_product_store_rela c ON b.product_id = c.product_id
- AND c.store_id = a.store_id
- WHERE 1 = 1
- AND a.add_time <![CDATA[ < ]]> DATE_ADD(now(),INTERVAL -15 MINUTE)
- AND a.order_status in (0,100) and a.order_type = 1 AND a.is_onffline_order = 0
- </select>
- <update id="unpayPastUpdate">
- UPDATE mall_order a
- SET order_status=101,shipping_status=0,pay_status=0
- WHERE 1 = 1
- AND a.add_time <![CDATA[ < ]]> DATE_ADD(now(),INTERVAL -15 MINUTE)
- AND a.order_status = 0 and a.order_type = 1 AND a.is_onffline_order = 0
- </update>
- <update id="updateStockNum" parameterType="map">
- update mall_product_store_rela a
- <set>
- <if test="stock_num != null">a.`stock_num` = #{stock_num},</if>
- </set>
- where a.id = #{id}
- </update>
- <select id="queryRefundOrderList" resultType="map">
- select a.pay_transaction_id,a.merch_order_sn,a.order_sn,a.order_status,a.pay_status,f.out_refund_no,f.refund_id,f.order_id,f.id 'orderRefundId'
- from mall_order a
- inner join mall_order_refund f on a.id = f.order_id where (f.out_refund_no is null or f.refund_id is null
- or f.refund_time is null or f.wechat_refund_status_des is null) and a.order_status = '401' and f.refund_status
- in (2,5) AND a.is_onffline_order = 0
- </select>
- <select id="queryPayingOrderList" resultType="map">
- select a.pay_transaction_id,a.order_sn,a.order_status,a.pay_status,a.id 'order_id',a.merch_order_sn,date_format(a.add_time,'%Y-%m-%d %H:%i:%s') as add_time,
- b.product_id,b.number,c.stock_num,c.id as storeRelaId
- from mall_order a
- LEFT JOIN mall_order_goods b ON a.id = b.order_id
- LEFT JOIN mall_product_store_rela c ON b.product_id = c.product_id
- AND c.store_id = a.store_id where (a.order_status in ('100','201') and a.pay_status in (1,2))
- and (a.pay_transaction_id = '' or a.pay_transaction_id is null or a.pay_time is null or a.pay_time = '')
- AND a.is_onffline_order = 0
- </select>
- <update id="updateOrderInfo" parameterType="map">
- UPDATE mall_order a
- <set>
- <if test="orderStatus != null">a.order_status = #{orderStatus},</if>
- <if test="payStatus != null">a.pay_status = #{payStatus},</if>
- <if test="payTransactionId != null">a.pay_transaction_id = #{payTransactionId},</if>
- <if test="payTime != null">a.pay_time = #{payTime},</if>
- </set>
- WHERE 1 = 1
- AND a.id = #{orderId}
- </update>
- <update id="updateOrderRefund" parameterType="map">
- UPDATE mall_order_refund a
- <set>
- <if test="refundId != null">a.refund_id = #{refundId},</if>
- <if test="refundMoney != null">a.refund_money = #{refundMoney},</if>
- <if test="refundStatus != null">a.refund_status = #{refundStatus},</if>
- <if test="refundRecvAccout != null">a.refund_recv_accout = #{refundRecvAccout},</if>
- <if test="refundTime != null">a.refund_time = #{refundTime},</if>
- <if test="wechat_refund_status_des != null">a.wechat_refund_status_des = #{wechat_refund_status_des},</if>
- </set>
- WHERE 1 = 1
- AND a.out_refund_no = #{orderRefundId}
- </update>
- <select id="queryShipmentOrderList" resultType="map">
- SELECT a.order_sn,a.order_status,a.pay_status,a.id 'orderId',a.merch_order_sn,date_format(r.customs_succ_time,'%Y-%m-%d %H:%i:%s') as customs_succ_time
- FROM `mall_order` a inner join mall_order_process_record r on a.order_sn=r.order_sn where order_status='300'
- and shipping_status ='1' and a.order_biz_type in(10,02) AND r.customs_succ_time <![CDATA[ < ]]> DATE_ADD(now(),INTERVAL -7 DAY) AND a.is_onffline_order = 0
- </select>
- <select id="queryShipmentBondedOrderList" resultType="map">
- SELECT a.order_sn,a.order_status,a.pay_status,a.id 'orderId',a.merch_order_sn,date_format(r.shipment_succ_time,'%Y-%m-%d %H:%i:%s') as shipment_succ_time
- FROM `mall_order` a inner join mall_order_process_record r on a.order_sn=r.order_sn where order_status='300' and shipping_status ='1'
- and a.order_biz_type in(00,11) AND r.shipment_succ_time <![CDATA[ < ]]> DATE_ADD(now(),INTERVAL -7 DAY) AND a.is_onffline_order = 0
- </select>
- <update id="updateShipmentOrder" parameterType="map">
- update mall_order set order_status ='301', shipping_status='2',confirm_time=now() where id=#{orderId}
- </update>
- <select id="queryReceiptOrderList" resultType="map">
- select o.user_id 'userId',o.id 'orderId',g.product_id'productId',g.goods_specification_name_value 'goodsSpecificationNameValue', g.goods_id 'goodsId',
- g.goods_name 'goodsName',confirm_time FROM `mall_order` o inner join mall_order_goods g on o.id = g.order_id
- where order_status='301' and shipping_status ='2' and comment_count=0 AND confirm_time <![CDATA[ < ]]> DATE_ADD(now(),INTERVAL -30 DAY) AND o.is_onffline_order = 0
- </select>
- <update id="updateReceiptOrderByCommentCount">
- update mall_order set comment_count = 1 where
- order_status='301' and shipping_status ='2' and comment_count=0 AND confirm_time <![CDATA[ < ]]> DATE_ADD(now(),INTERVAL -30 DAY)
- </update>
- <update id="insertComment" parameterType="map">
- insert into mall_comment(
- `type_id`,
- `value_id`,
- `user_id`,
- `order_id`,
- `product_id`,
- `goods_specification_name_value`,
- `status`,
- `content`,
- `eval_level`,
- `value_name`,
- `goods_level`,
- `create_time`,
- `mod_time`)
- values(
- #{typeId},
- #{valueId},
- #{userId},
- #{orderId},
- #{productId},
- #{goodsSpecificationNameValue},
- #{status},
- #{content},
- #{evalLevel},
- #{valueName},
- #{goodsLevel},
- #{createTime},
- #{modTime})
- </update>
- </mapper>
|