提现审核列表金额格式化bug
This commit is contained in:
@@ -56,8 +56,8 @@
|
|||||||
FROM cash_out c
|
FROM cash_out c
|
||||||
left join tb_user u on c.user_id = u.user_id
|
left join tb_user u on c.user_id = u.user_id
|
||||||
left join sys_user s on s.user_id= c.sys_user_id
|
left join sys_user s on s.user_id= c.sys_user_id
|
||||||
left join (select user_id,format(sum(money),2) as total,count(*) as count from cash_out where state = 1 GROUP BY user_id) t on c.user_id = t.user_id
|
left join (select user_id,ROUND(sum(money),2) as total,count(*) as count from cash_out where state = 1 GROUP BY user_id) t on c.user_id = t.user_id
|
||||||
left join (select user_id,format(sum(money),2) as total,count(*) as count from cash_out where state = 3 GROUP BY user_id) t1 on c.user_id = t1.user_id
|
left join (select user_id,ROUND(sum(money),2) as total,count(*) as count from cash_out where state = 3 GROUP BY user_id) t1 on c.user_id = t1.user_id
|
||||||
<where>
|
<where>
|
||||||
<if test="cashOut.userName!=null and cashOut.userName!=''">
|
<if test="cashOut.userName!=null and cashOut.userName!=''">
|
||||||
and u.user_name like concat("%",#{cashOut.userName},"%")
|
and u.user_name like concat("%",#{cashOut.userName},"%")
|
||||||
|
|||||||
Reference in New Issue
Block a user