3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
25 use C4
::Csv
qw( GetCsvProfile );
30 my $supplierid = $query->param('supplierid');
31 my @serialids = $query->param('serialid');
32 my $op = $query->param('op') || q{};
34 my $csv_profile_id = $query->param('csv_profile');
35 my $csv_profile = C4
::Csv
::GetCsvProfile
( $csv_profile_id );
36 die "There is no valid csv profile given" unless $csv_profile;
38 my $csv = Text
::CSV_XS
->new({
41 'sep_char' => $csv_profile->{csv_separator
},
45 my $content = $csv_profile->{content
};
46 my ( @headers, @fields );
50 ([^\
|]+) # fieldname (table.row or row)
55 $field =~ s/[^\.]*\.?//; # Remove the table name if exists.
60 for my $serialid ( @serialids ) {
61 my @missingissues = GetLateOrMissingIssues
($supplierid, $serialid);
62 my $issue = $missingissues[0];
64 for my $field ( @fields ) {
65 push @row, $issue->{$field};
69 # update claim date to let one know they have looked at this missing item
70 updateClaim
($serialid);
74 -type
=> 'plain/text',
75 -attachment
=> "serials-claims.csv",
78 print join( $csv_profile->{csv_separator
}, @headers ) . "\n";
80 for my $row ( @rows ) {
82 my $string = $csv->string;