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);
30 use Koha
::Patron
::Discharge
;
35 unless ( C4
::Context
->preference('useDischarge') ) {
36 print $input->redirect("/cgi-bin/koha/errors/404.pl");
40 my $op = $input->param("op") || '';
42 # Getting the template and auth
43 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
({
44 template_name
=> "opac-discharge.tt",
50 my $can_be_discharged = Koha
::Patron
::Discharge
::can_be_discharged
({ borrowernumber
=> $loggedinuser });
51 if ($can_be_discharged == 0) {
52 $template->param( has_checkouts
=> 1 );
55 if ( $op eq 'request' ) {
56 my $success = Koha
::Patron
::Discharge
::request
({
57 borrowernumber
=> $loggedinuser,
61 $template->param( success
=> 1 );
64 $template->param( has_issues
=> 1 );
67 elsif ( $op eq 'get' ) {
71 my $patron = Koha
::Patrons
->find( $loggedinuser );
72 my $pdf_path = Koha
::Patron
::Discharge
::generate_as_pdf
({
73 borrowernumber
=> $loggedinuser,
74 branchcode
=> $patron->branchcode,
79 -type
=> 'application/pdf',
81 -attachment
=> "discharge_$loggedinuser.pdf",
83 open my $fh, '<', $pdf_path;
91 $template->param( messages
=> [ {type
=> 'error', code
=> 'unable_to_generate_pdf'} ] );
95 my $pending = Koha
::Patron
::Discharge
::count
({
96 borrowernumber
=> $loggedinuser,
99 # FIXME looks like $available is not needed
100 # If a user is discharged they have a validated discharge available
101 my $available = Koha
::Patron
::Discharge
::count
({
102 borrowernumber
=> $loggedinuser,
106 available
=> $available && Koha
::Patron
::Discharge
::is_discharged
({borrowernumber
=> $loggedinuser}),
111 $template->param( dischargeview
=> 1 );
113 output_html_with_http_headers
$input, $cookie, $template->output, undef, { force_no_caching
=> 1 };