synch'ing 2.2 and head
[srvgit] / acqui.simple / additem.pl
1 #!/usr/bin/perl
2
3 # $Id$
4
5 # Copyright 2000-2002 Katipo Communications
6 #
7 # This file is part of Koha.
8 #
9 # Koha is free software; you can redistribute it and/or modify it under the
10 # terms of the GNU General Public License as published by the Free Software
11 # Foundation; either version 2 of the License, or (at your option) any later
12 # version.
13 #
14 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License along with
19 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
20 # Suite 330, Boston, MA  02111-1307 USA
21
22 use CGI;
23 use strict;
24 use C4::Auth;
25 use C4::Output;
26 use C4::Interface::CGI::Output;
27 use C4::Biblio;
28 use C4::Context;
29 use C4::Koha; # XXX subfield_is_koha_internal_p
30 use C4::Search;
31 use HTML::Template;
32 use MARC::File::USMARC;
33
34 sub find_value {
35         my ($tagfield,$insubfield,$record) = @_;
36         my $result;
37         my $indicator;
38         foreach my $field ($record->field($tagfield)) {
39                 my @subfields = $field->subfields();
40                 foreach my $subfield (@subfields) {
41                         if (@$subfield[0] eq $insubfield) {
42                                 $result .= @$subfield[1];
43                                 $indicator = $field->indicator(1).$field->indicator(2);
44                         }
45                 }
46         }
47         return($indicator,$result);
48 }
49 my $input = new CGI;
50 my $dbh = C4::Context->dbh;
51 my $error = $input->param('error');
52 my $bibid = $input->param('bibid');
53 my $oldbiblionumber = &MARCfind_oldbiblionumber_from_MARCbibid($dbh,$bibid);
54
55 my $op = $input->param('op');
56 my $itemnum = $input->param('itemnum');
57
58 # find itemtype
59 my $itemtype = &MARCfind_frameworkcode($dbh,$bibid);
60
61 my $tagslib = &MARCgettagslib($dbh,1,$itemtype);
62 my $record = MARCgetbiblio($dbh,$bibid);
63 my $itemrecord;
64 my $nextop="additem";
65 my @errors; # store errors found while checking data BEFORE saving item.
66 #------------------------------------------------------------------------------------------------------------------------------
67 if ($op eq "additem") {
68 #------------------------------------------------------------------------------------------------------------------------------
69         # rebuild
70         my @tags = $input->param('tag');
71         my @subfields = $input->param('subfield');
72         my @values = $input->param('field_value');
73         # build indicator hash.
74         my @ind_tag = $input->param('ind_tag');
75         my @indicator = $input->param('indicator');
76         my %indicators;
77         for (my $i=0;$i<=$#ind_tag;$i++) {
78                 $indicators{$ind_tag[$i]} = $indicator[$i];
79         }
80         my $record = MARChtml2marc($dbh,\@tags,\@subfields,\@values,%indicators);
81 # check for item barcode # being unique
82         my $oldbibid = MARCmarc2koha($dbh,$record);
83         my $exists = itemdata($oldbibid->{'barcode'});
84         push @errors,"barcode_not_unique" if($exists);
85 # MARC::Record builded => now, record in DB
86         # if barcode exists, don't create, but report The problem.
87         my ($oldbiblionumber,$oldbibnum,$oldbibitemnum) = NEWnewitem($dbh,$record,$bibid) unless ($exists);
88         if ($exists) {
89                 $nextop = "additem";
90                 $itemrecord = $record;
91         } else {
92                 $nextop = "additem";
93         }
94 #------------------------------------------------------------------------------------------------------------------------------
95 } elsif ($op eq "edititem") {
96 #------------------------------------------------------------------------------------------------------------------------------
97 # retrieve item if exist => then, it's a modif
98         $itemrecord = MARCgetitem($dbh,$bibid,$itemnum);
99         $nextop="saveitem";
100 #------------------------------------------------------------------------------------------------------------------------------
101 } elsif ($op eq "delitem") {
102 #------------------------------------------------------------------------------------------------------------------------------
103 # retrieve item if exist => then, it's a modif
104         &NEWdelitem($dbh,$bibid,$itemnum);
105         $nextop="additem";
106 #------------------------------------------------------------------------------------------------------------------------------
107 } elsif ($op eq "saveitem") {
108 #------------------------------------------------------------------------------------------------------------------------------
109         # rebuild
110         my @tags = $input->param('tag');
111         my @subfields = $input->param('subfield');
112         my @values = $input->param('field_value');
113         # build indicator hash.
114         my @ind_tag = $input->param('ind_tag');
115         my @indicator = $input->param('indicator');
116 #       my $itemnum = $input->param('itemnum');
117         my %indicators;
118         for (my $i=0;$i<=$#ind_tag;$i++) {
119                 $indicators{$ind_tag[$i]} = $indicator[$i];
120         }
121         my $record = MARChtml2marc($dbh,\@tags,\@subfields,\@values,%indicators);
122 # MARC::Record builded => now, record in DB
123 # warn "R: ".$record->as_formatted;
124         my ($oldbiblionumber,$oldbibnum,$oldbibitemnum) = NEWmoditem($dbh,$record,$bibid,$itemnum,0);
125         $itemnum="";
126         $nextop="additem";
127 }
128
129 #
130 #------------------------------------------------------------------------------------------------------------------------------
131 # build screen with existing items. and "new" one
132 #------------------------------------------------------------------------------------------------------------------------------
133
134 my %indicators;
135 $indicators{995}='  ';
136 # now, build existiing item list
137 my $temp = MARCgetbiblio($dbh,$bibid);
138 my @fields = $temp->fields();
139 my %witness; #---- stores the list of subfields used at least once, with the "meaning" of the code
140 my @big_array;
141 #---- finds where items.itemnumber is stored
142 my ($itemtagfield,$itemtagsubfield) = &MARCfind_marc_from_kohafield($dbh,"items.itemnumber",$itemtype);
143 my @itemnums; # array to store itemnums
144 foreach my $field (@fields) {
145         next if ($field->tag()<10);
146         my @subf=$field->subfields;
147         my %this_row;
148 # loop through each subfield
149         for my $i (0..$#subf) {
150                 next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{tab}  ne 10 && ($field->tag() ne $itemtagfield && $subf[$i][0] ne $itemtagsubfield));
151                 $witness{$subf[$i][0]} = $tagslib->{$field->tag()}->{$subf[$i][0]}->{lib} if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{tab}  eq 10);
152                 $this_row{$subf[$i][0]} =$subf[$i][1] if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{tab}  eq 10);
153                 push @itemnums,$this_row{$subf[$i][0]} =$subf[$i][1] if ($field->tag() eq $itemtagfield && $subf[$i][0] eq $itemtagsubfield);
154         }
155         if (%this_row) {
156                 push(@big_array, \%this_row);
157         }
158 }
159 #fill big_row with missing datas
160 foreach my $subfield_code  (keys(%witness)) {
161         for (my $i=0;$i<=$#big_array;$i++) {
162                 $big_array[$i]{$subfield_code}="&nbsp;" unless ($big_array[$i]{$subfield_code});
163         }
164 }
165 # now, construct template !
166 my @item_value_loop;
167 my @header_value_loop;
168 for (my $i=0;$i<=$#big_array; $i++) {
169         my $items_data;
170         foreach my $subfield_code (sort keys(%witness)) {
171                 $items_data .="<td>".$big_array[$i]{$subfield_code}."</td>";
172         }
173         my %row_data;
174         $row_data{item_value} = $items_data;
175         $row_data{itemnum} = $itemnums[$i];
176         push(@item_value_loop,\%row_data);
177 }
178 foreach my $subfield_code (sort keys(%witness)) {
179         my %header_value;
180         $header_value{header_value} = $witness{$subfield_code};
181         push(@header_value_loop, \%header_value);
182 }
183
184 # next item form
185 my @loop_data =();
186 my $i=0;
187 my $authorised_values_sth = $dbh->prepare("select authorised_value,lib from authorised_values where category=? order by lib");
188
189 foreach my $tag (sort keys %{$tagslib}) {
190         my $previous_tag = '';
191 # loop through each subfield
192         foreach my $subfield (sort keys %{$tagslib->{$tag}}) {
193                 next if subfield_is_koha_internal_p($subfield);
194                 next if ($tagslib->{$tag}->{$subfield}->{'tab'}  ne "10");
195                 my %subfield_data;
196                 $subfield_data{tag}=$tag;
197                 $subfield_data{subfield}=$subfield;
198 #               $subfield_data{marc_lib}=$tagslib->{$tag}->{$subfield}->{lib};
199                 $subfield_data{marc_lib}="<span id=\"error$i\">".$tagslib->{$tag}->{$subfield}->{lib}."</span>";
200                 $subfield_data{mandatory}=$tagslib->{$tag}->{$subfield}->{mandatory};
201                 $subfield_data{repeatable}=$tagslib->{$tag}->{$subfield}->{repeatable};
202                 my ($x,$value);
203                 ($x,$value) = find_value($tag,$subfield,$itemrecord) if ($itemrecord);
204                 # search for itemcallnumber if applicable
205                 if ($tagslib->{$tag}->{$subfield}->{kohafield} eq 'items.itemcallnumber' && C4::Context->preference('itemcallnumber')) {
206                         my $CNtag = substr(C4::Context->preference('itemcallnumber'),0,3);
207                         my $CNsubfield = substr(C4::Context->preference('itemcallnumber'),3,1);
208                         my $temp = $record->field($CNtag);
209                         if ($temp) {
210                                 $value = $temp->subfield($CNsubfield);
211                         }
212                 }
213                 if ($tagslib->{$tag}->{$subfield}->{authorised_value}) {
214                         my @authorised_values;
215                         my %authorised_lib;
216                         # builds list, depending on authorised value...
217                         #---- branch
218                         if ($tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "branches" ) {
219                                 my $sth=$dbh->prepare("select branchcode,branchname from branches order by branchname");
220                                 $sth->execute;
221                                 push @authorised_values, "" unless ($tagslib->{$tag}->{$subfield}->{mandatory});
222                                 while (my ($branchcode,$branchname) = $sth->fetchrow_array) {
223                                         push @authorised_values, $branchcode;
224                                         $authorised_lib{$branchcode}=$branchname;
225                                 }
226                         #----- itemtypes
227                         } elsif ($tagslib->{$tag}->{$subfield}->{authorised_value} eq "itemtypes") {
228                                 my $sth=$dbh->prepare("select itemtype,description from itemtypes order by description");
229                                 $sth->execute;
230                                 push @authorised_values, "" unless ($tagslib->{$tag}->{$subfield}->{mandatory});
231                                 while (my ($itemtype,$description) = $sth->fetchrow_array) {
232                                         push @authorised_values, $itemtype;
233                                         $authorised_lib{$itemtype}=$description;
234                                 }
235                         #---- "true" authorised value
236                         } else {
237                                 $authorised_values_sth->execute($tagslib->{$tag}->{$subfield}->{authorised_value});
238                                 push @authorised_values, "" unless ($tagslib->{$tag}->{$subfield}->{mandatory});
239                                 while (my ($value,$lib) = $authorised_values_sth->fetchrow_array) {
240                                         push @authorised_values, $value;
241                                         $authorised_lib{$value}=$lib;
242                                 }
243                         }
244                         $subfield_data{marc_value}= CGI::scrolling_list(-name=>'field_value',
245                                                                                                                                                 -values=> \@authorised_values,
246                                                                                                                                                 -default=>"$value",
247                                                                                                                                                 -labels => \%authorised_lib,
248                                                                                                                                                 -size=>1,
249                                                                                                                                                 -multiple=>0,
250                                                                                                                                                 );
251                 } elsif ($tagslib->{$tag}->{$subfield}->{thesaurus_category}) {
252                         $subfield_data{marc_value}="<input type=\"text\" name=\"field_value\"  size=47 maxlength=255> <a href=\"javascript:Dopop('../thesaurus_popup.pl?category=$tagslib->{$tag}->{$subfield}->{thesaurus_category}&index=$i',$i)\">...</a>";
253                         #"
254                 } elsif ($tagslib->{$tag}->{$subfield}->{'value_builder'}) {
255                         my $plugin="../value_builder/".$tagslib->{$tag}->{$subfield}->{'value_builder'};
256                         require $plugin;
257                         my $extended_param = plugin_parameters($dbh,$record,$tagslib,$i,0);
258                         my ($function_name,$javascript) = plugin_javascript($dbh,$record,$tagslib,$i,0);
259                         $subfield_data{marc_value}="<input type=\"text\" name=\"field_value\"  size=47 maxlength=255 DISABLE READONLY OnFocus=\"javascript:Focus$function_name($i)\" OnBlur=\"javascript:Blur$function_name($i)\"> <a href=\"javascript:Clic$function_name($i)\">...</a> $javascript";
260                 } else {
261                         $subfield_data{marc_value}="<input type=\"text\" name=\"field_value\" value=\"$value\" size=50 maxlength=255>";
262                 }
263 #               $subfield_data{marc_value}="<input type=\"text\" name=\"field_value\">";
264                 push(@loop_data, \%subfield_data);
265                 $i++
266         }
267 }
268 my ($template, $loggedinuser, $cookie)
269     = get_template_and_user({template_name => "acqui.simple/additem.tmpl",
270                              query => $input,
271                              type => "intranet",
272                              authnotrequired => 0,
273                              flagsrequired => {editcatalogue => 1},
274                              debug => 1,
275                              });
276
277 # what's the next op ? it's what we are not in : an add if we're editing, otherwise, and edit.
278 $template->param(item_loop => \@item_value_loop,
279                                                 item_header_loop => \@header_value_loop,
280                                                 bibid => $bibid,
281                                                 biblionumber =>$oldbiblionumber,
282                                                 item => \@loop_data,
283                                                 itemnum => $itemnum,
284                                                 itemtagfield => $itemtagfield,
285                                                 itemtagsubfield =>$itemtagsubfield,
286                                                 op => $nextop,
287                                                 opisadd => ($nextop eq "saveitem")?0:1);
288 foreach my $error (@errors) {
289         $template->param($error => 1);
290 }
291 output_html_with_http_headers $input, $cookie, $template->output;