4a8a6b70b2abfe9da30cd7bb7ce60a86ab67a806
[srvgit] / serials / claims.pl
1 #!/usr/bin/perl
2
3 # Parts Copyright 2010 Biblibre
4
5 # This file is part of Koha.
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 use Modern::Perl;
21 use CGI qw ( -utf8 );
22 use C4::Auth;
23 use C4::Serials;
24 use C4::Acquisition;
25 use C4::Output;
26 use C4::Context;
27 use C4::Letters;
28 use C4::Koha qw( GetAuthorisedValues );
29
30 use Koha::AdditionalFields;
31 use Koha::CsvProfiles;
32
33 my $input = CGI->new;
34
35 my $serialid = $input->param('serialid');
36 my $op = $input->param('op');
37 my $claimletter = $input->param('claimletter');
38 my $supplierid = $input->param('supplierid');
39 my $suppliername = $input->param('suppliername');
40
41 # open template first (security & userenv set here)
42 my ($template, $loggedinuser, $cookie)
43 = get_template_and_user({template_name => 'serials/claims.tt',
44             query => $input,
45             type => 'intranet',
46             flagsrequired => {serials => 'claim_serials'},
47             });
48
49 # supplierlist is returned in name order
50 my $supplierlist = GetSuppliersWithLateIssues();
51 for my $s (@{$supplierlist} ) {
52     $s->{count} = scalar  GetLateOrMissingIssues($s->{id});
53     if ($supplierid && $s->{id} == $supplierid) {
54         $s->{selected} = 1;
55     }
56 }
57
58 my $additional_fields = Koha::AdditionalFields->search( { tablename => 'subscription', searchable => 1 } );
59
60 my @serialnums=$input->multi_param('serialid');
61 if (@serialnums) { # i.e. they have been flagged to generate claims
62     my $err;
63     eval {
64         $err = SendAlerts('claimissues',\@serialnums,$input->param("letter_code"));
65         if ( not ref $err or not exists $err->{error} ) {
66             C4::Serials::updateClaim( \@serialnums );
67         }
68     };
69     if ( $@ ) {
70         $template->param(error_claim => $@);
71     } elsif ( ref $err and exists $err->{error} ) {
72         if ( $err->{error} eq "no_email" ) {
73             $template->param( error_claim => 'no_vendor_email' );
74         } elsif ( $err->{error} =~ m|Bad or missing From address| ) {
75             $template->param( error_claim => 'bad_or_missing_sender' );
76         }
77     } else {
78         $template->param( info_claim => 1 );
79     }
80 }
81
82 my $letters = GetLetters({ module => 'claimissues' });
83
84 my @missingissues;
85 if ($supplierid) {
86     my $supplier = Koha::Acquisition::Booksellers->find( $supplierid );
87     @missingissues = GetLateOrMissingIssues($supplierid);
88     foreach my $issue (@missingissues) {
89         $issue->{cannot_claim} = 1
90           unless C4::Serials::can_claim_subscription($issue);
91     }
92     $template->param( suppliername => $supplier->name );
93 }
94
95 $template->param(
96         suploop => $supplierlist,
97         missingissues => \@missingissues,
98         supplierid => $supplierid,
99         claimletter => $claimletter,
100         additional_fields_for_subscription => $additional_fields,
101         csv_profiles => [ Koha::CsvProfiles->search({ type => 'sql', used_for => 'late_issues' }) ],
102         letters => $letters,
103         (uc(C4::Context->preference("marcflavour"))) => 1
104         );
105 output_html_with_http_headers $input, $cookie, $template->output;