Bug 9302: Use patron-title.inc
[koha.git] / acqui / neworderempty.pl
blob6326eaf39b5d46ef15f667ca0a91d13aa87fcedd
1 #!/usr/bin/perl
3 #script to show display basket of orders
4 #written by chris@katipo.co.nz 24/2/2000
6 # Copyright 2000-2002 Katipo Communications
8 # This file is part of Koha.
10 # Koha is free software; you can redistribute it and/or modify it
11 # under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 3 of the License, or
13 # (at your option) any later version.
15 # Koha is distributed in the hope that it will be useful, but
16 # WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
20 # You should have received a copy of the GNU General Public License
21 # along with Koha; if not, see <http://www.gnu.org/licenses>.
24 =head1 NAME
26 neworderempty.pl
28 =head1 DESCRIPTION
30 this script allows to create a new record to order it. This record shouldn't exist
31 on database.
33 =head1 CGI PARAMETERS
35 =over 4
37 =item booksellerid
38 the bookseller the librarian has to buy a new book.
40 =item title
41 the title of this new record.
43 =item author
44 the author of this new record.
46 =item publication year
47 the publication year of this new record.
49 =item ordernumber
50 the number of this order.
52 =item biblio
54 =item basketno
55 the basket number for this new order.
57 =item suggestionid
58 if this order comes from a suggestion.
60 =item breedingid
61 the item's id in the breeding reservoir
63 =item close
65 =back
67 =cut
69 use Modern::Perl;
70 use CGI qw ( -utf8 );
71 use C4::Context;
73 use C4::Auth;
74 use C4::Budgets;
76 use C4::Acquisition;
77 use C4::Contract;
78 use C4::Suggestions; # GetSuggestion
79 use C4::Biblio; # GetBiblioData GetMarcPrice
80 use C4::Items; #PrepareItemRecord
81 use C4::Output;
82 use C4::Koha;
83 use C4::Members;
84 use C4::Search qw/FindDuplicate/;
86 #needed for z3950 import:
87 use C4::ImportBatch qw/GetImportRecordMarc SetImportRecordStatus/;
89 use Koha::Acquisition::Booksellers;
90 use Koha::Acquisition::Currencies;
91 use Koha::BiblioFrameworks;
92 use Koha::DateUtils qw( dt_from_string );
93 use Koha::MarcSubfieldStructures;
94 use Koha::ItemTypes;
95 use Koha::Patrons;
96 use Koha::RecordProcessor;
98 our $input = new CGI;
99 my $booksellerid = $input->param('booksellerid'); # FIXME: else ERROR!
100 my $budget_id = $input->param('budget_id') || 0;
101 my $title = $input->param('title');
102 my $author = $input->param('author');
103 my $publicationyear = $input->param('publicationyear');
104 my $ordernumber = $input->param('ordernumber') || '';
105 our $biblionumber = $input->param('biblionumber');
106 our $basketno = $input->param('basketno');
107 my $suggestionid = $input->param('suggestionid');
108 my $close = $input->param('close');
109 my $uncertainprice = $input->param('uncertainprice');
110 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 !
111 my $from_subscriptionid = $input->param('from_subscriptionid');
112 my $data;
113 my $new = 'no';
115 my $budget_name;
117 our ( $template, $loggedinuser, $cookie, $userflags ) = get_template_and_user(
119 template_name => "acqui/neworderempty.tt",
120 query => $input,
121 type => "intranet",
122 authnotrequired => 0,
123 flagsrequired => { acquisition => 'order_manage' },
124 debug => 1,
128 our $marcflavour = C4::Context->preference('marcflavour');
130 if(!$basketno) {
131 my $order = GetOrder($ordernumber);
132 $basketno = $order->{'basketno'};
135 our $basket = GetBasket($basketno);
136 my $basketobj = Koha::Acquisition::Baskets->find( $basketno );
137 $booksellerid = $basket->{booksellerid} unless $booksellerid;
138 my $bookseller = Koha::Acquisition::Booksellers->find( $booksellerid );
140 my $contract = GetContract({
141 contractnumber => $basket->{contractnumber}
144 #simple parameters reading (all in one :-)
145 our $params = $input->Vars;
146 my $listprice=0; # the price, that can be in MARC record if we have one
147 if ( $ordernumber eq '' and defined $params->{'breedingid'}){
148 #we want to import from the breeding reservoir (from a z3950 search)
149 my ($marcrecord, $encoding) = MARCfindbreeding($params->{'breedingid'});
150 die("Could not find the selected record in the reservoir, bailing") unless $marcrecord;
152 # Remove all the items (952) from the imported record
153 foreach my $item ($marcrecord->field('952')) {
154 $marcrecord->delete_field($item);
157 my $duplicatetitle;
158 #look for duplicates
159 ($biblionumber,$duplicatetitle) = FindDuplicate($marcrecord);
160 if($biblionumber && !$input->param('use_external_source')) {
161 #if duplicate record found and user did not decide yet, first warn user
162 #and let them choose between using a new record or an existing record
163 Load_Duplicate($duplicatetitle);
164 exit;
166 #from this point: add a new record
167 if (C4::Context->preference("BiblioAddsAuthorities")){
168 my $headings_linked=BiblioAutoLink($marcrecord, $params->{'frameworkcode'});
170 my $bibitemnum;
171 $params->{'frameworkcode'} or $params->{'frameworkcode'} = "";
172 ( $biblionumber, $bibitemnum ) = AddBiblio( $marcrecord, $params->{'frameworkcode'} );
173 # get the price if there is one.
174 $listprice = GetMarcPrice($marcrecord, $marcflavour);
175 SetImportRecordStatus($params->{'breedingid'}, 'imported');
180 my ( @order_user_ids, @order_users, @catalog_details );
181 our $tagslib = GetMarcStructure(1, 'ACQ', { unsafe => 1 } );
182 my ( $itemnumber_tag, $itemnumber_subtag ) = GetMarcFromKohaField( 'items.itemnumber', 'ACQ' );
183 if ( not $ordernumber ) { # create order
184 $new = 'yes';
186 if ( $biblionumber ) {
187 $data = GetBiblioData($biblionumber);
189 # get suggestion fields if applicable. If it's a subscription renewal, then the biblio already exists
190 # otherwise, retrieve suggestion information.
191 elsif ($suggestionid) {
192 $data = GetSuggestion($suggestionid);
193 $budget_id ||= $data->{'budgetid'} // 0;
196 if ( not $biblionumber and Koha::BiblioFrameworks->find('ACQ') ) {
197 #my $acq_mss = Koha::MarcSubfieldStructures->search({ frameworkcode => 'ACQ', tagfield => { '!=' => $itemnumber_tag } });
198 foreach my $tag ( sort keys %{$tagslib} ) {
199 next if $tag eq '';
200 next if $tag eq $itemnumber_tag; # skip items fields
201 foreach my $subfield ( sort keys %{ $tagslib->{$tag} } ) {
202 my $mss = $tagslib->{$tag}{$subfield};
203 next if IsMarcStructureInternal($mss);
204 next if $mss->{tab} == -1;
205 my $value = $mss->{defaultvalue};
207 if ($suggestionid and $mss->{kohafield}) {
208 # Reading suggestion info if ordering from a suggestion
209 if ( $mss->{kohafield} eq 'biblio.title' ) {
210 $value = $data->{title};
212 elsif ( $mss->{kohafield} eq 'biblio.author' ) {
213 $value = $data->{author};
215 elsif ( $mss->{kohafield} eq 'biblioitems.publishercode' ) {
216 $value = $data->{publishercode};
218 elsif ( $mss->{kohafield} eq 'biblioitems.editionstatement' ) {
219 $value = $data->{editionstatement};
221 elsif ( $mss->{kohafield} eq 'biblioitems.publicationyear' ) {
222 $value = $data->{publicationyear};
224 elsif ( $mss->{kohafield} eq 'biblioitems.isbn' ) {
225 $value = $data->{isbn};
227 elsif ( $mss->{kohafield} eq 'biblio.seriestitle' ) {
228 $value = $data->{seriestitle};
232 if ( $value eq '' ) {
234 # get today date & replace <<YYYY>>, <<MM>>, <<DD>> if provided in the default value
235 my $today_dt = dt_from_string;
236 my $year = $today_dt->strftime('%Y');
237 my $month = $today_dt->strftime('%m');
238 my $day = $today_dt->strftime('%d');
239 $value =~ s/<<YYYY>>/$year/g;
240 $value =~ s/<<MM>>/$month/g;
241 $value =~ s/<<DD>>/$day/g;
243 # And <<USER>> with surname (?)
244 my $username =
245 ( C4::Context->userenv
246 ? C4::Context->userenv->{'surname'}
247 : "superlibrarian" );
248 $value =~ s/<<USER>>/$username/g;
250 push @catalog_details, {
251 tag => $tag,
252 subfield => $subfield,
253 %$mss, # Do we need plugins support (?)
254 value => $value,
260 else { #modify order
261 $data = GetOrder($ordernumber);
262 $biblionumber = $data->{'biblionumber'};
263 $budget_id = $data->{'budget_id'};
265 $template->param(
266 subscriptionid => $data->{subscriptionid},
269 $basket = GetBasket( $data->{'basketno'} );
270 $basketno = $basket->{'basketno'};
272 @order_user_ids = GetOrderUsers($ordernumber);
273 foreach my $order_user_id (@order_user_ids) {
274 # FIXME Could be improved with search -in
275 my $order_patron = Koha::Patrons->find( $order_user_id );
276 push @order_users, $order_patron if $order_patron;
280 # We can have:
281 # - no ordernumber but a biblionumber: from a subscription, from an existing record
282 # - no ordernumber, no biblionumber: from a suggestion, from a new order
283 if ( not $ordernumber or $biblionumber ) {
284 if ( C4::Context->preference('UseACQFrameworkForBiblioRecords') ) {
285 my $record = $biblionumber ? GetMarcBiblio({ biblionumber => $biblionumber }) : undef;
286 foreach my $tag ( sort keys %{$tagslib} ) {
287 next if $tag eq '';
288 next if $tag eq $itemnumber_tag; # skip items fields
289 my @fields = $biblionumber ? $record->field($tag) : ();
290 foreach my $subfield ( sort keys %{ $tagslib->{$tag} } ) {
291 my $mss = $tagslib->{$tag}{$subfield};
292 next if IsMarcStructureInternal($mss);
293 next if $mss->{tab} == -1;
294 # We only need to display the values
295 my $value = join '; ', map { $_->subfield( $subfield ) } @fields;
296 if ( $value ) {
297 push @catalog_details, {
298 tag => $tag,
299 subfield => $subfield,
300 %$mss,
301 value => $value,
309 $template->param( catalog_details => \@catalog_details, );
311 my $suggestion;
312 $suggestion = GetSuggestionInfo($suggestionid) if $suggestionid;
314 my @currencies = Koha::Acquisition::Currencies->search;
315 my $active_currency = Koha::Acquisition::Currencies->get_active;
317 # build bookfund list
318 my $patron = Koha::Patrons->find( $loggedinuser )->unblessed;
320 my $budget = GetBudget($budget_id);
321 # build budget list
322 my $budget_loop = [];
323 my $budgets = GetBudgetHierarchy;
324 foreach my $r (@{$budgets}) {
325 next unless (CanUserUseBudget($patron, $r, $userflags));
326 if (!defined $r->{budget_amount} || $r->{budget_amount} <0) {
327 next;
329 push @{$budget_loop}, {
330 b_id => $r->{budget_id},
331 b_txt => $r->{budget_name},
332 b_sort1_authcat => $r->{'sort1_authcat'},
333 b_sort2_authcat => $r->{'sort2_authcat'},
334 b_active => $r->{budget_period_active},
335 b_sel => ( $r->{budget_id} == $budget_id ) ? 1 : 0,
336 b_level => $r->{budget_level},
340 if ($close) {
341 $budget_id = $data->{'budget_id'};
342 $budget_name = $budget->{'budget_name'};
346 $template->param( sort1 => $data->{'sort1'} );
347 $template->param( sort2 => $data->{'sort2'} );
349 if ($basketobj->effective_create_items eq 'ordering' && !$ordernumber) {
350 # Check if ACQ framework exists
351 my $marc = GetMarcStructure(1, 'ACQ', { unsafe => 1 } );
352 unless($marc) {
353 $template->param('NoACQframework' => 1);
355 $template->param(
356 AcqCreateItemOrdering => 1,
357 UniqueItemFields => C4::Context->preference('UniqueItemFields'),
361 # 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
362 my @itemtypes;
363 @itemtypes = Koha::ItemTypes->search unless C4::Context->preference('item-level_itypes');
365 if ( defined $from_subscriptionid ) {
366 my $lastOrderReceived = GetLastOrderReceivedFromSubscriptionid $from_subscriptionid;
367 if ( defined $lastOrderReceived ) {
368 $budget_id = $lastOrderReceived->{budgetid};
369 $data->{listprice} = $lastOrderReceived->{listprice};
370 $data->{uncertainprice} = $lastOrderReceived->{uncertainprice};
371 $data->{tax_rate} = $lastOrderReceived->{tax_rate_on_ordering};
372 $data->{discount} = $lastOrderReceived->{discount};
373 $data->{rrp} = $lastOrderReceived->{rrp};
374 $data->{ecost} = $lastOrderReceived->{ecost};
375 $data->{quantity} = $lastOrderReceived->{quantity};
376 $data->{unitprice} = $lastOrderReceived->{unitprice};
377 $data->{order_internalnote} = $lastOrderReceived->{order_internalnote};
378 $data->{order_vendornote} = $lastOrderReceived->{order_vendornote};
379 $data->{sort1} = $lastOrderReceived->{sort1};
380 $data->{sort2} = $lastOrderReceived->{sort2};
382 $basket = GetBasket( $input->param('basketno') );
385 $template->param( subscriptionid => $from_subscriptionid );
388 # Find the items.barcode subfield for barcode validations
389 my (undef, $barcode_subfield) = GetMarcFromKohaField('items.barcode', '');
391 # fill template
392 $template->param(
393 close => $close,
394 budget_id => $budget_id,
395 budget_name => $budget_name
396 ) if ($close);
398 # get option values for gist syspref
399 my @gst_values = map {
400 option => $_ + 0.0
401 }, split( '\|', C4::Context->preference("gist") );
403 my $quantity = $input->param('rr_quantity_to_order') ?
404 $input->param('rr_quantity_to_order') :
405 $data->{'quantity'};
406 $quantity //= 0;
408 $template->param(
409 existing => $biblionumber,
410 ordernumber => $ordernumber,
411 # basket informations
412 basketno => $basketno,
413 basket => $basket,
414 basketname => $basket->{'basketname'},
415 basketnote => $basket->{'note'},
416 booksellerid => $basket->{'booksellerid'},
417 basketbooksellernote => $basket->{booksellernote},
418 basketcontractno => $basket->{contractnumber},
419 basketcontractname => $contract->{contractname},
420 creationdate => $basket->{creationdate},
421 authorisedby => $basket->{'authorisedby'},
422 authorisedbyname => $basket->{'authorisedbyname'},
423 closedate => $basket->{'closedate'},
424 # order details
425 suggestionid => $suggestion->{suggestionid},
426 surnamesuggestedby => $suggestion->{surnamesuggestedby},
427 firstnamesuggestedby => $suggestion->{firstnamesuggestedby},
428 biblionumber => $biblionumber,
429 uncertainprice => $data->{'uncertainprice'},
430 discount_2dp => sprintf( "%.2f", $bookseller->discount ) , # for display
431 discount => $bookseller->discount,
432 orderdiscount_2dp => sprintf( "%.2f", $data->{'discount'} || 0 ),
433 orderdiscount => $data->{'discount'},
434 order_internalnote => $data->{'order_internalnote'},
435 order_vendornote => $data->{'order_vendornote'},
436 listincgst => $bookseller->listincgst,
437 invoiceincgst => $bookseller->invoiceincgst,
438 name => $bookseller->name,
439 cur_active_sym => $active_currency->symbol,
440 cur_active => $active_currency->currency,
441 currencies => \@currencies,
442 currency => $data->{currency},
443 vendor_currency => $bookseller->listprice,
444 orderexists => ( $new eq 'yes' ) ? 0 : 1,
445 title => $data->{'title'},
446 author => $data->{'author'},
447 publicationyear => $data->{'publicationyear'} ? $data->{'publicationyear'} : $data->{'copyrightdate'},
448 editionstatement => $data->{'editionstatement'},
449 budget_loop => $budget_loop,
450 isbn => $data->{'isbn'},
451 ean => $data->{'ean'},
452 seriestitle => $data->{'seriestitle'},
453 itemtypeloop => \@itemtypes,
454 quantity => $quantity,
455 quantityrec => $quantity,
456 rrp => $data->{'rrp'},
457 gst_values => \@gst_values,
458 tax_rate => $data->{tax_rate_on_ordering} ? $data->{tax_rate_on_ordering}+0.0 : $bookseller->tax_rate ? $bookseller->tax_rate+0.0 : 0,
459 listprice => sprintf( "%.2f", $data->{listprice} || $data->{price} || $listprice),
460 total => sprintf( "%.2f", ($data->{ecost} || 0) * ($data->{'quantity'} || 0) ),
461 ecost => sprintf( "%.2f", $data->{ecost} || 0),
462 unitprice => sprintf( "%.2f", $data->{unitprice} || 0),
463 publishercode => $data->{'publishercode'},
464 barcode_subfield => $barcode_subfield,
465 import_batch_id => $import_batch_id,
466 acqcreate => $basketobj->effective_create_items eq "ordering" ? 1 : "",
467 users_ids => join(':', @order_user_ids),
468 users => \@order_users,
469 (uc(C4::Context->preference("marcflavour"))) => 1
472 output_html_with_http_headers $input, $cookie, $template->output;
475 =head2 MARCfindbreeding
477 $record = MARCfindbreeding($breedingid);
479 Look up the import record repository for the record with
480 record with id $breedingid. If found, returns the decoded
481 MARC::Record; otherwise, -1 is returned (FIXME).
482 Returns as second parameter the character encoding.
484 =cut
486 sub MARCfindbreeding {
487 my ( $id ) = @_;
488 my ($marc, $encoding) = GetImportRecordMarc($id);
489 # remove the - in isbn, koha store isbn without any -
490 if ($marc) {
491 my $record = MARC::Record->new_from_usmarc($marc);
492 my ($isbnfield,$isbnsubfield) = GetMarcFromKohaField('biblioitems.isbn','');
493 if ( $record->field($isbnfield) ) {
494 foreach my $field ( $record->field($isbnfield) ) {
495 foreach my $subfield ( $field->subfield($isbnsubfield) ) {
496 my $newisbn = $field->subfield($isbnsubfield);
497 $newisbn =~ s/-//g;
498 $field->update( $isbnsubfield => $newisbn );
502 # fix the unimarc 100 coded field (with unicode information)
503 if ($marcflavour eq 'UNIMARC' && $record->subfield(100,'a')) {
504 my $f100a=$record->subfield(100,'a');
505 my $f100 = $record->field(100);
506 my $f100temp = $f100->as_string;
507 $record->delete_field($f100);
508 if ( length($f100temp) > 28 ) {
509 substr( $f100temp, 26, 2, "50" );
510 $f100->update( 'a' => $f100temp );
511 my $f100 = MARC::Field->new( '100', '', '', 'a' => $f100temp );
512 $record->insert_fields_ordered($f100);
516 if ( !defined(ref($record)) ) {
517 return -1;
519 else {
520 # normalize author : probably UNIMARC specific...
521 if ( C4::Context->preference("z3950NormalizeAuthor")
522 and C4::Context->preference("z3950AuthorAuthFields") )
524 my ( $tag, $subfield ) = GetMarcFromKohaField("biblio.author", '');
526 my $auth_fields =
527 C4::Context->preference("z3950AuthorAuthFields");
528 my @auth_fields = split /,/, $auth_fields;
529 my $field;
531 if ( $record->field($tag) ) {
532 foreach my $tmpfield ( $record->field($tag)->subfields ) {
534 my $subfieldcode = shift @$tmpfield;
535 my $subfieldvalue = shift @$tmpfield;
536 if ($field) {
537 $field->add_subfields(
538 "$subfieldcode" => $subfieldvalue )
539 if ( $subfieldcode ne $subfield );
541 else {
542 $field =
543 MARC::Field->new( $tag, "", "",
544 $subfieldcode => $subfieldvalue )
545 if ( $subfieldcode ne $subfield );
549 $record->delete_field( $record->field($tag) );
550 foreach my $fieldtag (@auth_fields) {
551 next unless ( $record->field($fieldtag) );
552 my $lastname = $record->field($fieldtag)->subfield('a');
553 my $firstname = $record->field($fieldtag)->subfield('b');
554 my $title = $record->field($fieldtag)->subfield('c');
555 my $number = $record->field($fieldtag)->subfield('d');
556 if ($title) {
557 $field->add_subfields(
558 "$subfield" => ucfirst($title) . " "
559 . ucfirst($firstname) . " "
560 . $number );
562 else {
563 $field->add_subfields(
564 "$subfield" => ucfirst($firstname) . ", "
565 . ucfirst($lastname) );
568 $record->insert_fields_ordered($field);
570 return $record, $encoding;
573 return -1;
576 sub Load_Duplicate {
577 my ($duplicatetitle)= @_;
578 ($template, $loggedinuser, $cookie) = get_template_and_user(
580 template_name => "acqui/neworderempty_duplicate.tt",
581 query => $input,
582 type => "intranet",
583 authnotrequired => 0,
584 flagsrequired => { acquisition => 'order_manage' },
585 # debug => 1,
589 $template->param(
590 biblionumber => $biblionumber,
591 basketno => $basketno,
592 booksellerid => $basket->{'booksellerid'},
593 breedingid => $params->{'breedingid'},
594 duplicatetitle => $duplicatetitle,
595 (uc(C4::Context->preference("marcflavour"))) => 1
598 output_html_with_http_headers $input, $cookie, $template->output;