Bug 19180: Add vendor name to breadcrumbs when closing an order
[koha.git] / members / paycollect.pl
blobf880f575c86ff5db1023c31f8d7b31bc165f811a
1 #!/usr/bin/perl
2 # Copyright 2009,2010 PTFS Inc.
3 # Copyright 2011 PTFS-Europe Ltd
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20 use strict;
21 use warnings;
22 use URI::Escape;
23 use C4::Context;
24 use C4::Auth;
25 use C4::Output;
26 use CGI qw ( -utf8 );
27 use C4::Members;
28 use C4::Members::Attributes qw(GetBorrowerAttributes);
29 use C4::Accounts;
30 use C4::Koha;
31 use Koha::Patron::Images;
32 use Koha::Patrons;
33 use Koha::Account;
35 use Koha::Patron::Categories;
37 my $input = CGI->new();
39 my $updatecharges_permissions = $input->param('writeoff_individual') ? 'writeoff' : 'remaining_permissions';
40 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
41 { template_name => 'members/paycollect.tt',
42 query => $input,
43 type => 'intranet',
44 authnotrequired => 0,
45 flagsrequired => { borrowers => 1, updatecharges => $updatecharges_permissions },
46 debug => 1,
50 # get borrower details
51 my $borrowernumber = $input->param('borrowernumber');
52 my $patron = Koha::Patrons->find( $borrowernumber );
53 unless ( $patron ) {
54 print $input->redirect("/cgi-bin/koha/circ/circulation.pl?borrowernumber=$borrowernumber");
55 exit;
57 my $borrower = $patron->unblessed;
58 my $category = $patron->category;
59 $borrower->{description} = $category->description;
60 $borrower->{category_type} = $category->category_type;
61 my $user = $input->remote_user;
63 my $branch = C4::Context->userenv->{'branch'};
65 my ( $total_due, $accts, $numaccts ) = GetMemberAccountRecords($borrowernumber);
66 my $total_paid = $input->param('paid');
68 my $individual = $input->param('pay_individual');
69 my $writeoff = $input->param('writeoff_individual');
70 my $select_lines = $input->param('selected');
71 my $select = $input->param('selected_accts');
72 my $payment_note = uri_unescape scalar $input->param('payment_note');
73 my $accountlines_id;
75 if ( $individual || $writeoff ) {
76 if ($individual) {
77 $template->param( pay_individual => 1 );
78 } elsif ($writeoff) {
79 $template->param( writeoff_individual => 1 );
81 my $accounttype = $input->param('accounttype');
82 $accountlines_id = $input->param('accountlines_id');
83 my $amount = $input->param('amount');
84 my $amountoutstanding = $input->param('amountoutstanding');
85 my $itemnumber = $input->param('itemnumber');
86 my $description = $input->param('description');
87 my $title = $input->param('title');
88 my $notify_id = $input->param('notify_id');
89 my $notify_level = $input->param('notify_level');
90 $total_due = $amountoutstanding;
91 $template->param(
92 accounttype => $accounttype,
93 accountlines_id => $accountlines_id,
94 amount => $amount,
95 amountoutstanding => $amountoutstanding,
96 title => $title,
97 itemnumber => $itemnumber,
98 individual_description => $description,
99 notify_id => $notify_id,
100 notify_level => $notify_level,
101 payment_note => $payment_note,
103 } elsif ($select_lines) {
104 $total_due = $input->param('amt');
105 $template->param(
106 selected_accts => $select_lines,
107 amt => $total_due,
108 selected_accts_notes => scalar $input->param('notes'),
112 if ( $total_paid and $total_paid ne '0.00' ) {
113 if ( $total_paid < 0 or $total_paid > $total_due ) {
114 $template->param(
115 error_over => 1,
116 total_due => $total_due
118 } else {
119 if ($individual) {
120 my $line = Koha::Account::Lines->find($accountlines_id);
121 Koha::Account->new( { patron_id => $borrowernumber } )->pay(
123 lines => [$line],
124 amount => $total_paid,
125 library_id => $branch,
126 note => $payment_note
129 print $input->redirect(
130 "/cgi-bin/koha/members/pay.pl?borrowernumber=$borrowernumber");
131 } else {
132 if ($select) {
133 if ( $select =~ /^([\d,]*).*/ ) {
134 $select = $1; # ensure passing no junk
136 my @acc = split /,/, $select;
137 my $note = $input->param('selected_accts_notes');
139 my @lines = Koha::Account::Lines->search(
141 borrowernumber => $borrowernumber,
142 amountoutstanding => { '<>' => 0 },
143 accountlines_id => { 'IN' => \@acc },
145 { order_by => 'date' }
148 Koha::Account->new(
150 patron_id => $borrowernumber,
152 )->pay(
154 amount => $total_paid,
155 lines => \@lines,
156 note => $note,
160 else {
161 my $note = $input->param('selected_accts_notes');
162 Koha::Account->new( { patron_id => $borrowernumber } )
163 ->pay( { amount => $total_paid, note => $note } );
166 print $input->redirect(
167 "/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber"
171 } else {
172 $total_paid = '0.00'; #TODO not right with pay_individual
175 borrower_add_additional_fields($borrower, $template);
177 $template->param(%$borrower);
179 $template->param(
180 borrowernumber => $borrowernumber, # some templates require global
181 borrower => $borrower,
182 categoryname => $borrower->{description},
183 total => $total_due,
184 RoutingSerials => C4::Context->preference('RoutingSerials'),
185 ExtendedPatronAttributes => C4::Context->preference('ExtendedPatronAttributes'),
188 output_html_with_http_headers $input, $cookie, $template->output;
190 sub borrower_add_additional_fields {
191 my ( $b_ref, $template ) = @_;
193 # some borrower info is not returned in the standard call despite being assumed
194 # in a number of templates. It should not be the business of this script but in lieu of
195 # a revised api here it is ...
196 if ( $b_ref->{category_type} eq 'C' ) {
197 my $patron_categories = Koha::Patron::Categories->search_limited({ category_type => 'A' }, {order_by => ['categorycode']});
198 $template->param( 'CATCODE_MULTI' => 1) if $patron_categories->count > 1;
199 $template->param( 'catcode' => $patron_categories->next ) if $patron_categories->count == 1;
200 } elsif ( $b_ref->{category_type} eq 'A' || $b_ref->{category_type} eq 'I' ) {
201 $b_ref->{adultborrower} = 1;
204 my $patron_image = Koha::Patron::Images->find($b_ref->{borrowernumber});
205 $template->param( picture => 1 ) if $patron_image;
207 if (C4::Context->preference('ExtendedPatronAttributes')) {
208 $b_ref->{extendedattributes} = GetBorrowerAttributes($b_ref->{borrowernumber});
211 return;