3 # Copyright 2006 Katipo Communications.
4 # Parts Copyright 2009 Foundations Bible College.
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 use autouse 'Data::Dumper' => qw(Dumper);
28 use C4
::Auth
qw(get_template_and_user);
29 use C4
::Output
qw(output_html_with_http_headers);
34 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
36 template_name
=> "patroncards/edit-batch.tmpl",
40 flagsrequired
=> { catalogue
=> 1 },
46 my $duplicate_count = undef;
47 my $duplicate_message = undef;
50 my $display_columns = [ {_card_number
=> {label
=> 'Card Number', link_field
=> 0}},
51 {_summary
=> {label
=> 'Summary', link_field
=> 0}},
52 {borrowernumber
=> {label
=> 'Borrower Number', link_field
=> 0}},
53 {select => {label
=> 'Select', value
=> '_label_id'}},
55 my $op = $cgi->param('op') || 'new';
56 my $batch_id = $cgi->param('element_id') || $cgi->param('batch_id') || undef;
57 my @label_ids = $cgi->param('label_id') if $cgi->param('label_id');
58 my @item_numbers = $cgi->param('item_number') if $cgi->param('item_number');
59 my @borrower_numbers = $cgi->param('borrower_number') if $cgi->param('borrower_number');
60 my $errstr = $cgi->param('error') || '';
62 my $branch_code = C4
::Context
->userenv->{'branch'};
64 if ($op eq 'remove') {
65 $batch = C4
::Patroncards
::Batch
->retrieve(batch_id
=> $batch_id);
66 foreach my $label_id (@label_ids) {
67 $err = $batch->remove_item($label_id);
70 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
74 elsif ($op eq 'delete') {
75 $err = C4
::Creators
::Batch
::delete(batch_id
=> $batch_id, branch_code
=> $branch_code);
77 print $cgi->redirect("edit-batch.pl?op=edit&batch_id=$batch_id&error=404");
81 elsif ($op eq 'add') {
82 $batch = C4
::Patroncards
::Batch
->retrieve(batch_id
=> $batch_id);
83 $batch = C4
::Patroncards
::Batch
->new(branch_code
=> $branch_code) if $batch == -2;
85 foreach my $borrower_number (@borrower_numbers) {
86 $err = $batch->add_item($borrower_number);
89 print $cgi->redirect("edit-batch.pl?op=edit&batch_id=$batch_id&error=401");
94 print $cgi->redirect("edit-batch.pl?op=edit&batch_id=$batch_id&error=402");
98 elsif ($op eq 'de_duplicate') {
99 $batch = C4
::Patroncards
::Batch
->retrieve(batch_id
=> $batch_id);
100 $duplicate_count = $batch->remove_duplicates();
101 $duplicate_message = 1 if $duplicate_count != -1;
102 if ($duplicate_count == -1) {
103 print $cgi->redirect("edit-batch.pl?op=edit&batch_id=$batch_id&error=405");
107 elsif ($op eq 'edit') {
108 $batch = C4
::Patroncards
::Batch
->retrieve(batch_id
=> $batch_id);
110 elsif ($op eq 'new') {
111 if ($branch_code eq '') {
112 warn sprintf('Batch edit interface called with an invalid/non-existent branch code: %s',$branch_code ?
$branch_code : 'NULL');
113 print $cgi->redirect("manage.pl?card_element=batch&error=203");
116 $batch = C4
::Patroncards
::Batch
->new(branch_code
=> $branch_code);
117 $batch_id = $batch->get_attr('batch_id');
120 warn sprintf('Batch edit interface called an unsupported operation: %s',$op);
121 print $cgi->redirect("manage.pl?card_element=batch&error=202");
125 my $items = $batch->get_attr('items');
126 $db_rows = get_card_summary
(items
=> $items, batch_id
=> $batch_id);
128 my $table = html_table
($display_columns, $db_rows);
132 batch_id
=> $batch_id,
133 table_loop
=> $table,
134 duplicate_message
=> $duplicate_message,
135 duplicate_count
=> $duplicate_count,
139 output_html_with_http_headers
$cgi, $cookie, $template->output;