Bug 7108 - OPAC Translations Display Patch
[koha.git] / admin / aqbudgets.pl
blobdb99759639d7b5fff0dd72bf92a8ef6e2d9c21f9
1 #!/usr/bin/perl
3 #script to administer the aqbudget table
5 # Copyright 2008-2009 BibLibre SARL
7 # This file is part of Koha.
9 # Koha is free software; you can redistribute it and/or modify it under the
10 # terms of the GNU General Public License as published by the Free Software
11 # Foundation; either version 2 of the License, or (at your option) any later
12 # version.
14 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License along
19 # with Koha; if not, write to the Free Software Foundation, Inc.,
20 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 use strict;
23 #use warnings; FIXME - Bug 2505
24 use CGI;
25 use List::Util qw/min/;
26 use Number::Format qw(format_price);
28 use C4::Auth qw/get_user_subpermissions/;
29 use C4::Branch; # GetBranches
30 use C4::Dates qw/format_date format_date_in_iso/;
31 use C4::Auth;
32 use C4::Acquisition;
33 use C4::Budgets; #
34 use C4::Members; # calls GetSortDetails()
35 use C4::Context;
36 use C4::Output;
37 use C4::Koha;
38 use C4::Debug;
39 #use POSIX qw(locale_h);
41 my $input = new CGI;
42 my $dbh = C4::Context->dbh;
44 my ($template, $borrowernumber, $cookie, $staffflags ) = get_template_and_user(
45 { template_name => "admin/aqbudgets.tmpl",
46 query => $input,
47 type => "intranet",
48 authnotrequired => 0,
49 flagsrequired => { acquisition => 'budget_manage' },
50 debug => 0,
54 my $cur = GetCurrency();
55 $template->param( symbol => $cur->{symbol},
56 currency => $cur->{currency}
59 my $op = $input->param('op');
61 # see if the user want to see all budgets or only owned ones
62 my $show_mine = 1; #SHOW BY DEFAULT
63 my $show = $input->param('show'); # SET TO 1, BY A FORM SUMBIT
64 $show_mine = $input->param('show_mine') if $show == 1;
66 # IF USER DOESNT HAVE PERM FOR AN 'ADD', THEN REDIRECT TO THE DEFAULT VIEW...
67 if ( not defined $template->{VARS}->{'CAN_user_acquisition_budget_add_del'} && $op == 'add_form' ) {
68 $op = '';
70 my $num=FormatNumber;
72 my $script_name = "/cgi-bin/koha/admin/aqbudgets.pl";
73 my $budget_hash = $input->Vars;
74 my $budget_id = $$budget_hash{budget_id};
75 my $budget_permission = $input->param('budget_permission');
76 my $filter_budgetbranch = $input->param('filter_budgetbranch');
77 #filtering non budget keys
78 delete $$budget_hash{$_} foreach grep {/filter|^op$|show/} keys %$budget_hash;
79 my $filter_budgetname = $input->param('filter_budgetname');
80 $template->param(
81 notree => ($filter_budgetbranch or $show_mine)
83 # ' ------- get periods stuff ------------------'
84 # IF PERIODID IS DEFINED, GET THE PERIOD - ELSE JUST GET THE ACTIVE PERIOD BY DEFAULT
85 my $period = GetBudgetPeriod($$budget_hash{budget_period_id});
87 $template->param(
88 %$period
90 # ------- get periods stuff ------------------
92 # USED FOR PERMISSION COMPARISON LATER
93 my $borrower_id = $template->{VARS}->{'USER_INFO'}[0]->{'borrowernumber'};
94 my $user = GetMemberDetails($borrower_id);
95 my $user_branchcode = $user->{'branchcode'};
97 $template->param(
98 action => $script_name,
99 script_name => $script_name,
100 show_mine => $show_mine,
101 $op || else => 1,
105 # retrieve branches
106 my ( $budget, );
108 my $branches = GetBranches($show_mine);
109 my @branchloop2;
110 foreach my $thisbranch (keys %$branches) {
111 my %row = (
112 value => $thisbranch,
113 branchname => $branches->{$thisbranch}->{'branchname'},
115 $row{selected} = 1 if $thisbranch eq $filter_budgetbranch;
116 push @branchloop2, \%row;
119 $template->param(auth_cats_loop => GetBudgetAuthCats($$period{budget_period_id}) );
121 # Used to create form to add or modify a record
122 if ($op eq 'add_form') {
123 #### ------------------- ADD_FORM -------------------------
124 # if no buget_id is passed then its an add
125 # pass the period_id to build the dropbox - because we only want to show budgets from this period
126 my $dropbox_disabled;
127 if (defined $budget_id ) { ### MOD
128 $budget = GetBudget($budget_id);
129 $dropbox_disabled = BudgetHasChildren($budget_id);
130 my $borrower = &GetMember( borrowernumber=>$budget->{budget_owner_id} );
131 $budget->{budget_owner_name} = $borrower->{'firstname'} . ' ' . $borrower->{'surname'};
132 $$budget{$_}= sprintf("%.2f", $budget->{$_}) for grep{/amount/} keys %$budget;
135 # build budget hierarchy
136 my %labels;
137 my @values;
138 my $hier = GetBudgetHierarchy($$period{budget_period_id});
139 foreach my $r (@$hier) {
140 $r->{budget_code_indent} =~ s/ /\~/g; #
141 $labels{"$r->{budget_id}"} = $r->{budget_code_indent};
142 push @values, $r->{budget_id};
144 push @values, '';
145 # if no buget_id is passed then its an add
146 my $budget_parent;
147 my $budget_parent_id;
148 if ($budget){
149 $budget_parent_id = $budget->{'budget_parent_id'} ;
150 }else{
151 $budget_parent_id = $input->param('budget_parent_id');
153 $budget_parent = GetBudget($budget_parent_id);
155 # build branches select
156 my $branches = GetBranches;
157 my @branchloop_select;
158 foreach my $thisbranch ( sort keys %$branches ) {
159 my %row = (
160 value => $thisbranch,
161 branchname => $branches->{$thisbranch}->{'branchname'},
163 $row{selected} = 1 if $thisbranch eq $budget->{'budget_branchcode'};
164 push @branchloop_select, \%row;
167 # populates the YUI planning button
168 my $categories = GetAuthorisedValueCategories();
169 my @auth_cats_loop1 = ();
170 foreach my $category (@$categories) {
171 my $entry = { category => $category,
172 selected => $budget->{sort1_authcat} eq $category ?1:0,
174 push @auth_cats_loop1, $entry;
176 my @auth_cats_loop2 = ();
177 foreach my $category (@$categories) {
178 my $entry = { category => $category,
179 selected => $budget->{sort2_authcat} eq $category ?1:0,
181 push @auth_cats_loop2, $entry;
183 $template->param(authorised_value_categories1 => \@auth_cats_loop1);
184 $template->param(authorised_value_categories2 => \@auth_cats_loop2);
186 if($budget->{'budget_permission'}){
187 my $budget_permission = "budget_perm_".$budget->{'budget_permission'};
188 $template->param($budget_permission => 1);
191 # if no buget_id is passed then its an add
192 $template->param(
193 add_validate => 1,
194 dateformat => C4::Dates->new()->visual(),
195 budget_parent_id => $budget_parent->{'budget_id'},
196 budget_parent_name => $budget_parent->{'budget_name'},
197 branchloop_select => \@branchloop_select,
198 %$period,
199 %$budget,
201 # END $OP eq ADD_FORM
202 #---------------------- DEFAULT DISPLAY BELOW ---------------------
204 # called by default form, used to confirm deletion of data in DB
205 } elsif ($op eq 'delete_confirm') {
207 my $budget = GetBudget($budget_id);
208 $template->param(
209 budget_id => $budget->{'budget_id'},
210 budget_code => $budget->{'budget_code'},
211 budget_name => $budget->{'budget_name'},
212 budget_amount => $num->format_price( $budget->{'budget_amount'} ),
214 # END $OP eq DELETE_CONFIRM
215 # called by delete_confirm, used to effectively confirm deletion of data in DB
216 } else{
217 if ( $op eq 'delete_confirmed' ) {
218 my $rc = DelBudget($budget_id);
219 }elsif( $op eq 'add_validate' ) {
220 if ( defined $$budget_hash{budget_id} ) {
221 ModBudget( $budget_hash );
222 } else {
223 AddBudget( $budget_hash );
226 my $branches = GetBranches();
227 $template->param(
228 budget_id => $budget_id,
229 %$period,
232 my $moo = GetBudgetHierarchy($$period{budget_period_id}, C4::Context->userenv->{branchcode}, $show_mine?$borrower_id:'');
233 my @budgets = @$moo; #FIXME
235 my $toggle = 0;
236 my @loop;
237 my $period_total = 0;
238 my ( $period_alloc_total, $base_spent_total );
240 #This Looks WEIRD to me : should budgets be filtered in such a way ppl who donot own it would not see the amount spent on the budget by others ?
242 foreach my $budget (@budgets) {
243 #Level and sublevels total spent
244 $budget->{'total_levels_spent'} = GetChildBudgetsSpent($budget->{"budget_id"});
246 # PERMISSIONS
247 unless($staffflags->{'superlibrarian'} % 2 == 1 ) {
248 #IF NO PERMS, THEN DISABLE EDIT/DELETE
249 unless ( $template->{VARS}->{'CAN_user_acquisition_budget_modify'} ) {
250 $budget->{'budget_lock'} = 1;
252 # check budget permission
253 if ( $$period{budget_period_locked} == 1 ) {
254 $budget->{'budget_lock'} = 1;
256 } elsif ( $budget->{budget_permission} == 1 ) {
258 if ( $borrower_id != $budget->{'budget_owner_id'} ) {
259 $budget->{'budget_lock'} = 1;
261 # check parent perms too
262 my $parents_perm = 0;
263 if ( $budget->{depth} > 0 ) {
264 $parents_perm = CheckBudgetParentPerm( $budget, $borrower_id );
265 delete $budget->{'budget_lock'} if $parents_perm == '1';
267 } elsif ( $budget->{budget_permission} == 2 ) {
269 $budget->{'budget_lock'} = 1 if $user_branchcode ne $budget->{budget_branchcode};
271 } # ...SUPER_LIB END
273 # if a budget search doesnt match, next
274 if ($filter_budgetname ) {
275 next unless $budget->{budget_code} =~ m/$filter_budgetname/ ||
276 $budget->{name} =~ m/$filter_budgetname/ ;
278 if ($filter_budgetbranch ) {
279 next unless $budget->{budget_branchcode} =~ m/$filter_budgetbranch/;
282 ## TOTALS
283 # adds to total - only if budget is a 'top-level' budget
284 $period_alloc_total += $budget->{'budget_amount_total'} if $budget->{'depth'} == 0;
285 $base_spent_total += $budget->{'budget_spent'};
286 $budget->{'budget_remaining'} = $budget->{'budget_amount'} - $budget->{'total_levels_spent'};
288 # if amount == 0 dont display...
289 delete $budget->{'budget_unalloc_sublevel'} if $budget->{'budget_unalloc_sublevel'} == 0 ;
291 $budget->{'remaining_pos'} = 1 if $budget->{'budget_remaining'} > 0;
292 $budget->{'remaining_neg'} = 1 if $budget->{'budget_remaining'} < 0;
293 for (grep {/total_levels_spent|budget_spent|budget_amount|budget_remaining|budget_unalloc/} keys %$budget){
294 $budget->{$_} = $num->format_price( $budget->{$_} ) if defined($budget->{$_})
297 # Value of budget_spent equals 0 instead of undefined value
298 $budget->{"budget_spent"} = $num->format_price(0) unless defined($budget->{"budget_spent"});
300 my $borrower = &GetMember( borrowernumber=>$budget->{budget_owner_id} );
301 $budget->{"budget_owner_name"} = $borrower->{'firstname'} . ' ' . $borrower->{'surname'};
302 $budget->{"budget_borrowernumber"} = $borrower->{'borrowernumber'};
304 #Make a list of parents of the bugdet
305 my @budget_hierarchy;
306 push @budget_hierarchy, { element_name => $budget->{"budget_name"}, element_id => $budget->{"budget_id"} };
307 my $parent_id = $budget->{"budget_parent_id"};
308 while ($parent_id) {
309 my $parent = GetBudget($parent_id);
310 push @budget_hierarchy, { element_name => $parent->{"budget_name"}, element_id => $parent->{"budget_id"} };
311 $parent_id = $parent->{"budget_parent_id"};
313 push @budget_hierarchy, { element_name => $period->{"budget_period_description"} };
314 @budget_hierarchy = reverse(@budget_hierarchy);
316 push( @loop, { %{$budget},
317 branchname => $branches->{ $budget->{branchcode} }->{branchname},
318 budget_hierarchy => \@budget_hierarchy,
323 my $budget_period_total;
324 if ( $period->{budget_period_total} ) {
325 $budget_period_total =
326 $num->format_price( $period->{budget_period_total} );
328 $template->param(
329 else => 1,
330 budget => \@loop,
331 budget_period_total => $budget_period_total,
332 period_alloc_total => $num->format_price($period_alloc_total),
333 base_spent_total => $num->format_price($base_spent_total),
334 branchloop => \@branchloop2,
337 } #---- END $OP eq DEFAULT
339 output_html_with_http_headers $input, $cookie, $template->output;