records appear in message body instead of in attached file
[koha.git] / 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         my ($oldbiblionumber,$oldbibnum,$oldbibitemnum) = NEWmoditem($dbh,$record,$bibid,$itemnum,0);
124         $itemnum="";
125         $nextop="additem";
126 }
127
128 #
129 #------------------------------------------------------------------------------------------------------------------------------
130 # build screen with existing items. and "new" one
131 #------------------------------------------------------------------------------------------------------------------------------
132
133 my %indicators;
134 $indicators{995}='  ';
135 # now, build existiing item list
136 my $temp = MARCgetbiblio($dbh,$bibid);
137 my @fields = $temp->fields();
138 my %witness; #---- stores the list of subfields used at least once, with the "meaning" of the code
139 my @big_array;
140 #---- finds where items.itemnumber is stored
141 my ($itemtagfield,$itemtagsubfield) = &MARCfind_marc_from_kohafield($dbh,"items.itemnumber");
142 my @itemnums; # array to store itemnums
143 foreach my $field (@fields) {
144         next if ($field->tag()<10);
145         my @subf=$field->subfields;
146         my %this_row;
147 # loop through each subfield
148         for my $i (0..$#subf) {
149                 next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{tab}  ne 10 && ($field->tag() ne $itemtagfield && $subf[$i][0] ne $itemtagsubfield));
150                 $witness{$subf[$i][0]} = $tagslib->{$field->tag()}->{$subf[$i][0]}->{lib} if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{tab}  eq 10);
151                 $this_row{$subf[$i][0]} =$subf[$i][1] if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{tab}  eq 10);
152                 push @itemnums,$this_row{$subf[$i][0]} =$subf[$i][1] if ($field->tag() eq $itemtagfield && $subf[$i][0] eq $itemtagsubfield);
153         }
154         if (%this_row) {
155                 push(@big_array, \%this_row);
156         }
157 }
158 #fill big_row with missing datas
159 foreach my $subfield_code  (keys(%witness)) {
160         for (my $i=0;$i<=$#big_array;$i++) {
161                 $big_array[$i]{$subfield_code}="&nbsp;" unless ($big_array[$i]{$subfield_code});
162         }
163 }
164 # now, construct template !
165 my @item_value_loop;
166 my @header_value_loop;
167 for (my $i=0;$i<=$#big_array; $i++) {
168         my $items_data;
169         foreach my $subfield_code (sort keys(%witness)) {
170                 $items_data .="<td>".$big_array[$i]{$subfield_code}."</td>";
171         }
172         my %row_data;
173         $row_data{item_value} = $items_data;
174         $row_data{itemnum} = $itemnums[$i];
175         push(@item_value_loop,\%row_data);
176 }
177 foreach my $subfield_code (sort keys(%witness)) {
178         my %header_value;
179         $header_value{header_value} = $witness{$subfield_code};
180         push(@header_value_loop, \%header_value);
181 }
182
183 # next item form
184 my @loop_data =();
185 my $i=0;
186 my $authorised_values_sth = $dbh->prepare("select authorised_value,lib from authorised_values where category=? order by lib");
187
188 foreach my $tag (sort keys %{$tagslib}) {
189         my $previous_tag = '';
190 # loop through each subfield
191         foreach my $subfield (sort keys %{$tagslib->{$tag}}) {
192                 next if subfield_is_koha_internal_p($subfield);
193                 next if ($tagslib->{$tag}->{$subfield}->{'tab'}  ne "10");
194                 my %subfield_data;
195                 $subfield_data{tag}=$tag;
196                 $subfield_data{subfield}=$subfield;
197 #               $subfield_data{marc_lib}=$tagslib->{$tag}->{$subfield}->{lib};
198                 $subfield_data{marc_lib}="<span id=\"error$i\">".$tagslib->{$tag}->{$subfield}->{lib}."</span>";
199                 $subfield_data{mandatory}=$tagslib->{$tag}->{$subfield}->{mandatory};
200                 $subfield_data{repeatable}=$tagslib->{$tag}->{$subfield}->{repeatable};
201                 my ($x,$value);
202                 ($x,$value) = find_value($tag,$subfield,$itemrecord) if ($itemrecord);
203                 # search for itemcallnumber if applicable
204                 if ($tagslib->{$tag}->{$subfield}->{kohafield} eq 'items.itemcallnumber' && C4::Context->preference('itemcallnumber')) {
205                         my $CNtag = substr(C4::Context->preference('itemcallnumber'),0,3);
206                         my $CNsubfield = substr(C4::Context->preference('itemcallnumber'),3,1);
207                         my $temp = $record->field($CNtag);
208                         if ($temp) {
209                                 $value = $temp->subfield($CNsubfield);
210                         }
211                 }
212                 if ($tagslib->{$tag}->{$subfield}->{authorised_value}) {
213                         my @authorised_values;
214                         my %authorised_lib;
215                         # builds list, depending on authorised value...
216                         #---- branch
217                         if ($tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "branches" ) {
218                                 my $sth=$dbh->prepare("select branchcode,branchname from branches order by branchname");
219                                 $sth->execute;
220                                 push @authorised_values, "" unless ($tagslib->{$tag}->{$subfield}->{mandatory});
221                                 while (my ($branchcode,$branchname) = $sth->fetchrow_array) {
222                                         push @authorised_values, $branchcode;
223                                         $authorised_lib{$branchcode}=$branchname;
224                                 }
225                         #----- itemtypes
226                         } elsif ($tagslib->{$tag}->{$subfield}->{authorised_value} eq "itemtypes") {
227                                 my $sth=$dbh->prepare("select itemtype,description from itemtypes order by description");
228                                 $sth->execute;
229                                 push @authorised_values, "" unless ($tagslib->{$tag}->{$subfield}->{mandatory});
230                                 while (my ($itemtype,$description) = $sth->fetchrow_array) {
231                                         push @authorised_values, $itemtype;
232                                         $authorised_lib{$itemtype}=$description;
233                                 }
234                         #---- "true" authorised value
235                         } else {
236                                 $authorised_values_sth->execute($tagslib->{$tag}->{$subfield}->{authorised_value});
237                                 push @authorised_values, "" unless ($tagslib->{$tag}->{$subfield}->{mandatory});
238                                 while (my ($value,$lib) = $authorised_values_sth->fetchrow_array) {
239                                         push @authorised_values, $value;
240                                         $authorised_lib{$value}=$lib;
241                                 }
242                         }
243                         $subfield_data{marc_value}= CGI::scrolling_list(-name=>'field_value',
244                                                                                                                                                 -values=> \@authorised_values,
245                                                                                                                                                 -default=>"$value",
246                                                                                                                                                 -labels => \%authorised_lib,
247                                                                                                                                                 -size=>1,
248                                                                                                                                                 -multiple=>0,
249                                                                                                                                                 );
250                 } elsif ($tagslib->{$tag}->{$subfield}->{thesaurus_category}) {
251                         $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>";
252                         #"
253                 } elsif ($tagslib->{$tag}->{$subfield}->{'value_builder'}) {
254                         my $plugin="../value_builder/".$tagslib->{$tag}->{$subfield}->{'value_builder'};
255                         require $plugin;
256                         my $extended_param = plugin_parameters($dbh,$record,$tagslib,$i,0);
257                         my ($function_name,$javascript) = plugin_javascript($dbh,$record,$tagslib,$i,0);
258                         $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";
259                 } else {
260                         $subfield_data{marc_value}="<input type=\"text\" name=\"field_value\" value=\"$value\" size=50 maxlength=255>";
261                 }
262 #               $subfield_data{marc_value}="<input type=\"text\" name=\"field_value\">";
263                 push(@loop_data, \%subfield_data);
264                 $i++
265         }
266 }
267 my ($template, $loggedinuser, $cookie)
268     = get_template_and_user({template_name => "acqui.simple/additem.tmpl",
269                              query => $input,
270                              type => "intranet",
271                              authnotrequired => 0,
272                              flagsrequired => {parameters => 1},
273                              debug => 1,
274                              });
275
276 # what's the next op ? it's what we are not in : an add if we're editing, otherwise, and edit.
277 $template->param(item_loop => \@item_value_loop,
278                                                 item_header_loop => \@header_value_loop,
279                                                 bibid => $bibid,
280                                                 biblionumber =>$oldbiblionumber,
281                                                 item => \@loop_data,
282                                                 itemnum => $itemnum,
283                                                 itemtagfield => $itemtagfield,
284                                                 itemtagsubfield =>$itemtagsubfield,
285                                                 op => $nextop,
286                                                 opisadd => ($nextop eq "saveitem")?0:1);
287 foreach my $error (@errors) {
288         $template->param($error => 1);
289 }
290 output_html_with_http_headers $input, $cookie, $template->output;