Bug 11692: fix display of additional bib information in OPAC "most popular" pag
[koha.git] / patroncards / edit-batch.pl
blobb0cd3b35d2fd05694d48a00cfdbeaf41da2389e9
1 #!/usr/bin/perl
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
11 # version.
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.
21 use strict;
22 use warnings;
23 use vars qw($debug);
25 use CGI;
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);
30 use C4::Creators;
31 use C4::Patroncards;
33 my $cgi = new CGI;
34 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
36 template_name => "patroncards/edit-batch.tmpl",
37 query => $cgi,
38 type => "intranet",
39 authnotrequired => 0,
40 flagsrequired => { catalogue => 1 },
41 debug => 1,
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 = [ {_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);
69 if ($err) {
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
71 exit;
74 elsif ($op eq 'delete') {
75 $err = C4::Creators::Batch::delete(batch_id => $batch_id, branch_code => $branch_code);
76 if ($err) {
77 print $cgi->redirect("edit-batch.pl?op=edit&batch_id=$batch_id&error=404");
78 exit;
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;
84 if ($branch_code){
85 foreach my $borrower_number (@borrower_numbers) {
86 $err = $batch->add_item($borrower_number);
88 if ($err) {
89 print $cgi->redirect("edit-batch.pl?op=edit&batch_id=$batch_id&error=401");
90 exit;
93 else {
94 print $cgi->redirect("edit-batch.pl?op=edit&batch_id=$batch_id&error=402");
95 exit;
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");
104 exit;
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");
114 exit;
116 $batch = C4::Patroncards::Batch->new(branch_code => $branch_code);
117 $batch_id = $batch->get_attr('batch_id');
119 else {
120 warn sprintf('Batch edit interface called an unsupported operation: %s',$op);
121 print $cgi->redirect("manage.pl?card_element=batch&error=202");
122 exit;
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);
130 $template->param(
131 op => $op,
132 batch_id => $batch_id,
133 table_loop => $table,
134 duplicate_message => $duplicate_message,
135 duplicate_count => $duplicate_count,
136 error => $errstr,
139 output_html_with_http_headers $cgi, $cookie, $template->output;