Merge branch 'new/bug_6479' into kcmaster
[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 = C4::ItemType->all unless C4::Context->preference('item-level_itypes');
334
335 # fill template
336 $template->param(
337     close        => $close,
338     budget_id    => $budget_id,
339     budget_name  => $budget_name
340 ) if ($close);
341
342 $template->param(
343     existing         => $biblionumber,
344     ordernumber           => $ordernumber,
345     # basket informations
346     basketno             => $basketno,
347     basketname           => $basket->{'basketname'},
348     basketnote           => $basket->{'note'},
349     booksellerid         => $basket->{'booksellerid'},
350     basketbooksellernote => $basket->{booksellernote},
351     basketcontractno     => $basket->{contractnumber},
352     basketcontractname   => $contract->{contractname},
353     creationdate         => C4::Dates->new($basket->{creationdate},'iso')->output,
354     authorisedby         => $basket->{'authorisedby'},
355     authorisedbyname     => $basket->{'authorisedbyname'},
356     closedate            => C4::Dates->new($basket->{'closedate'},'iso')->output,
357     # order details
358     suggestionid     => $suggestionid,
359     biblionumber     => $biblionumber,
360     uncertainprice   => $data->{'uncertainprice'},
361     authorisedbyname => $borrower->{'firstname'} . " " . $borrower->{'surname'},
362     biblioitemnumber => $data->{'biblioitemnumber'},
363     discount_2dp     => sprintf( "%.2f",  $bookseller->{'discount'}) ,   # for display
364     discount         => $bookseller->{'discount'},
365     listincgst       => $bookseller->{'listincgst'},
366     invoiceincgst    => $bookseller->{'invoiceincgst'},
367     name             => $bookseller->{'name'},
368     cur_active_sym   => $active_currency->{'symbol'},
369     cur_active       => $active_currency->{'currency'},
370     loop_currencies  => \@loop_currency,
371     orderexists      => ( $new eq 'yes' ) ? 0 : 1,
372     title            => $data->{'title'},
373     author           => $data->{'author'},
374     publicationyear  => $data->{'publicationyear'} ? $data->{'publicationyear'} : $data->{'copyrightdate'},
375     budget_loop      => $budget_loop,
376     isbn             => $data->{'isbn'},
377     seriestitle      => $data->{'seriestitle'},
378     itemtypeloop     => \@itemtypes,
379     quantity         => $data->{'quantity'},
380     quantityrec      => $data->{'quantity'},
381     rrp              => $data->{'rrp'},
382     listprice        => sprintf("%.2f", $data->{'listprice'}||$data->{'price'}||$listprice),
383     total            => sprintf("%.2f", ($data->{'ecost'}||0)*($data->{'quantity'}||0) ),
384     ecost            => $data->{'ecost'},
385     notes            => $data->{'notes'},
386     publishercode    => $data->{'publishercode'},
387     
388     import_batch_id  => $import_batch_id,
389
390 # CHECKME: gst-stuff needs verifing, mason.
391     gstrate          => $bookseller->{'gstrate'} // C4::Context->preference("gist") // 0,
392     gstreg           => $bookseller->{'gstreg'},
393 );
394
395 output_html_with_http_headers $input, $cookie, $template->output;
396
397
398 =head2 MARCfindbreeding
399
400   $record = MARCfindbreeding($breedingid);
401
402 Look up the import record repository for the record with
403 record with id $breedingid.  If found, returns the decoded
404 MARC::Record; otherwise, -1 is returned (FIXME).
405 Returns as second parameter the character encoding.
406
407 =cut
408
409 sub MARCfindbreeding {
410     my ( $id ) = @_;
411     my ($marc, $encoding) = GetImportRecordMarc($id);
412     # remove the - in isbn, koha store isbn without any -
413     if ($marc) {
414         my $record = MARC::Record->new_from_usmarc($marc);
415         my ($isbnfield,$isbnsubfield) = GetMarcFromKohaField('biblioitems.isbn','');
416         if ( $record->field($isbnfield) ) {
417             foreach my $field ( $record->field($isbnfield) ) {
418                 foreach my $subfield ( $field->subfield($isbnsubfield) ) {
419                     my $newisbn = $field->subfield($isbnsubfield);
420                     $newisbn =~ s/-//g;
421                     $field->update( $isbnsubfield => $newisbn );
422                 }
423             }
424         }
425         # fix the unimarc 100 coded field (with unicode information)
426         if (C4::Context->preference('marcflavour') eq 'UNIMARC' && $record->subfield(100,'a')) {
427             my $f100a=$record->subfield(100,'a');
428             my $f100 = $record->field(100);
429             my $f100temp = $f100->as_string;
430             $record->delete_field($f100);
431             if ( length($f100temp) > 28 ) {
432                 substr( $f100temp, 26, 2, "50" );
433                 $f100->update( 'a' => $f100temp );
434                 my $f100 = MARC::Field->new( '100', '', '', 'a' => $f100temp );
435                 $record->insert_fields_ordered($f100);
436             }
437         }
438         
439         if ( !defined(ref($record)) ) {
440             return -1;
441         }
442         else {
443             # normalize author : probably UNIMARC specific...
444             if (    C4::Context->preference("z3950NormalizeAuthor")
445                 and C4::Context->preference("z3950AuthorAuthFields") )
446             {
447                 my ( $tag, $subfield ) = GetMarcFromKohaField("biblio.author");
448
449 #                 my $summary = C4::Context->preference("z3950authortemplate");
450                 my $auth_fields =
451                 C4::Context->preference("z3950AuthorAuthFields");
452                 my @auth_fields = split /,/, $auth_fields;
453                 my $field;
454
455                 if ( $record->field($tag) ) {
456                     foreach my $tmpfield ( $record->field($tag)->subfields ) {
457
458     #                        foreach my $subfieldcode ($tmpfield->subfields){
459                         my $subfieldcode  = shift @$tmpfield;
460                         my $subfieldvalue = shift @$tmpfield;
461                         if ($field) {
462                             $field->add_subfields(
463                                 "$subfieldcode" => $subfieldvalue )
464                             if ( $subfieldcode ne $subfield );
465                         }
466                         else {
467                             $field =
468                             MARC::Field->new( $tag, "", "",
469                                 $subfieldcode => $subfieldvalue )
470                             if ( $subfieldcode ne $subfield );
471                         }
472                     }
473                 }
474                 $record->delete_field( $record->field($tag) );
475                 foreach my $fieldtag (@auth_fields) {
476                     next unless ( $record->field($fieldtag) );
477                     my $lastname  = $record->field($fieldtag)->subfield('a');
478                     my $firstname = $record->field($fieldtag)->subfield('b');
479                     my $title     = $record->field($fieldtag)->subfield('c');
480                     my $number    = $record->field($fieldtag)->subfield('d');
481                     if ($title) {
482
483 #                         $field->add_subfields("$subfield"=>"[ ".ucfirst($title).ucfirst($firstname)." ".$number." ]");
484                         $field->add_subfields(
485                                 "$subfield" => ucfirst($title) . " "
486                             . ucfirst($firstname) . " "
487                             . $number );
488                     }
489                     else {
490
491 #                       $field->add_subfields("$subfield"=>"[ ".ucfirst($firstname).", ".ucfirst($lastname)." ]");
492                         $field->add_subfields(
493                             "$subfield" => ucfirst($firstname) . ", "
494                             . ucfirst($lastname) );
495                     }
496                 }
497                 $record->insert_fields_ordered($field);
498             }
499             return $record, $encoding;
500         }
501     }
502     return -1;
503 }
504
505 sub Load_Duplicate {
506   my ($duplicatetitle)= @_;
507   ($template, $loggedinuser, $cookie) = get_template_and_user(
508     {
509         template_name   => "acqui/neworderempty_duplicate.tmpl",
510         query           => $input,
511         type            => "intranet",
512         authnotrequired => 0,
513         flagsrequired   => { acquisition => 'order_manage' },
514 #        debug           => 1,
515     }
516   );
517
518   $template->param(
519     biblionumber        => $biblionumber,
520     basketno            => $basketno,
521     booksellerid        => $basket->{'booksellerid'},
522     breedingid          => $params->{'breedingid'},
523     duplicatetitle      => $duplicatetitle,
524   );
525
526   output_html_with_http_headers $input, $cookie, $template->output;
527 }