3 # This file is part of Koha.
5 # Copyright 2013 BibLibre
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>.
23 use C4
::Auth
qw(:DEFAULT get_session);
31 use Koha
::Borrower
::Discharge
;
36 my $op = $input->param("op");
38 # Getting the template and auth
39 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
({
40 template_name
=> "opac-discharge.tt",
46 if ( $op eq 'request' ) {
47 my $success = Koha
::Borrower
::Discharge
::request
({
48 borrowernumber
=> $loggedinuser,
52 $template->param( success
=> 1 );
55 $template->param( has_issues
=> 1 );
58 elsif ( $op eq 'get' ) {
62 my $data = GetMember
( borrowernumber
=> $loggedinuser );
63 my $pdf_path = Koha
::Borrower
::Discharge
::generate_as_pdf
({
64 borrowernumber
=> $loggedinuser,
65 branchcode
=> $data->{'branchcode'},
70 -type
=> 'application/pdf',
72 -attachment
=> "discharge_$loggedinuser.pdf",
74 open my $fh, '<', $pdf_path;
82 $template->param( messages
=> [ {type
=> 'error', code
=> 'unable_to_generate_pdf'} ] );
86 my $pending = Koha
::Borrower
::Discharge
::count
({
87 borrowernumber
=> $loggedinuser,
90 my $available = Koha
::Borrower
::Discharge
::count
({
91 borrowernumber
=> $loggedinuser,
95 available
=> $available && Koha
::Borrower
::Discharge
::is_discharged
({borrowernumber
=> $loggedinuser}),
100 $template->param( dischargeview
=> 1 );
102 output_html_with_http_headers
$input, $cookie, $template->output, undef, { force_no_caching
=> 1 };