Bug 14280: Add branches fields to discharges letters
[koha.git] / members / discharge.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Copyright 2013 BibLibre
6 #
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.
11 #
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.
16 #
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>.
19
20 =head1 NAME
21
22 discharges.pl
23
24 =head1 DESCRIPTION
25
26 Allows librarian to edit and/or manage borrowers' discharges
27
28 =cut
29
30 use Modern::Perl;
31 use Carp;
32
33 use CGI qw( -utf8 );
34 use C4::Auth;
35 use C4::Output;
36 use C4::Members;
37 use C4::Reserves;
38 use C4::Letters;
39 use Koha::Borrower::Discharge;
40
41 use Koha::DateUtils;
42
43 my $input = new CGI;
44 my ( $template, $loggedinuser, $cookie, $flags ) = get_template_and_user({
45     template_name   => 'members/discharge.tt',
46     query           => $input,
47     type            => 'intranet',
48     authnotrequired => 0,
49     flagsrequired   => { 'borrowers' => '*' },
50 });
51
52 my $borrowernumber;
53 my $data;
54 if ( $input->param('borrowernumber') ) {
55     $borrowernumber = $input->param('borrowernumber');
56
57     # Getting member data
58     $data = GetMember( borrowernumber => $borrowernumber );
59
60     my $can_be_discharged = Koha::Borrower::Discharge::can_be_discharged({
61         borrowernumber => $borrowernumber
62     });
63
64     # Getting reserves
65     my @reserves    = GetReservesFromBorrowernumber($borrowernumber);
66     my $has_reserves = scalar(@reserves);
67
68     # Generating discharge if needed
69     if ( $input->param('discharge') and $can_be_discharged ) {
70         my $is_discharged = Koha::Borrower::Discharge::count({
71             borrowernumber => $borrowernumber,
72             validated      => 1,
73         });
74         unless ($is_discharged) {
75             Koha::Borrower::Discharge::discharge({
76                 borrowernumber => $borrowernumber
77             });
78         }
79         eval {
80             my $pdf_path = Koha::Borrower::Discharge::generate_as_pdf(
81                 { borrowernumber => $borrowernumber, branchcode => $data->{'branchcode'} } );
82
83             binmode(STDOUT);
84             print $input->header(
85                 -type       => 'application/pdf',
86                 -charset    => 'utf-8',
87                 -attachment => "discharge_$borrowernumber.pdf",
88             );
89             open my $fh, '<', $pdf_path;
90             my @lines = <$fh>;
91             close $fh;
92             print @lines;
93             exit;
94         };
95         if ( $@ ) {
96             carp $@;
97             $template->param( messages => [ {type => 'error', code => 'unable_to_generate_pdf'} ] );
98         }
99     }
100
101     $template->param(
102         borrowernumber    => $borrowernumber,
103         biblionumber      => $data->{'biblionumber'},
104         title             => $data->{'title'},
105         initials          => $data->{'initials'},
106         surname           => $data->{'surname'},
107         borrowernumber    => $borrowernumber,
108         firstname         => $data->{'firstname'},
109         cardnumber        => $data->{'cardnumber'},
110         categorycode      => $data->{'categorycode'},
111         category_type     => $data->{'category_type'},
112         categoryname      => $data->{'description'},
113         address           => $data->{'address'},
114         address2          => $data->{'address2'},
115         city              => $data->{'city'},
116         zipcode           => $data->{'zipcode'},
117         country           => $data->{'country'},
118         phone             => $data->{'phone'},
119         email             => $data->{'email'},
120         branchcode        => $data->{'branchcode'},
121         has_reserves      => $has_reserves,
122         can_be_discharged => $can_be_discharged,
123     );
124 }
125
126 $template->param( dischargeview => 1, );
127
128 output_html_with_http_headers $input, $cookie, $template->output;