From da5c6a1b3e1382e0cb0edd7244c25149ad1ab0cf Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Tue, 1 Apr 2008 12:01:05 -0500 Subject: [PATCH] change references to 'reserves' in billing report template New billing report has nothing to do with hold requests per se, so change template variables in order to not confuse customizers. Signed-off-by: Joshua Ferraro --- circ/billing.pl | 6 +++--- koha-tmpl/intranet-tmpl/prog/en/modules/circ/billing.tmpl | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/circ/billing.pl b/circ/billing.pl index 2577371f4a..346084a82e 100755 --- a/circ/billing.pl +++ b/circ/billing.pl @@ -161,13 +161,13 @@ if (C4::Context->preference('IndependantBranches')){ else { $sth->execute(); } -my @reservedata; +my @billingdata; my $previous; my $this; while ( my $data = $sth->fetchrow_hashref ) { my @itemlist; push( - @reservedata, + @billingdata, { l_accountype => $data->{l_accounttype}, l_description => $data->{l_description}, @@ -200,7 +200,7 @@ $template->param( from => $startdate, to => $enddate, ratio => $max_bill, - reserveloop => \@reservedata, + billingloop => \@billingdata, "BiblioDefaultView".C4::Context->preference("BiblioDefaultView") => 1, DHTMLcalendar_dateformat => C4::Dates->DHTMLcalendar(), ); diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/billing.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/billing.tmpl index 26463accba..8cd001554d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/billing.tmpl +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/billing.tmpl @@ -107,7 +107,7 @@ Calendar.setup(
- +
Patron @@ -135,7 +135,7 @@ Calendar.setup( - +
-- 2.20.1