View | Details | Raw Unified | Return to bug 6834
Collapse All | Expand All

(-)a/acqui/acqui-home.pl (-1 / +1 lines)
Lines 80-86 my $suggestions_count = CountSuggestion($status); Link Here
80
80
81
my $budget_arr =
81
my $budget_arr =
82
  GetBudgetHierarchy( '', $user->{branchcode},
82
  GetBudgetHierarchy( '', $user->{branchcode},
83
    $template->{param_map}->{'USER_INFO'}[0]->{'borrowernumber'} );
83
    $template->{VARS}->{'USER_INFO'}[0]->{'borrowernumber'} );
84
84
85
my $total      = 0;
85
my $total      = 0;
86
my $totspent   = 0;
86
my $totspent   = 0;
(-)a/acqui/basket.pl (-2 / +1 lines)
Lines 136-142 if ( $op eq 'delete_confirm' ) { Link Here
136
        address3             => $bookseller->{'address3'},
136
        address3             => $bookseller->{'address3'},
137
        address4             => $bookseller->{'address4'},
137
        address4             => $bookseller->{'address4'},
138
      );
138
      );
139
} elsif ($op eq 'attachbasket' && $template->{'param_map'}->{'CAN_user_acquisition_group_manage'} == 1) {
139
} elsif ($op eq 'attachbasket' && $template->{'VARS'}->{'CAN_user_acquisition_group_manage'} == 1) {
140
      print $query->redirect('/cgi-bin/koha/acqui/basketgroup.pl?basketno=' . $basket->{'basketno'} . '&op=attachbasket&booksellerid=' . $booksellerid);
140
      print $query->redirect('/cgi-bin/koha/acqui/basketgroup.pl?basketno=' . $basket->{'basketno'} . '&op=attachbasket&booksellerid=' . $booksellerid);
141
    # check if we have to "close" a basket before building page
141
    # check if we have to "close" a basket before building page
142
} elsif ($op eq 'export') {
142
} elsif ($op eq 'export') {
143
- 

Return to bug 6834