mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-13 21:32:07 +08:00
1、新增组织编辑修改首购价格能力;2、账单分页支持非管理端只允许查看本组织下;3、统计公共入参和方法抽象、过期组织接口分离移到system、新增销售额统计接口;
This commit is contained in:
+10
@@ -61,6 +61,16 @@
|
||||
where deleted = false and initial != true;
|
||||
</select>
|
||||
|
||||
<select id="getTodaySales"
|
||||
resultType="java.math.BigDecimal">
|
||||
select
|
||||
sum(total_amount - gift_money_spent) as amount
|
||||
from purchase_record
|
||||
where deleted = false and initial != true
|
||||
and create_time >= CURDATE()
|
||||
and create_time < CURDATE() + INTERVAL 1 DAY;
|
||||
</select>
|
||||
|
||||
<select id="getTotalRechargeUsageAmount" resultType="java.math.BigDecimal">
|
||||
select sum(account_balance_spent)
|
||||
from purchase_record
|
||||
|
||||
Reference in New Issue
Block a user