Bug 4212: Adds license statement to opac-search.pl
[koha.git] / acqui / addorderiso2709.pl
1 #!/usr/bin/perl
2
3 #A script that lets the user populate a basket from an iso2709 file
4 #the script first displays a list of import batches, then when a batch is selected displays all the biblios in it.
5 #The user can then pick which biblios he wants to order
6 #written by john.soros@biblibre.com 01/12/2008
7
8 # Copyright 2008 - 2009 BibLibre SARL
9 #
10 # This file is part of Koha.
11 #
12 # Koha is free software; you can redistribute it and/or modify it under the
13 # terms of the GNU General Public License as published by the Free Software
14 # Foundation; either version 2 of the License, or (at your option) any later
15 # version.
16 #
17 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
18 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
19 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License along with
22 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
23 # Suite 330, Boston, MA  02111-1307 USA
24
25 use strict;
26 use warnings;
27 use CGI;
28 use C4::Context;
29 use C4::Auth;
30 use C4::Input;
31 use C4::Output;
32 use C4::ImportBatch qw/GetImportBatchRangeDesc GetNumberOfNonZ3950ImportBatches GetImportRecordMatches GetImportBibliosRange GetImportBatchOverlayAction GetImportBatchNoMatchAction GetImportBatchItemAction GetImportRecordMarc GetImportBatch/;
33 use C4::Matcher;
34 use C4::Search qw/FindDuplicate BiblioAddAuthorities/;
35 use C4::Acquisition qw/NewOrder/;
36 use C4::Biblio;
37 use C4::Items;
38 use C4::Koha qw/GetItemTypes/;
39 use C4::Budgets qw/GetBudgets/;
40 use C4::Acquisition qw/NewOrderItem/;
41 use C4::Bookseller qw/GetBookSellerFromId/;
42
43 my $input = new CGI;
44 my ($template, $loggedinuser, $cookie) = get_template_and_user({
45                                         template_name => "acqui/addorderiso2709.tmpl",
46                                         query => $input,
47                                         type => "intranet",
48                                         authnotrequired => 0,
49                                         flagsrequired   => { acquisition => 'order_manage' },
50                                         debug => 1,
51                                         });
52 my $cgiparams = $input->Vars;
53 my $op = $cgiparams->{'op'};
54 my $booksellerid  = $input->param('booksellerid');
55 my $bookseller = GetBookSellerFromId($booksellerid);
56
57 $template->param(scriptname => "/cgi-bin/koha/acqui/addorderiso2709.pl",
58                 booksellerid => $booksellerid,
59                 booksellername => $bookseller->{name},
60                 );
61 my $ordernumber;
62
63 if ($cgiparams->{'import_batch_id'} && $op eq ""){
64     $op = "batch_details";
65 }
66
67 #Needed parameters:
68 if (! $cgiparams->{'basketno'}){
69     die "Basketnumber required to order from iso2709 file import";
70 }
71
72 if ($op eq ""){
73     $template->param("basketno" => $cgiparams->{'basketno'});
74 #display batches
75     import_batches_list($template);
76 } elsif ($op eq "batch_details"){
77 #display lines inside the selected batch
78     $template->param("batch_details" => 1,
79                      "basketno"      => $cgiparams->{'basketno'});
80     import_biblios_list($template, $cgiparams->{'import_batch_id'});
81     
82 } elsif ($op eq 'import_records'){
83 #import selected lines
84     $template->param('basketno' => $cgiparams->{'basketno'});
85 # Budget_id is mandatory for adding an order, we just add a default, the user needs to modify this aftewards
86     my $budgets = GetBudgets();
87     if (scalar @$budgets == 0){
88         die "No budgets defined, can't continue";
89     }
90     my $budget_id = @$budgets[0]->{'budget_id'};
91 #get all records from a batch, and check their import status to see if they are checked.
92 #(default values: quantity 1, uncertainprice yes, first budget)
93
94     # retrieve the file you want to import
95     my $import_batch_id = $cgiparams->{'import_batch_id'};
96     my $biblios = GetImportBibliosRange($import_batch_id);
97     for my $biblio (@$biblios){
98         if($cgiparams->{'order-'.$biblio->{'import_record_id'}}){
99             my ($marcblob, $encoding) = GetImportRecordMarc($biblio->{'import_record_id'});
100             my $marcrecord = MARC::Record->new_from_usmarc($marcblob) || die "couldn't translate marc information";
101             my ($duplicatetitle, $biblionumber);
102             if(!(($biblionumber,$duplicatetitle) = FindDuplicate($marcrecord))){
103 #FIXME: missing: marc21 support (should be same with different field)
104                 if ( C4::Context->preference("marcflavour") eq 'UNIMARC' ) {
105                     my $itemtypeid = "itemtype-" . $biblio->{'import_record_id'};
106                     $marcrecord->field(200)->update("b" => $cgiparams->{$itemtypeid});
107                 }
108                 # add the biblio
109                 my $bibitemnum;
110                 # remove ISBN -
111                 my ($isbnfield,$isbnsubfield) = GetMarcFromKohaField('biblioitems.isbn','');
112                 if ( $marcrecord->field($isbnfield) ) {
113                     foreach my $field ( $marcrecord->field($isbnfield) ) {
114                         foreach my $subfield ( $field->subfield($isbnsubfield) ) {
115                             my $newisbn = $field->subfield($isbnsubfield);
116                             $newisbn =~ s/-//g;
117                             $field->update( $isbnsubfield => $newisbn );
118                         }
119                     }
120                 }
121
122                 ( $biblionumber, $bibitemnum ) = AddBiblio( $marcrecord, $cgiparams->{'frameworkcode'} || '' );
123             } else {
124                 warn("Duplicate item found: ", $biblionumber, "; Duplicate: ", $duplicatetitle);
125             }
126             if (C4::Context->preference("BiblioAddsAuthorities")){
127                 my ($countlinked,$countcreated)=BiblioAddAuthorities($marcrecord, $cgiparams->{'frameworkcode'});
128             }
129             my $patron = C4::Members->GetMember(borrowernumber => $loggedinuser);
130             my $branch = C4::Branch->GetBranchDetail($patron->{branchcode});
131             my ($invoice);
132             my %orderinfo = ("biblionumber", $biblionumber,
133                             "basketno", $cgiparams->{'basketno'},
134                             "quantity", $cgiparams->{'quantityrec-' . $biblio->{'import_record_id'}},
135                             "branchcode", $branch,
136                             "booksellerinvoicenumber", $invoice,
137                             "budget_id", $budget_id,
138                             "uncertainprice", 1,
139                             );
140             # get the price if there is one.
141             # filter by storing only the 1st number
142             # we suppose the currency is correct, as we have no possibilities to get it.
143             if ($marcrecord->subfield("345","d")) {
144               $orderinfo{'listprice'} = $marcrecord->subfield("345","d");
145               if ($orderinfo{'listprice'} =~ /^([\d\.,]*)/) {
146                   $orderinfo{'listprice'} = $1;
147                   $orderinfo{'listprice'} =~ s/,/\./;
148                   eval "use C4::Acquisition qw/GetBasket/;";
149                   eval "use C4::Bookseller qw/GetBookSellerFromId/;";
150                   my $basket = GetBasket($orderinfo{basketno});
151                   my $bookseller = GetBookSellerFromId($basket->{booksellerid});
152                   my $gst = $bookseller->{gstrate} || C4::Context->preference("gist") || 0;
153                   $orderinfo{'unitprice'} = $orderinfo{listprice} - ($orderinfo{listprice} * ($bookseller->{discount} / 100));
154                   $orderinfo{'ecost'} = $orderinfo{unitprice};
155               } else {
156                   $orderinfo{'listprice'} = 0;
157               }
158               $orderinfo{'rrp'} = $orderinfo{'listprice'};
159             }
160             elsif ($marcrecord->subfield("010","d")) {
161               $orderinfo{'listprice'} = $marcrecord->subfield("010","d");
162               if ($orderinfo{'listprice'} =~ /^([\d\.,]*)/) {
163                   $orderinfo{'listprice'} = $1;
164                   $orderinfo{'listprice'} =~ s/,/\./;
165                   eval "use C4::Acquisition qw/GetBasket/;";
166                   eval "use C4::Bookseller qw/GetBookSellerFromId/;";
167                   my $basket = GetBasket($orderinfo{basketno});
168                   my $bookseller = GetBookSellerFromId($basket->{booksellerid});
169                   my $gst = $bookseller->{gstrate} || C4::Context->preference("gist") || 0;
170                   $orderinfo{'unitprice'} = $orderinfo{listprice} - ($orderinfo{listprice} * ($bookseller->{discount} / 100));
171                   $orderinfo{'ecost'} = $orderinfo{unitprice};
172               } else {
173                   $orderinfo{'listprice'} = 0;
174               }
175               $orderinfo{'rrp'} = $orderinfo{'listprice'};
176             }
177             # remove uncertainprice flag if we have found a price in the MARC record
178             $orderinfo{uncertainprice} = 0 if $orderinfo{listprice};
179             my $basketno;
180             ( $basketno, $ordernumber ) = NewOrder(\%orderinfo);
181
182             # now, add items if applicable
183             # parse all items sent by the form, and create an item just for the import_record_id we are dealing with
184             # this is not optimised, but it's working !
185             if (C4::Context->preference('AcqCreateItem') eq 'ordering') {
186                 my @tags         = $input->param('tag');
187                 my @subfields    = $input->param('subfield');
188                 my @field_values = $input->param('field_value');
189                 my @serials      = $input->param('serial');
190                 my @itemids       = $input->param('itemid'); # hint : in iso2709, the itemid contains the import_record_id, not an item id. It is used to get the right item, as we have X biblios.
191                 my @ind_tag      = $input->param('ind_tag');
192                 my @indicator    = $input->param('indicator');
193                 #Rebuilding ALL the data for items into a hash
194                 # parting them on $itemid.
195                 my %itemhash;
196                 my $range=scalar(@itemids);
197                 
198                 my $i = 0;
199                 my @items;
200                 for my $itemid (@itemids){
201                     my $realitemid;     #javascript generated random itemids, in the form itemid-randomnumber, $realitemid is the itemid, while $itemid is the itemide parsed from the html
202                     if ($itemid =~ m/(\d+)-.*/){
203                         my @splits = split(/-/, $itemid);
204                         $realitemid = $splits[0];
205                     }
206                     if ( ( $realitemid && $cgiparams->{'order-'. $realitemid} && $realitemid eq $biblio->{import_record_id}) || ($itemid && $cgiparams->{'order-'. $itemid} && $itemid eq $biblio->{import_record_id}) ){
207                         my ($item, $found);
208                         for my $tmpitem (@items){
209                             if ($tmpitem->{itemid} eq $itemid){
210                                 $item = $tmpitem;
211                                 $found = 1;
212                             }
213                         }
214                         push @{$item->{tags}}, $tags[$i];
215                         push @{$item->{subfields}}, $subfields[$i];
216                         push @{$item->{field_values}}, $field_values[$i];
217                         push @{$item->{ind_tag}}, $ind_tag[$i];
218                         push @{$item->{indicator}}, $indicator[$i];
219                         $item->{itemid} = $itemid;
220                         if (! $found){
221                              push @items, $item;
222                         }
223                     }
224                     ++$i
225                 }
226                 foreach my $item (@items){
227                         my $xml = TransformHtmlToXml( $item->{'tags'},
228                                                 $item->{'subfields'},
229                                                 $item->{'field_values'},
230                                                 $item->{'ind_tag'},
231                                                 $item->{'indicator'});
232                         my $record=MARC::Record::new_from_xml($xml, 'UTF-8');
233                         my ($biblionumber,$bibitemnum,$itemnumber) = AddItemFromMarc($record,$biblionumber);
234                         NewOrderItem( $itemnumber, $ordernumber);
235                 }
236             }
237         }
238     }
239     # go to basket page
240     print $input->redirect("/cgi-bin/koha/acqui/basket.pl?basketno=".$cgiparams->{'basketno'});
241     exit;
242 }
243 output_html_with_http_headers $input, $cookie, $template->output;
244
245
246 sub import_batches_list {
247     my ($template) = @_;
248     my $batches = GetImportBatchRangeDesc();
249
250     my @list = ();
251     foreach my $batch (@$batches) {
252         if ($batch->{'import_status'} eq "staged") {
253         push @list, {
254                 import_batch_id => $batch->{'import_batch_id'},
255                 num_biblios => $batch->{'num_biblios'},
256                 num_items => $batch->{'num_items'},
257                 upload_timestamp => $batch->{'upload_timestamp'},
258                 import_status => $batch->{'import_status'},
259                 file_name => $batch->{'file_name'},
260                 comments => $batch->{'comments'},
261             };
262         }
263     }
264     $template->param(batch_list => \@list); 
265     my $num_batches = GetNumberOfNonZ3950ImportBatches();
266     $template->param(num_results => $num_batches);
267 }
268
269 sub import_biblios_list {
270     my ($template, $import_batch_id) = @_;
271     my $batch = GetImportBatch($import_batch_id,'staged');
272     my $biblios = GetImportBibliosRange($import_batch_id,'','','staged');
273     my @list = ();
274 # # Itemtype is mandatory for adding a biblioitem, we just add a default, the user needs to modify this aftewards
275 #     my $itemtypehash = GetItemTypes();
276 #     my @itemtypes;
277 #     for my $key (sort { $itemtypehash->{$a}->{description} cmp $itemtypehash->{$b}->{description} } keys %$itemtypehash) {
278 #         push(@itemtypes, $itemtypehash->{$key});
279 #     }
280     foreach my $biblio (@$biblios) {
281         my $citation = $biblio->{'title'};
282         $citation .= " $biblio->{'author'}" if $biblio->{'author'};
283         $citation .= " (" if $biblio->{'issn'} or $biblio->{'isbn'};
284         $citation .= $biblio->{'isbn'} if $biblio->{'isbn'};
285         $citation .= ", " if $biblio->{'issn'} and $biblio->{'isbn'};
286         $citation .= $biblio->{'issn'} if $biblio->{'issn'};
287         $citation .= ")" if $biblio->{'issn'} or $biblio->{'isbn'};
288         my $match = GetImportRecordMatches($biblio->{'import_record_id'}, 1);
289         my %cellrecord = (
290             import_record_id => $biblio->{'import_record_id'},
291             citation => $citation,
292             import  => 1,
293             status => $biblio->{'status'},
294             record_sequence => $biblio->{'record_sequence'},
295             overlay_status => $biblio->{'overlay_status'},
296             match_biblionumber => $#$match > -1 ? $match->[0]->{'biblionumber'} : 0,
297             match_citation => $#$match > -1 ? $match->[0]->{'title'} . ' ' . $match->[0]->{'author'} : '',
298             match_score => $#$match > -1 ? $match->[0]->{'score'} : 0,
299 #             itemtypes => \@itemtypes,
300         );
301 #         if (C4::Context->preference('AcqCreateItem') eq 'ordering' && !$ordernumber) {
302 #             # prepare empty item form
303 #             my $cell = PrepareItemrecordDisplay();
304 #             my @itemloop;
305 #             push @itemloop,$cell;
306 #             $cellrecord{'items'} = \@itemloop;
307 #         }
308         push @list, \%cellrecord;
309
310
311     }
312     my $num_biblios = $batch->{'num_biblios'};
313     my $overlay_action = GetImportBatchOverlayAction($import_batch_id);
314     my $nomatch_action = GetImportBatchNoMatchAction($import_batch_id);
315     my $item_action = GetImportBatchItemAction($import_batch_id);
316     $template->param(biblio_list => \@list,
317                         num_results => $num_biblios,
318                         import_batch_id => $import_batch_id,
319                         "overlay_action_${overlay_action}" => 1,
320                         overlay_action => $overlay_action,
321                         "nomatch_action_${nomatch_action}" => 1,
322                         nomatch_action => $nomatch_action,
323                         "item_action_${item_action}" => 1,
324                         item_action => $item_action
325                     );
326     batch_info($template, $batch);
327 }
328
329 sub batch_info {
330     my ($template, $batch) = @_;
331     $template->param(batch_info => 1,
332                                       file_name => $batch->{'file_name'},
333                                           comments => $batch->{'comments'},
334                                           import_status => $batch->{'import_status'},
335                                           upload_timestamp => $batch->{'upload_timestamp'},
336                                           num_biblios => $batch->{'num_biblios'},
337                                           num_items => $batch->{'num_biblios'});
338     if ($batch->{'num_biblios'} > 0) {
339         if ($batch->{'import_status'} eq 'staged' or $batch->{'import_status'} eq 'reverted') {
340             $template->param(can_commit => 1);
341         }
342         if ($batch->{'import_status'} eq 'imported') {
343             $template->param(can_revert => 1);
344         }
345     }
346     if (defined $batch->{'matcher_id'}) {
347         my $matcher = C4::Matcher->fetch($batch->{'matcher_id'});
348         if (defined $matcher) {
349             $template->param('current_matcher_id' => $batch->{'matcher_id'},
350                                               'current_matcher_code' => $matcher->code(),
351                                               'current_matcher_description' => $matcher->description());
352         }
353     }
354     add_matcher_list($batch->{'matcher_id'});
355 }
356
357 sub add_matcher_list {
358     my $current_matcher_id = shift;
359     my @matchers = C4::Matcher::GetMatcherList();
360     if (defined $current_matcher_id) {
361         for (my $i = 0; $i <= $#matchers; $i++) {
362             if ($matchers[$i]->{'matcher_id'} == $current_matcher_id) {
363                 $matchers[$i]->{'selected'} = 1;
364             }
365         }
366     }
367     $template->param(available_matchers => \@matchers);
368 }