| | |
| | | <result property="statu" column="STATU"/> |
| | | <result property="zkTotal" column="ZK_TOTAL"/> |
| | | <result property="shopId" column="SHOP_ID"/> |
| | | <result property="companyId" column="company_id"/> |
| | | <result property="vipName" column="VIP_NAME"/> |
| | | <result property="vipNo" column="VIP_NO"/> |
| | | <result property="staffName" column="STAFF_NAME"/> |
| | |
| | | <!-- 更新订单时间 --> |
| | | <update id="updateOrderTime"> |
| | | UPDATE sys_order |
| | | set ORDER_TIME = #{orderTime} |
| | | set pay_time = #{payTime} |
| | | WHERE id=#{id} |
| | | </update> |
| | | |
| | |
| | | |
| | | <select id="selectVipOrderInfoTotal" resultType="com.matrix.system.hive.bean.SysOrder"> |
| | | select |
| | | sum(ZK_TOTAL) zkTotal, |
| | | sum(amount) zkTotal, |
| | | count(1) times, |
| | | MAX(pay_time) payTime, |
| | | GROUP_CONCAT(DISTINCT t2.shop_short_name) shopName |
| | | from sys_order t1 |
| | | left join sys_order_flow b on t1.id=b.ORDER_ID and pay_method!='储值卡' |
| | | left join sys_shop_info t2 on t1.SHOP_ID=t2.ID |
| | | where VIP_ID=#{vipId} and STATU='已付款'; |
| | | where t1.VIP_ID=#{vipId} and STATU='已付款'; |
| | | </select> |
| | | |
| | | <select id="selectApiOrderListInPage" resultType="com.matrix.system.app.vo.OrderDetailVo"> |