992c58a75338d58d2fe316b9e81839746e5d93db
[koha.git] / patroncards / edit-batch.pl
1 #!/usr/bin/perl
2 #
3 # Copyright 2006 Katipo Communications.
4 # Parts Copyright 2009 Foundations Bible College.
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20
21
22 use Modern::Perl;
23 use vars qw($debug);
24
25 use CGI qw ( -utf8 );
26 use autouse 'Data::Dumper' => qw(Dumper);
27
28 use C4::Auth qw(get_template_and_user);
29 use C4::Output qw(output_html_with_http_headers);
30 use C4::Creators;
31 use C4::Patroncards;
32 use Koha::Patrons;
33
34 my $cgi = CGI->new;
35 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
36     {
37         template_name   => "patroncards/edit-batch.tt",
38         query           => $cgi,
39         type            => "intranet",
40         flagsrequired   => { catalogue => 1 },
41         debug           => 1,
42     }
43 );
44
45 my $err = 0;
46 my $duplicate_count = undef;
47 my $duplicate_message = undef;
48 my $db_rows = {};
49 my $batch = undef;
50 my $display_columns = [ {_summary       => {label => 'Summary', link_field => 0}},
51                         {borrowernumber => {label => 'Borrower Number', link_field => 0}},
52                         {_action        => {label => 'Actions ', link_field => 0}},
53                         {select         => {label => 'Select', value => '_label_id'}},
54                       ];
55 my $op = $cgi->param('op') || 'new';
56 my $batch_id = $cgi->param('element_id') || $cgi->param('batch_id') || 0;
57 my $description = $cgi->param('description') || '';
58 my ( @label_ids, @item_numbers, @borrower_numbers );
59 @label_ids = $cgi->multi_param('label_id') if $cgi->param('label_id');
60 @item_numbers = $cgi->multi_param('item_number') if $cgi->param('item_number');
61 @borrower_numbers = $cgi->multi_param('borrower_number') if $cgi->param('borrower_number');
62 my $errstr = $cgi->param('error') || '';
63 my $bor_num_list = $cgi->param('bor_num_list') || undef;
64 my $branch_code = C4::Context->userenv->{'branch'};
65
66 if ($op eq 'remove') {
67     $batch = C4::Patroncards::Batch->retrieve(batch_id => $batch_id);
68     foreach my $label_id (@label_ids) {
69     $err = $batch->remove_item($label_id);
70     }
71     if ($err) {
72         print $cgi->redirect("edit-batch.pl?op=edit&batch_id=$batch_id&error=403"); # this allows us to avoid problems with the user hitting their refresh button
73         exit;
74     }
75 }
76 elsif ($op eq 'delete') {
77     $err = C4::Creators::Batch::delete(batch_id => $batch_id, branch_code => $branch_code);
78     if ($err) {
79         print $cgi->redirect("edit-batch.pl?op=edit&batch_id=$batch_id&error=404");
80         exit;
81     }
82 }
83 elsif ($op eq 'add') {
84 if ($bor_num_list) {
85         my @bor_nums_unchecked = split /\n/, $bor_num_list; # $bor_num_list is effectively passed in as a <cr> separated list
86         foreach my $number (@bor_nums_unchecked) {
87             $number =~ s/\r$//; # strip any naughty return chars
88             if ( Koha::Patrons->find( $number )) {  # we must test in case an invalid borrowernumber is passed in; we effectively disgard them atm
89                 my $borrower_number = $number;
90                 push @borrower_numbers, $borrower_number;
91             }
92         }
93     }
94     if ($batch_id != 0) {$batch = C4::Patroncards::Batch->retrieve(batch_id => $batch_id);}
95     if ($batch_id == 0 || $batch == -2) {$batch = C4::Patroncards::Batch->new(branch_code => $branch_code);}
96     $template->param( description => $batch->{'description'} );
97     if ($branch_code){
98         foreach my $borrower_number (@borrower_numbers) {
99             $err = $batch->add_item($borrower_number);
100         }
101         $batch_id = $batch->get_attr('batch_id') if $batch_id == 0; #update batch_id if we added to a new batch
102         if ($err) {
103             print $cgi->redirect("edit-batch.pl?op=edit&batch_id=$batch_id&error=401");
104             exit;
105         }
106     }
107     else {
108         print $cgi->redirect("edit-batch.pl?op=edit&batch_id=$batch_id&error=402");
109         exit;
110     }
111 }
112 elsif ($op eq 'de_duplicate') {
113     $batch = C4::Patroncards::Batch->retrieve(batch_id => $batch_id);
114     $duplicate_count = $batch->remove_duplicates();
115     $duplicate_message = 1 if $duplicate_count != -1;
116     if ($duplicate_count == -1) {
117         print $cgi->redirect("edit-batch.pl?op=edit&batch_id=$batch_id&error=405");
118         exit;
119     }
120 }
121 elsif ($op eq 'edit') {
122     $batch = C4::Patroncards::Batch->retrieve(batch_id => $batch_id);
123     $template->param( description => $batch->{'description'} );
124 }
125 elsif ($op eq 'new') {
126     if ($branch_code eq '') {
127         warn sprintf('Batch edit interface called with an invalid/non-existent branch code: %s',$branch_code ? $branch_code : 'NULL');
128         print $cgi->redirect("manage.pl?card_element=batch&error=203");
129         exit;
130     }
131     $batch = C4::Patroncards::Batch->new(branch_code => $branch_code);
132     $batch_id = $batch->get_attr('batch_id');
133 }
134 else {
135     warn sprintf('Batch edit interface called an unsupported operation: %s',$op);
136     print $cgi->redirect("manage.pl?card_element=batch&error=202");
137     exit;
138 }
139
140 my $items = $batch->get_attr('items');
141 $db_rows = get_card_summary(items => $items, batch_id => $batch_id);
142
143 my $table = html_table($display_columns, $db_rows);
144
145 $template->param(
146                 op                      => $op,
147                 batch_id                => $batch_id,
148                 table_loop              => $table,
149                 duplicate_message       => $duplicate_message,
150                 duplicate_count         => $duplicate_count,
151                 error                   => $errstr,
152                 );
153
154 output_html_with_http_headers $cgi, $cookie, $template->output;