e0f4b2d8cc2b6b77a4b6b3996844a165eda49ea2
[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 qw( carp );
32
33 use CGI qw( -utf8 );
34 use C4::Auth qw( get_template_and_user );
35 use C4::Output qw( output_and_exit_if_error output_and_exit output_html_with_http_headers );
36 use C4::Members;
37 use C4::Reserves;
38 use C4::Letters;
39 use Koha::Patron::Discharge;
40 use Koha::Patrons;
41
42
43 my $input = CGI->new;
44
45 my ( $template, $loggedinuser, $cookie, $flags ) = get_template_and_user({
46     template_name   => 'members/discharge.tt',
47     query           => $input,
48     type            => 'intranet',
49     flagsrequired   => { 'borrowers' => 'edit_borrowers' },
50 });
51
52 my $borrowernumber = $input->param('borrowernumber');
53
54 unless ( C4::Context->preference('useDischarge') ) {
55    print $input->redirect("/cgi-bin/koha/circ/circulation.pl?borrowernumber=$borrowernumber&nopermission=1");
56    exit;
57 }
58
59 my $logged_in_user = Koha::Patrons->find( $loggedinuser );
60 my $patron = Koha::Patrons->find( $borrowernumber );
61 output_and_exit_if_error( $input, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } );
62
63 my $can_be_discharged = Koha::Patron::Discharge::can_be_discharged({
64     borrowernumber => $borrowernumber
65 });
66
67 # Generating discharge if needed
68 if ( $input->param('discharge') and $can_be_discharged ) {
69     my $is_discharged = Koha::Patron::Discharge::is_discharged({
70         borrowernumber => $borrowernumber,
71     });
72     unless ($is_discharged) {
73         Koha::Patron::Discharge::discharge({
74             borrowernumber => $borrowernumber
75         });
76     }
77     eval {
78         my $pdf_path = Koha::Patron::Discharge::generate_as_pdf(
79             { borrowernumber => $borrowernumber, branchcode => $patron->branchcode } );
80
81         binmode(STDOUT);
82         print $input->header(
83             -type       => 'application/pdf',
84             -charset    => 'utf-8',
85             -attachment => "discharge_$borrowernumber.pdf",
86         );
87         open my $fh, '<', $pdf_path;
88         my @lines = <$fh>;
89         close $fh;
90         print @lines;
91     };
92     if ( $@ ) {
93         carp $@;
94         $template->param( messages => [ {type => 'error', code => 'unable_to_generate_pdf'} ] );
95     } else {
96         # no error, pdf is sent, so stop sending data to browser
97         exit;
98     }
99 }
100
101 # Already generated discharges
102 my @validated_discharges = Koha::Patron::Discharge::get_validated({
103     borrowernumber => $borrowernumber,
104 });
105
106 $template->param(
107     patron => $patron,
108     can_be_discharged => $can_be_discharged,
109     validated_discharges => \@validated_discharges,
110 );
111
112 $template->param( dischargeview => 1, );
113
114 output_html_with_http_headers $input, $cookie, $template->output;