From c85e22ad538f97ba4fc8bfc6762497d0763b2aea Mon Sep 17 00:00:00 2001 From: Paul Poulain Date: Thu, 24 Dec 2009 17:06:33 +0100 Subject: [PATCH] aqbudget display, minor changes - removed 2 total that means nothing (and were troubling users) - reindented a little (removed tab) --- admin/aqbudgets.pl | 11 +++-------- .../prog/en/modules/admin/aqbudgets.tmpl | 10 ++++------ 2 files changed, 7 insertions(+), 14 deletions(-) diff --git a/admin/aqbudgets.pl b/admin/aqbudgets.pl index 01bfdbc840..71514c4b74 100755 --- a/admin/aqbudgets.pl +++ b/admin/aqbudgets.pl @@ -221,13 +221,13 @@ if ($op eq 'add_form') { } else { AddBudget( $budget_hash ); } - } + } my $branches = GetBranches(); my $budget_period_dropbox = GetBudgetPeriodsDropbox($$period{budget_period_id} ); $template->param( budget_period_dropbox => $budget_period_dropbox, budget_id => $budget_id, - %$period, + %$period, ); my $moo = GetBudgetHierarchy($$period{budget_period_id}, C4::Context->userenv->{branchcode}, $show_mine?$borrower_id:''); @@ -236,7 +236,7 @@ if ($op eq 'add_form') { my $toggle = 0; my @loop; my $period_total = 0; - my ( $period_alloc_total, $base_alloc_total, $base_spent_total, $base_remaining_total ); + my ( $period_alloc_total, $base_spent_total ); use YAML; $debug && warn Dump(@budgets); @@ -282,10 +282,8 @@ if ($op eq 'add_form') { ## TOTALS # adds to total - only if budget is a 'top-level' budget $period_alloc_total += $budget->{'budget_amount_total'} if $budget->{'depth'} == 0; - $base_alloc_total += $budget->{'budget_amount'}; $base_spent_total += $budget->{'budget_spent'}; $budget->{'budget_remaining'} = $budget->{'budget_amount'} - $budget->{'budget_spent'}; - $base_remaining_total += $budget->{'budget_remaining'}; # if amount == 0 dont display... delete $budget->{'budget_unalloc_sublevel'} if $budget->{'budget_unalloc_sublevel'} == 0 ; @@ -312,10 +310,7 @@ if ($op eq 'add_form') { budget => \@loop, budget_period_total => $budget_period_total, period_alloc_total => $num->format_price($period_alloc_total), - base_alloc_total => $num->format_price($base_alloc_total), base_spent_total => $num->format_price($base_spent_total), - base_remaining_total => $num->format_price($base_remaining_total), - period_remaining_total => $num->format_price( $period_alloc_total - $base_alloc_total ), branchloop => \@branchloop2, ); diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tmpl index e056bbb6a0..de3d738dbf 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tmpl +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tmpl @@ -7,8 +7,8 @@