[freeside-commits] branch master updated. 73ee20538afd112bfdf2a1fa39db58811e464172

Ivan ivan at 420.am
Sun Feb 16 17:31:18 PST 2014


The branch, master has been updated
       via  73ee20538afd112bfdf2a1fa39db58811e464172 (commit)
      from  86d3bab91d8baadcbe33e5bbceeb607990efa1eb (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 73ee20538afd112bfdf2a1fa39db58811e464172
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Sun Feb 16 17:31:17 2014 -0800

    credit limit for CDR prerating, RT#27267

diff --git a/httemplate/search/cust_main_credit_limit.html b/httemplate/search/cust_main_credit_limit.html
index b2a0c9b..902dbbc 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>

-----------------------------------------------------------------------

Summary of changes:
 httemplate/search/cust_main_credit_limit.html |   13 ++++++++-----
 1 files changed, 8 insertions(+), 5 deletions(-)




More information about the freeside-commits mailing list