1、解决出场二维码没有使用,导致无法再次入场问题

2、解决回调退款未更新数据库总退款金额
3、解决查询用户手机号关联查询脚本问题
This commit is contained in:
2024-02-28 23:28:33 +08:00
parent c2bee07b79
commit a83731da16
6 changed files with 35 additions and 2 deletions

View File

@@ -341,7 +341,7 @@
sum((select IFNULL(sum(ot.price),0) from sv_order ot
where ot.member_id = t.member_id and (ot.order_sn = t.order_sn or ot.order_sn = t.order_add_sn)
) - IFNULL(t.sum_pay_money,0)) orderSumMoney
from sv_barcode_order_time t
from sv_barcode_order_time t LEFT JOIN sv_member m on t.member_id = m.id
where 1=1
<if test="state != null and state == 2">
AND (t.status = 1 or t.paying = #{state})