diff options
author | Ivan Kohler <ivan@freeside.biz> | 2014-02-16 17:31:17 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2014-02-16 17:31:17 -0800 |
commit | 73ee20538afd112bfdf2a1fa39db58811e464172 (patch) | |
tree | 06d4e43739de1036e2acb73dd8c327763202591b /httemplate | |
parent | 86d3bab91d8baadcbe33e5bbceeb607990efa1eb (diff) |
credit limit for CDR prerating, RT#27267
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/search/cust_main_credit_limit.html | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/httemplate/search/cust_main_credit_limit.html b/httemplate/search/cust_main_credit_limit.html index b2a0c9bc4..902dbbc0a 100644 --- a/httemplate/search/cust_main_credit_limit.html +++ b/httemplate/search/cust_main_credit_limit.html @@ -1,11 +1,7 @@ <& elements/search.html, 'title' => 'Credit limit incidents', 'name_singular' => 'incident', - 'query' => { table => 'cust_main_credit_limit', - hashref => \%hash, - extra_sql => " AND $dates_sql ", - order_by => 'ORDER BY _date ASC', - }, + 'query' => $query, 'count_query' => "SELECT COUNT(*) FROM cust_main_credit_limit", 'header' => [ 'Date', @@ -60,4 +56,11 @@ if ( $cgi->param('custnum') =~ /^(\d+)$/ ) { $count_query .= " AND custnum = $1"; } +my $query = { + table => 'cust_main_credit_limit', + hashref => \%hash, + extra_sql => ( keys(%hash) ? ' AND ' : ' WHERE ' ). $dates_sql, + order_by => 'ORDER BY _date ASC', +}; + </%init> |