RolledUpUsageSqlDao.sql.stg

60 lines | 992 B Blame History Raw Download
group RolledUpUsageSqlDao : EntitySqlDao;

tableName() ::= "rolled_up_usage"


tableFields(prefix) ::= <<
  <prefix>subscription_id
, <prefix>unit_type
, <prefix>record_date
, <prefix>amount
, <prefix>created_by
, <prefix>created_date
>>

tableValues() ::= <<
  :subscriptionId
, :unitType
, :recordDate
, :amount
, :userName
, :createdDate
>>


getUsageForSubscription() ::= <<
select
  <allTableFields()>
from <tableName()>
where subscription_id = :subscriptionId
and record_date >= :startDate
and record_date \< :endDate
and unit_type = :unitType
<AND_CHECK_TENANT()>
;
>>

getAllUsageForSubscription() ::= <<
select
  <allTableFields()>
from <tableName()>
where subscription_id = :subscriptionId
and record_date >= :startDate
and record_date \< :endDate
<AND_CHECK_TENANT()>
;
>>

getRawUsageForAccount() ::= <<
select
  <allTableFields()>
from <tableName()>
where account_record_id = :accountRecordId
and record_date >= :startDate
and record_date \< :endDate
<AND_CHECK_TENANT()>
;
>>