Bug 6893 : Updates suggestions list when adding orders
[koha.git] / acqui / neworderempty.pl
1 #!/usr/bin/perl
2
3 #script to show display basket of orders
4 #written by chris@katipo.co.nz 24/2/2000
5
6 # Copyright 2000-2002 Katipo Communications
7 #
8 # This file is part of Koha.
9 #
10 # Koha is free software; you can redistribute it and/or modify it under the
11 # terms of the GNU General Public License as published by the Free Software
12 # Foundation; either version 2 of the License, or (at your option) any later
13 # version.
14 #
15 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
16 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
17 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License along
20 # with Koha; if not, write to the Free Software Foundation, Inc.,
21 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22
23
24 =head1 NAME
25
26 neworderempty.pl
27
28 =head1 DESCRIPTION
29
30 this script allows to create a new record to order it. This record shouldn't exist
31 on database.
32
33 =head1 CGI PARAMETERS
34
35 =over 4
36
37 =item booksellerid
38 the bookseller the librarian has to buy a new book.
39
40 =item title
41 the title of this new record.
42
43 =item author
44 the author of this new record.
45
46 =item publication year
47 the publication year of this new record.
48
49 =item ordernumber
50 the number of this order.
51
52 =item biblio
53
54 =item basketno
55 the basket number for this new order.
56
57 =item suggestionid
58 if this order comes from a suggestion.
59
60 =item breedingid
61 the item's id in the breeding reservoir
62
63 =item close
64
65 =back
66
67 =cut
68
69 use warnings;
70 use strict;
71 use CGI;
72 use C4::Context;
73 use C4::Input;
74
75 use C4::Auth;
76 use C4::Budgets;
77 use C4::Input;
78 use C4::Dates;
79
80 use C4::Bookseller  qw/ GetBookSellerFromId /;
81 use C4::Acquisition;
82 use C4::Suggestions;    # GetSuggestion
83 use C4::Biblio;                 # GetBiblioData
84 use C4::Output;
85 use C4::Input;
86 use C4::Koha;
87 use C4::Branch;                 # GetBranches
88 use C4::Members;
89 use C4::Search qw/FindDuplicate BiblioAddAuthorities/;
90
91 #needed for z3950 import:
92 use C4::ImportBatch qw/GetImportRecordMarc SetImportRecordStatus/;
93
94 my $input           = new CGI;
95 my $booksellerid    = $input->param('booksellerid');    # FIXME: else ERROR!
96 my $budget_id       = $input->param('budget_id') || 0;
97 my $title           = $input->param('title');
98 my $author          = $input->param('author');
99 my $publicationyear = $input->param('publicationyear');
100 my $bookseller      = GetBookSellerFromId($booksellerid);       # FIXME: else ERROR!
101 my $ordernumber          = $input->param('ordernumber') || '';
102 my $biblionumber    = $input->param('biblionumber');
103 my $basketno        = $input->param('basketno');
104 my $suggestionid    = $input->param('suggestionid');
105 my $close           = $input->param('close');
106 my $uncertainprice  = $input->param('uncertainprice');
107 my $import_batch_id = $input->param('import_batch_id'); # if this is filled, we come from a staged file, and we will return here after saving the order !
108 my $data;
109 my $new = 'no';
110
111 my $budget_name;
112
113 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
114     {
115         template_name   => "acqui/neworderempty.tmpl",
116         query           => $input,
117         type            => "intranet",
118         authnotrequired => 0,
119         flagsrequired   => { acquisition => 'order_manage' },
120         debug           => 1,
121     }
122 );
123
124 my $basket = GetBasket($basketno);
125 my $contract = &GetContract($basket->{contractnumber});
126
127 #simple parameters reading (all in one :-)
128 my $params = $input->Vars;
129 my $listprice=0; # the price, that can be in MARC record if we have one
130 if ( $ordernumber eq '' and defined $params->{'breedingid'}){
131 #we want to import from the breeding reservoir (from a z3950 search)
132     my ($marcrecord, $encoding) = MARCfindbreeding($params->{'breedingid'});
133     die("Could not find the selected record in the reservoir, bailing") unless $marcrecord;
134
135     # Remove all the items (952) from the imported record
136     foreach my $item ($marcrecord->field('952')) {
137         $marcrecord->delete_field($item);
138     }
139
140     my $duplicatetitle;
141 #look for duplicates
142     ($biblionumber,$duplicatetitle) = FindDuplicate($marcrecord);
143     if($biblionumber && !$input->param('use_external_source')) {
144         #if duplicate record found and user did not decide yet, first warn user
145         #and let him choose between using new record or existing record
146         Load_Duplicate($duplicatetitle);
147         exit;
148     }
149     #from this point: add a new record
150         if (C4::Context->preference("BiblioAddsAuthorities")){
151             my ($countlinked,$countcreated)=BiblioAddAuthorities($marcrecord, $params->{'frameworkcode'});
152         }
153         my $bibitemnum;
154         $params->{'frameworkcode'} or $params->{'frameworkcode'} = "";
155         ( $biblionumber, $bibitemnum ) = AddBiblio( $marcrecord, $params->{'frameworkcode'} );
156         # get the price if there is one.
157         # filter by storing only the 1st number
158         # we suppose the currency is correct, as we have no possibilities to get it.
159         if ($marcrecord->subfield("345","d")) {
160             $listprice = $marcrecord->subfield("345","d");
161             if ($listprice =~ /^([\d\.,]*)/) {
162                 $listprice = $1;
163                 $listprice =~ s/,/\./;
164             } else {
165                 $listprice = 0;
166             }
167         }
168         elsif ($marcrecord->subfield("010","d")) {
169             $listprice = $marcrecord->subfield("010","d");
170             if ($listprice =~ /^([\d\.,]*)/) {
171                 $listprice = $1;
172                 $listprice =~ s/,/\./;
173             } else {
174                 $listprice = 0;
175             }
176         }
177         SetImportRecordStatus($params->{'breedingid'}, 'imported');
178 }
179
180
181
182 if ( $ordernumber eq '' ) {    # create order
183     $new = 'yes';
184
185     #   $ordernumber=newordernum;
186     if ( $biblionumber && !$suggestionid ) {
187         $data = GetBiblioData($biblionumber);
188     }
189
190 # get suggestion fields if applicable. If it's a subscription renewal, then the biblio already exists
191 # otherwise, retrieve suggestion information.
192     if ($suggestionid) {
193         $data = ($biblionumber) ? GetBiblioData($biblionumber) : GetSuggestion($suggestionid);
194     }
195 }
196 else {    #modify order
197     $data   = GetOrder($ordernumber);
198     $biblionumber = $data->{'biblionumber'};
199     $budget_id = $data->{'budget_id'};
200
201     #get basketno and supplierno. too!
202     my $data2 = GetBasket( $data->{'basketno'} );
203     $basketno     = $data2->{'basketno'};
204     $booksellerid = $data2->{'booksellerid'};
205 }
206
207 # get currencies (for change rates calcs if needed)
208 my $active_currency = GetCurrency();
209 my $default_currency;
210 if (! $data->{currency} ) { # New order no currency set
211     if ( $bookseller->{listprice} ) {
212         $default_currency = $bookseller->{listprice};
213     }
214     else {
215         $default_currency = $active_currency->{currency};
216     }
217 }
218
219 my @rates = GetCurrencies();
220
221 # ## @rates
222
223 my @loop_currency = ();
224 for my $curr ( @rates ) {
225     my $selected;
226     if ($data->{currency} ) {
227         $selected = $curr->{currency} eq $data->{currency};
228     }
229     else {
230         $selected = $curr->{currency} eq $default_currency;
231     }
232     push @loop_currency, {
233         currcode => $curr->{currency},
234         rate     => $curr->{rate},
235         selected => $selected,
236     }
237 }
238
239 # build branches list
240 my $onlymine=C4::Context->preference('IndependantBranches') && 
241             C4::Context->userenv && 
242             C4::Context->userenv->{flags}!=1 && 
243             C4::Context->userenv->{branch};
244 my $branches = GetBranches($onlymine);
245 my @branchloop;
246 foreach my $thisbranch ( sort {$branches->{$a}->{'branchname'} cmp $branches->{$b}->{'branchname'}} keys %$branches ) {
247     my %row = (
248         value      => $thisbranch,
249         branchname => $branches->{$thisbranch}->{'branchname'},
250     );
251     $row{'selected'} = 1 if( $thisbranch && $data->{branchcode} && $thisbranch eq $data->{branchcode}) ;
252     push @branchloop, \%row;
253 }
254 $template->param( branchloop => \@branchloop );
255
256 # build bookfund list
257 my $borrower= GetMember('borrowernumber' => $loggedinuser);
258 my ( $flags, $homebranch )= ($borrower->{'flags'},$borrower->{'branchcode'});
259
260 my $budget =  GetBudget($budget_id);
261 # build budget list
262 my $budget_loop = [];
263 my $budgets = GetBudgetHierarchy(q{},$borrower->{branchcode},$borrower->{borrowernumber});
264 foreach my $r (@{$budgets}) {
265     if (!defined $r->{budget_amount} || $r->{budget_amount} == 0) {
266         next;
267     }
268     push @{$budget_loop}, {
269         b_id  => $r->{budget_id},
270         b_txt => $r->{budget_name},
271         b_active => $r->{budget_period_active},
272         b_sel => ( $r->{budget_id} == $budget_id ) ? 1 : 0,
273     };
274 }
275
276
277 if ($close) {
278     $budget_id      =  $data->{'budget_id'};
279     $budget_name    =   $budget->{'budget_name'};
280
281 }
282
283 my $CGIsort1;
284 if ($budget) {    # its a mod ..
285     if ( defined $budget->{'sort1_authcat'} ) {    # with custom  Asort* planning values
286         $CGIsort1 = GetAuthvalueDropbox( $budget->{'sort1_authcat'}, $data->{'sort1'} );
287     }
288 } elsif(@{$budgets}){
289     $CGIsort1 = GetAuthvalueDropbox(  @$budgets[0]->{'sort1_authcat'}, '' );
290 }else{
291     $CGIsort1 = GetAuthvalueDropbox( '', '' );
292 }
293
294 # if CGIsort is successfully fetched, the use it
295 # else - failback to plain input-field
296 if ($CGIsort1) {
297     $template->param( CGIsort1 => $CGIsort1 );
298 } else {
299     $template->param( sort1 => $data->{'sort1'} );
300 }
301
302 my $CGIsort2;
303 if ($budget) {
304     if ( defined $budget->{'sort2_authcat'} ) {
305         $CGIsort2 = GetAuthvalueDropbox(  $budget->{'sort2_authcat'}, $data->{'sort2'} );
306     }
307 } elsif(@{$budgets}) {
308     $CGIsort2 = GetAuthvalueDropbox(  @$budgets[0]->{sort2_authcat}, '' );
309 }else{
310     $CGIsort2 = GetAuthvalueDropbox( '', '' );
311 }
312
313 if ($CGIsort2) {
314     $template->param( CGIsort2 => $CGIsort2 );
315 } else {
316     $template->param( sort2 => $data->{'sort2'} );
317 }
318
319 if (C4::Context->preference('AcqCreateItem') eq 'ordering' && !$ordernumber) {
320     # prepare empty item form
321     my $cell = PrepareItemrecordDisplay('','','','ACQ');
322 #     warn "==> ".Data::Dumper::Dumper($cell);
323     unless ($cell) {
324         $cell = PrepareItemrecordDisplay('','','','');
325         $template->param('NoACQframework' => 1);
326     }
327     my @itemloop;
328     push @itemloop,$cell;
329     
330     $template->param(items => \@itemloop);
331 }
332 # Get the item types list, but only if item_level_itype is YES. Otherwise, it will be in the item, no need to display it in the biblio
333 my @itemtypes;
334 @itemtypes = C4::ItemType->all unless C4::Context->preference('item-level_itypes');
335
336 # Find the items.barcode subfield for barcode validations
337 my (undef, $barcode_subfield) = GetMarcFromKohaField('items.barcode', '');
338
339 # fill template
340 $template->param(
341     close        => $close,
342     budget_id    => $budget_id,
343     budget_name  => $budget_name
344 ) if ($close);
345
346 $template->param(
347     existing         => $biblionumber,
348     ordernumber           => $ordernumber,
349     # basket informations
350     basketno             => $basketno,
351     basketname           => $basket->{'basketname'},
352     basketnote           => $basket->{'note'},
353     booksellerid         => $basket->{'booksellerid'},
354     basketbooksellernote => $basket->{booksellernote},
355     basketcontractno     => $basket->{contractnumber},
356     basketcontractname   => $contract->{contractname},
357     creationdate         => C4::Dates->new($basket->{creationdate},'iso')->output,
358     authorisedby         => $basket->{'authorisedby'},
359     authorisedbyname     => $basket->{'authorisedbyname'},
360     closedate            => C4::Dates->new($basket->{'closedate'},'iso')->output,
361     # order details
362     suggestionid     => $suggestionid,
363     biblionumber     => $biblionumber,
364     uncertainprice   => $data->{'uncertainprice'},
365     authorisedbyname => $borrower->{'firstname'} . " " . $borrower->{'surname'},
366     biblioitemnumber => $data->{'biblioitemnumber'},
367     discount_2dp     => sprintf( "%.2f",  $bookseller->{'discount'}) ,   # for display
368     discount         => $bookseller->{'discount'},
369     listincgst       => $bookseller->{'listincgst'},
370     invoiceincgst    => $bookseller->{'invoiceincgst'},
371     name             => $bookseller->{'name'},
372     cur_active_sym   => $active_currency->{'symbol'},
373     cur_active       => $active_currency->{'currency'},
374     loop_currencies  => \@loop_currency,
375     orderexists      => ( $new eq 'yes' ) ? 0 : 1,
376     title            => $data->{'title'},
377     author           => $data->{'author'},
378     publicationyear  => $data->{'publicationyear'} ? $data->{'publicationyear'} : $data->{'copyrightdate'},
379     budget_loop      => $budget_loop,
380     isbn             => $data->{'isbn'},
381     seriestitle      => $data->{'seriestitle'},
382     itemtypeloop     => \@itemtypes,
383     quantity         => $data->{'quantity'},
384     quantityrec      => $data->{'quantity'},
385     rrp              => $data->{'rrp'},
386     listprice        => sprintf("%.2f", $data->{'listprice'}||$data->{'price'}||$listprice),
387     total            => sprintf("%.2f", ($data->{'ecost'}||0)*($data->{'quantity'}||0) ),
388     ecost            => $data->{'ecost'},
389     unitprice        => sprintf("%.2f", $data->{'unitprice'}),
390     notes            => $data->{'notes'},
391     publishercode    => $data->{'publishercode'},
392     barcode_subfield => $barcode_subfield,
393     
394     import_batch_id  => $import_batch_id,
395
396 # CHECKME: gst-stuff needs verifing, mason.
397     gstrate          => $bookseller->{'gstrate'} // C4::Context->preference("gist") // 0,
398     gstreg           => $bookseller->{'gstreg'},
399 );
400
401 output_html_with_http_headers $input, $cookie, $template->output;
402
403
404 =head2 MARCfindbreeding
405
406   $record = MARCfindbreeding($breedingid);
407
408 Look up the import record repository for the record with
409 record with id $breedingid.  If found, returns the decoded
410 MARC::Record; otherwise, -1 is returned (FIXME).
411 Returns as second parameter the character encoding.
412
413 =cut
414
415 sub MARCfindbreeding {
416     my ( $id ) = @_;
417     my ($marc, $encoding) = GetImportRecordMarc($id);
418     # remove the - in isbn, koha store isbn without any -
419     if ($marc) {
420         my $record = MARC::Record->new_from_usmarc($marc);
421         my ($isbnfield,$isbnsubfield) = GetMarcFromKohaField('biblioitems.isbn','');
422         if ( $record->field($isbnfield) ) {
423             foreach my $field ( $record->field($isbnfield) ) {
424                 foreach my $subfield ( $field->subfield($isbnsubfield) ) {
425                     my $newisbn = $field->subfield($isbnsubfield);
426                     $newisbn =~ s/-//g;
427                     $field->update( $isbnsubfield => $newisbn );
428                 }
429             }
430         }
431         # fix the unimarc 100 coded field (with unicode information)
432         if (C4::Context->preference('marcflavour') eq 'UNIMARC' && $record->subfield(100,'a')) {
433             my $f100a=$record->subfield(100,'a');
434             my $f100 = $record->field(100);
435             my $f100temp = $f100->as_string;
436             $record->delete_field($f100);
437             if ( length($f100temp) > 28 ) {
438                 substr( $f100temp, 26, 2, "50" );
439                 $f100->update( 'a' => $f100temp );
440                 my $f100 = MARC::Field->new( '100', '', '', 'a' => $f100temp );
441                 $record->insert_fields_ordered($f100);
442             }
443         }
444         
445         if ( !defined(ref($record)) ) {
446             return -1;
447         }
448         else {
449             # normalize author : probably UNIMARC specific...
450             if (    C4::Context->preference("z3950NormalizeAuthor")
451                 and C4::Context->preference("z3950AuthorAuthFields") )
452             {
453                 my ( $tag, $subfield ) = GetMarcFromKohaField("biblio.author");
454
455 #                 my $summary = C4::Context->preference("z3950authortemplate");
456                 my $auth_fields =
457                 C4::Context->preference("z3950AuthorAuthFields");
458                 my @auth_fields = split /,/, $auth_fields;
459                 my $field;
460
461                 if ( $record->field($tag) ) {
462                     foreach my $tmpfield ( $record->field($tag)->subfields ) {
463
464     #                        foreach my $subfieldcode ($tmpfield->subfields){
465                         my $subfieldcode  = shift @$tmpfield;
466                         my $subfieldvalue = shift @$tmpfield;
467                         if ($field) {
468                             $field->add_subfields(
469                                 "$subfieldcode" => $subfieldvalue )
470                             if ( $subfieldcode ne $subfield );
471                         }
472                         else {
473                             $field =
474                             MARC::Field->new( $tag, "", "",
475                                 $subfieldcode => $subfieldvalue )
476                             if ( $subfieldcode ne $subfield );
477                         }
478                     }
479                 }
480                 $record->delete_field( $record->field($tag) );
481                 foreach my $fieldtag (@auth_fields) {
482                     next unless ( $record->field($fieldtag) );
483                     my $lastname  = $record->field($fieldtag)->subfield('a');
484                     my $firstname = $record->field($fieldtag)->subfield('b');
485                     my $title     = $record->field($fieldtag)->subfield('c');
486                     my $number    = $record->field($fieldtag)->subfield('d');
487                     if ($title) {
488
489 #                         $field->add_subfields("$subfield"=>"[ ".ucfirst($title).ucfirst($firstname)." ".$number." ]");
490                         $field->add_subfields(
491                                 "$subfield" => ucfirst($title) . " "
492                             . ucfirst($firstname) . " "
493                             . $number );
494                     }
495                     else {
496
497 #                       $field->add_subfields("$subfield"=>"[ ".ucfirst($firstname).", ".ucfirst($lastname)." ]");
498                         $field->add_subfields(
499                             "$subfield" => ucfirst($firstname) . ", "
500                             . ucfirst($lastname) );
501                     }
502                 }
503                 $record->insert_fields_ordered($field);
504             }
505             return $record, $encoding;
506         }
507     }
508     return -1;
509 }
510
511 sub Load_Duplicate {
512   my ($duplicatetitle)= @_;
513   ($template, $loggedinuser, $cookie) = get_template_and_user(
514     {
515         template_name   => "acqui/neworderempty_duplicate.tmpl",
516         query           => $input,
517         type            => "intranet",
518         authnotrequired => 0,
519         flagsrequired   => { acquisition => 'order_manage' },
520 #        debug           => 1,
521     }
522   );
523
524   $template->param(
525     biblionumber        => $biblionumber,
526     basketno            => $basketno,
527     booksellerid        => $basket->{'booksellerid'},
528     breedingid          => $params->{'breedingid'},
529     duplicatetitle      => $duplicatetitle,
530   );
531
532   output_html_with_http_headers $input, $cookie, $template->output;
533 }