replace syslog with warns
[koha.git] / labels / label-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 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.
12 #
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.
16 #
17 # You should have received a copy of the GNU General Public License along with
18 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
19 # Suite 330, Boston, MA  02111-1307 USA
20
21 use strict;
22 use warnings;
23 use vars qw($debug);
24
25 use CGI;
26 use HTML::Template::Pro;
27
28 use C4::Auth qw(get_template_and_user);
29 use C4::Output qw(output_html_with_http_headers);
30 use C4::Branch qw(get_branch_code_from_name);
31 use C4::Labels::Lib 1.000000 qw(get_label_summary html_table);
32 use C4::Labels::Batch 1.000000;
33
34 my $cgi = new CGI;
35 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
36     {
37         template_name   => "labels/label-edit-batch.tmpl",
38         query           => $cgi,
39         type            => "intranet",
40         authnotrequired => 0,
41         flagsrequired   => { catalogue => 1 },
42         debug           => 1,
43     }
44 );
45
46 my $err = 0;
47 my $errstr = undef;
48 my $duplicate_count = undef;
49 my $duplicate_message = undef;
50 my $db_rows = {};
51 my $batch = undef;
52 my $display_columns = [ {_label_number  => {label => 'Label Number', link_field => 0}},
53                         {_summary       => {label => 'Summary', link_field => 0}},
54                         {_item_type     => {label => 'Item Type', link_field => 0}},
55                         {_barcode       => {label => 'Barcode', link_field => 0}},
56                         {select         => {label => 'Select', value => '_label_id'}},
57                       ];
58 my $op = $cgi->param('op') || 'edit';
59 my $batch_id = $cgi->param('element_id') || $cgi->param('batch_id') || undef;
60 my @label_ids = $cgi->param('label_id') if $cgi->param('label_id');
61 my @item_numbers = $cgi->param('item_number') if $cgi->param('item_number');
62
63 my $branch_code = get_branch_code_from_name($template->param('LoginBranchname'));
64
65 if ($op eq 'remove') {
66     $batch = C4::Labels::Batch->retrieve(batch_id => $batch_id);
67     foreach my $label_id (@label_ids) {
68     $err = $batch->remove_item($label_id);
69     }
70     $errstr = "item(s) not removed from batch $batch_id." if $err;
71 #    Something like this would be nice to avoid problems with the browser's 'refresh' button, but it needs an error handling mechanism...
72 #    print $cgi->redirect("label-edit-batch.pl?op=edit&batch_id=$batch_id");
73 #    exit;
74 }
75 elsif ($op eq 'delete') {
76     $err = C4::Labels::Batch::delete(batch_id => $batch_id, branch_code => $branch_code);
77     $errstr = "batch $batch_id was not deleted." if $err;
78 }
79 elsif ($op eq 'add') {
80     $batch = C4::Labels::Batch->retrieve(batch_id => $batch_id);
81     $batch = C4::Labels::Batch->new(branch_code => $branch_code) if $batch == -2;
82     if ($branch_code){
83         foreach my $item_number (@item_numbers) {
84             $err = $batch->add_item($item_number);
85         }
86         $errstr = "item(s) not added to batch $batch_id." if $err;
87     }
88     else {
89         $err = 1;
90         $errstr = "items(s) not added, the error was: Branch is not set, you please set your branch before adding items to a batch";
91     }
92 }
93 elsif ($op eq 'new') {
94     $batch = C4::Labels::Batch->new(branch_code => $branch_code);
95     $batch_id = $batch->get_attr('batch_id');
96 }
97 elsif ($op eq 'de_duplicate') {
98     $batch = C4::Labels::Batch->retrieve(batch_id => $batch_id);
99     $duplicate_count = $batch->remove_duplicates();
100     $duplicate_message = 1 if $duplicate_count != -1;
101     $errstr = "batch $batch_id not fully de-duplicated." if $duplicate_count == -1;
102 }
103 else { # edit
104     $batch = C4::Labels::Batch->retrieve(batch_id => $batch_id);
105 }
106
107 my $items = $batch->get_attr('items');
108 $db_rows = get_label_summary(items => $items, batch_id => $batch_id);
109
110 my $table = html_table($display_columns, $db_rows);
111
112 $template->param(   
113                 err         => $err,
114                 errstr      => $errstr,
115                 ) if ($err ne 0);
116
117 $template->param(
118                 op                      => $op,
119                 batch_id                => $batch_id,
120                 table_loop              => $table,
121                 duplicate_message       => $duplicate_message,
122                 duplicate_count         => $duplicate_count,
123                 );
124
125 output_html_with_http_headers $cgi, $cookie, $template->output;