From 473c4e9cf23f9e43ae2f93c4da79b2204e34c3f8 Mon Sep 17 00:00:00 2001 From: jyy <935090232@qq.com> Date: Tue, 09 Mar 2021 11:50:48 +0800 Subject: [PATCH] 解决微信回调报错问题 --- zq-erp/src/main/resources/mybatis/mapper/hive/SysOrderDao.xml | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/zq-erp/src/main/resources/mybatis/mapper/hive/SysOrderDao.xml b/zq-erp/src/main/resources/mybatis/mapper/hive/SysOrderDao.xml index c2a59fc..1e64c24 100644 --- a/zq-erp/src/main/resources/mybatis/mapper/hive/SysOrderDao.xml +++ b/zq-erp/src/main/resources/mybatis/mapper/hive/SysOrderDao.xml @@ -90,7 +90,7 @@ <!-- 更新订单时间 --> <update id="updateOrderTime"> UPDATE sys_order - set ORDER_TIME = #{orderTime} + set pay_time = #{payTime} WHERE id=#{id} </update> @@ -470,14 +470,14 @@ <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_item b on t1.id=b.ORDER_ID and goods_id!=5583 + 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"> -- Gitblit v1.9.1