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 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
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.
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.
30 this script allows to create a new record to order it. This record shouldn't exist
38 the bookseller the librarian has to buy a new book.
41 the title of this new record.
44 the author of this new record.
46 =item publication year
47 the publication year of this new record.
50 the number of this order.
55 the basket number for this new order.
58 if this order comes from a suggestion.
61 the item's id in the breeding reservoir
79 use C4
::Bookseller qw
/ GetBookSellerFromId /;
81 use C4
::Suggestions
; # GetSuggestion
82 use C4
::Biblio
; # GetBiblioData GetMarcPrice
83 use C4
::Items
; #PrepareItemRecord
87 use C4
::Branch
; # GetBranches
89 use C4
::Search qw
/FindDuplicate/;
91 #needed for z3950 import:
92 use C4
::ImportBatch qw
/GetImportRecordMarc SetImportRecordStatus/;
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 $ordernumber = $input->param('ordernumber') || '';
101 our $biblionumber = $input->param('biblionumber');
102 our $basketno = $input->param('basketno');
103 my $suggestionid = $input->param('suggestionid');
104 my $close = $input->param('close');
105 my $uncertainprice = $input->param('uncertainprice');
106 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 !
107 my $subscriptionid = $input->param('subscriptionid');
113 our ( $template, $loggedinuser, $cookie, $userflags ) = get_template_and_user
(
115 template_name
=> "acqui/neworderempty.tmpl",
118 authnotrequired
=> 0,
119 flagsrequired
=> { acquisition
=> 'order_manage' },
124 our $marcflavour = C4
::Context
->preference('marcflavour');
127 my $order = GetOrder
($ordernumber);
128 $basketno = $order->{'basketno'};
131 our $basket = GetBasket
($basketno);
132 $booksellerid = $basket->{booksellerid
} unless $booksellerid;
133 my $bookseller = GetBookSellerFromId
($booksellerid);
135 my $contract = &GetContract
($basket->{contractnumber
});
137 #simple parameters reading (all in one :-)
138 our $params = $input->Vars;
139 my $listprice=0; # the price, that can be in MARC record if we have one
140 if ( $ordernumber eq '' and defined $params->{'breedingid'}){
141 #we want to import from the breeding reservoir (from a z3950 search)
142 my ($marcrecord, $encoding) = MARCfindbreeding
($params->{'breedingid'});
143 die("Could not find the selected record in the reservoir, bailing") unless $marcrecord;
145 # Remove all the items (952) from the imported record
146 foreach my $item ($marcrecord->field('952')) {
147 $marcrecord->delete_field($item);
152 ($biblionumber,$duplicatetitle) = FindDuplicate
($marcrecord);
153 if($biblionumber && !$input->param('use_external_source')) {
154 #if duplicate record found and user did not decide yet, first warn user
155 #and let him choose between using new record or existing record
156 Load_Duplicate
($duplicatetitle);
159 #from this point: add a new record
160 if (C4
::Context
->preference("BiblioAddsAuthorities")){
161 my $headings_linked=BiblioAutoLink
($marcrecord, $params->{'frameworkcode'});
164 $params->{'frameworkcode'} or $params->{'frameworkcode'} = "";
165 ( $biblionumber, $bibitemnum ) = AddBiblio
( $marcrecord, $params->{'frameworkcode'} );
166 # get the price if there is one.
167 $listprice = GetMarcPrice
($marcrecord, $marcflavour);
168 SetImportRecordStatus
($params->{'breedingid'}, 'imported');
173 if ( $ordernumber eq '' ) { # create order
176 # $ordernumber=newordernum;
177 if ( $biblionumber && !$suggestionid ) {
178 $data = GetBiblioData
($biblionumber);
181 # get suggestion fields if applicable. If it's a subscription renewal, then the biblio already exists
182 # otherwise, retrieve suggestion information.
184 $data = ($biblionumber) ? GetBiblioData
($biblionumber) : GetSuggestion
($suggestionid);
185 $budget_id ||= $data->{'budgetid'} // 0;
189 $data = GetOrder
($ordernumber);
190 $biblionumber = $data->{'biblionumber'};
191 $budget_id = $data->{'budget_id'};
193 $basket = GetBasket
( $data->{'basketno'} );
194 $basketno = $basket->{'basketno'};
198 $suggestion = GetSuggestionInfo
($suggestionid) if $suggestionid;
200 # get currencies (for change rates calcs if needed)
201 my $active_currency = GetCurrency
();
202 my $default_currency;
203 if (! $data->{currency
} ) { # New order no currency set
204 if ( $bookseller->{listprice
} ) {
205 $default_currency = $bookseller->{listprice
};
208 $default_currency = $active_currency->{currency
};
212 my @rates = GetCurrencies
();
216 my @loop_currency = ();
217 for my $curr ( @rates ) {
219 if ($data->{currency
} ) {
220 $selected = $curr->{currency
} eq $data->{currency
};
223 $selected = $curr->{currency
} eq $default_currency;
225 push @loop_currency, {
226 currcode
=> $curr->{currency
},
227 rate
=> $curr->{rate
},
228 selected
=> $selected,
232 # build branches list
234 C4
::Context
->preference('IndependentBranches')
235 && C4
::Context
->userenv
236 && !C4
::Context
->IsSuperLibrarian()
237 && C4
::Context
->userenv->{branch
};
238 my $branches = GetBranches
($onlymine);
240 foreach my $thisbranch ( sort {$branches->{$a}->{'branchname'} cmp $branches->{$b}->{'branchname'}} keys %$branches ) {
242 value
=> $thisbranch,
243 branchname
=> $branches->{$thisbranch}->{'branchname'},
245 $row{'selected'} = 1 if( $thisbranch && $data->{branchcode
} && $thisbranch eq $data->{branchcode
}) ;
246 push @branchloop, \
%row;
248 $template->param( branchloop
=> \
@branchloop );
250 # build bookfund list
251 my $borrower= GetMember
('borrowernumber' => $loggedinuser);
252 my ( $flags, $homebranch )= ($borrower->{'flags'},$borrower->{'branchcode'});
254 my $budget = GetBudget
($budget_id);
256 my $budget_loop = [];
257 my $budgets = GetBudgetHierarchy
;
258 foreach my $r (@
{$budgets}) {
259 next unless (CanUserUseBudget
($borrower, $r, $userflags));
260 if (!defined $r->{budget_amount
} || $r->{budget_amount
} == 0) {
263 push @
{$budget_loop}, {
264 b_id
=> $r->{budget_id
},
265 b_txt
=> $r->{budget_name
},
266 b_sort1_authcat
=> $r->{'sort1_authcat'},
267 b_sort2_authcat
=> $r->{'sort2_authcat'},
268 b_active
=> $r->{budget_period_active
},
269 b_sel
=> ( $r->{budget_id
} == $budget_id ) ?
1 : 0,
274 sort { uc( $a->{b_txt
}) cmp uc( $b->{b_txt
}) } @
{$budget_loop};
277 $budget_id = $data->{'budget_id'};
278 $budget_name = $budget->{'budget_name'};
282 $template->param( sort1
=> $data->{'sort1'} );
283 $template->param( sort2
=> $data->{'sort2'} );
285 if (C4
::Context
->preference('AcqCreateItem') eq 'ordering' && !$ordernumber) {
286 # Check if ACQ framework exists
287 my $marc = GetMarcStructure
(1, 'ACQ');
289 $template->param('NoACQframework' => 1);
292 AcqCreateItemOrdering
=> 1,
293 UniqueItemFields
=> C4
::Context
->preference('UniqueItemFields'),
296 # 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
298 @itemtypes = C4
::ItemType
->all unless C4
::Context
->preference('item-level_itypes');
300 if ( defined $subscriptionid ) {
301 my $lastOrderReceived = GetLastOrderReceivedFromSubscriptionid
$subscriptionid;
302 if ( defined $lastOrderReceived ) {
303 $budget_id = $lastOrderReceived->{budgetid
};
304 $data->{listprice
} = $lastOrderReceived->{listprice
};
305 $data->{uncertainprice
} = $lastOrderReceived->{uncertainprice
};
306 $data->{gstrate
} = $lastOrderReceived->{gstrate
};
307 $data->{discount
} = $lastOrderReceived->{discount
};
308 $data->{rrp
} = $lastOrderReceived->{rrp
};
309 $data->{ecost
} = $lastOrderReceived->{ecost
};
310 $data->{quantity
} = $lastOrderReceived->{quantity
};
311 $data->{unitprice
} = $lastOrderReceived->{unitprice
};
312 $data->{order_internalnote
} = $lastOrderReceived->{order_internalnote
};
313 $data->{order_vendornote
} = $lastOrderReceived->{order_vendornote
};
314 $data->{sort1
} = $lastOrderReceived->{sort1
};
315 $data->{sort2
} = $lastOrderReceived->{sort2
};
317 $basket = GetBasket
( $input->param('basketno') );
321 # Find the items.barcode subfield for barcode validations
322 my (undef, $barcode_subfield) = GetMarcFromKohaField
('items.barcode', '');
327 budget_id
=> $budget_id,
328 budget_name
=> $budget_name
331 # get option values for gist syspref
332 my @gst_values = map {
334 }, split( '\|', C4
::Context
->preference("gist") );
336 my $quantity = $input->param('rr_quantity_to_order') ?
337 $input->param('rr_quantity_to_order') :
342 existing
=> $biblionumber,
343 ordernumber
=> $ordernumber,
344 # basket informations
345 basketno
=> $basketno,
346 basketname
=> $basket->{'basketname'},
347 basketnote
=> $basket->{'note'},
348 booksellerid
=> $basket->{'booksellerid'},
349 basketbooksellernote
=> $basket->{booksellernote
},
350 basketcontractno
=> $basket->{contractnumber
},
351 basketcontractname
=> $contract->{contractname
},
352 creationdate
=> $basket->{creationdate
},
353 authorisedby
=> $basket->{'authorisedby'},
354 authorisedbyname
=> $basket->{'authorisedbyname'},
355 closedate
=> $basket->{'closedate'},
357 suggestionid
=> $suggestion->{suggestionid
},
358 surnamesuggestedby
=> $suggestion->{surnamesuggestedby
},
359 firstnamesuggestedby
=> $suggestion->{firstnamesuggestedby
},
360 biblionumber
=> $biblionumber,
361 uncertainprice
=> $data->{'uncertainprice'},
362 authorisedbyname
=> $borrower->{'firstname'} . " " . $borrower->{'surname'},
363 discount_2dp
=> sprintf( "%.2f", $bookseller->{'discount'} ) , # for display
364 discount
=> $bookseller->{'discount'},
365 orderdiscount_2dp
=> sprintf( "%.2f", $data->{'discount'} || 0 ),
366 orderdiscount
=> $data->{'discount'},
367 order_internalnote
=> $data->{'order_internalnote'},
368 order_vendornote
=> $data->{'order_vendornote'},
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 editionstatement
=> $data->{'editionstatement'},
380 budget_loop
=> $budget_loop,
381 isbn
=> $data->{'isbn'},
382 ean
=> $data->{'ean'},
383 seriestitle
=> $data->{'seriestitle'},
384 itemtypeloop
=> \
@itemtypes,
385 quantity
=> $quantity,
386 quantityrec
=> $quantity,
387 rrp
=> $data->{'rrp'},
388 gst_values
=> \
@gst_values,
389 gstrate
=> $data->{gstrate
} ?
$data->{gstrate
}+0.0 : $bookseller->{gstrate
} ?
$bookseller->{gstrate
}+0.0 : 0,
390 gstreg
=> $bookseller->{'gstreg'},
391 listprice
=> sprintf( "%.2f", $data->{listprice
} || $data->{price
} || $listprice),
392 total
=> sprintf( "%.2f", ($data->{ecost
} || 0) * ($data->{'quantity'} || 0) ),
393 ecost
=> sprintf( "%.2f", $data->{ecost
} || 0),
394 unitprice
=> sprintf( "%.2f", $data->{unitprice
} || 0),
395 publishercode
=> $data->{'publishercode'},
396 barcode_subfield
=> $barcode_subfield,
397 import_batch_id
=> $import_batch_id,
398 subscriptionid
=> $subscriptionid,
399 acqcreate
=> C4
::Context
->preference("AcqCreateItem") eq "ordering" ?
1 : "",
400 (uc(C4
::Context
->preference("marcflavour"))) => 1
403 output_html_with_http_headers
$input, $cookie, $template->output;
406 =head2 MARCfindbreeding
408 $record = MARCfindbreeding($breedingid);
410 Look up the import record repository for the record with
411 record with id $breedingid. If found, returns the decoded
412 MARC::Record; otherwise, -1 is returned (FIXME).
413 Returns as second parameter the character encoding.
417 sub MARCfindbreeding
{
419 my ($marc, $encoding) = GetImportRecordMarc
($id);
420 # remove the - in isbn, koha store isbn without any -
422 my $record = MARC
::Record
->new_from_usmarc($marc);
423 my ($isbnfield,$isbnsubfield) = GetMarcFromKohaField
('biblioitems.isbn','');
424 if ( $record->field($isbnfield) ) {
425 foreach my $field ( $record->field($isbnfield) ) {
426 foreach my $subfield ( $field->subfield($isbnsubfield) ) {
427 my $newisbn = $field->subfield($isbnsubfield);
429 $field->update( $isbnsubfield => $newisbn );
433 # fix the unimarc 100 coded field (with unicode information)
434 if ($marcflavour eq 'UNIMARC' && $record->subfield(100,'a')) {
435 my $f100a=$record->subfield(100,'a');
436 my $f100 = $record->field(100);
437 my $f100temp = $f100->as_string;
438 $record->delete_field($f100);
439 if ( length($f100temp) > 28 ) {
440 substr( $f100temp, 26, 2, "50" );
441 $f100->update( 'a' => $f100temp );
442 my $f100 = MARC
::Field
->new( '100', '', '', 'a' => $f100temp );
443 $record->insert_fields_ordered($f100);
447 if ( !defined(ref($record)) ) {
451 # normalize author : probably UNIMARC specific...
452 if ( C4
::Context
->preference("z3950NormalizeAuthor")
453 and C4
::Context
->preference("z3950AuthorAuthFields") )
455 my ( $tag, $subfield ) = GetMarcFromKohaField
("biblio.author", '');
457 # my $summary = C4::Context->preference("z3950authortemplate");
459 C4
::Context
->preference("z3950AuthorAuthFields");
460 my @auth_fields = split /,/, $auth_fields;
463 if ( $record->field($tag) ) {
464 foreach my $tmpfield ( $record->field($tag)->subfields ) {
466 # foreach my $subfieldcode ($tmpfield->subfields){
467 my $subfieldcode = shift @
$tmpfield;
468 my $subfieldvalue = shift @
$tmpfield;
470 $field->add_subfields(
471 "$subfieldcode" => $subfieldvalue )
472 if ( $subfieldcode ne $subfield );
476 MARC
::Field
->new( $tag, "", "",
477 $subfieldcode => $subfieldvalue )
478 if ( $subfieldcode ne $subfield );
482 $record->delete_field( $record->field($tag) );
483 foreach my $fieldtag (@auth_fields) {
484 next unless ( $record->field($fieldtag) );
485 my $lastname = $record->field($fieldtag)->subfield('a');
486 my $firstname = $record->field($fieldtag)->subfield('b');
487 my $title = $record->field($fieldtag)->subfield('c');
488 my $number = $record->field($fieldtag)->subfield('d');
491 # $field->add_subfields("$subfield"=>"[ ".ucfirst($title).ucfirst($firstname)." ".$number." ]");
492 $field->add_subfields(
493 "$subfield" => ucfirst($title) . " "
494 . ucfirst($firstname) . " "
499 # $field->add_subfields("$subfield"=>"[ ".ucfirst($firstname).", ".ucfirst($lastname)." ]");
500 $field->add_subfields(
501 "$subfield" => ucfirst($firstname) . ", "
502 . ucfirst($lastname) );
505 $record->insert_fields_ordered($field);
507 return $record, $encoding;
514 my ($duplicatetitle)= @_;
515 ($template, $loggedinuser, $cookie) = get_template_and_user
(
517 template_name
=> "acqui/neworderempty_duplicate.tmpl",
520 authnotrequired
=> 0,
521 flagsrequired
=> { acquisition
=> 'order_manage' },
527 biblionumber
=> $biblionumber,
528 basketno
=> $basketno,
529 booksellerid
=> $basket->{'booksellerid'},
530 breedingid
=> $params->{'breedingid'},
531 duplicatetitle
=> $duplicatetitle,
532 (uc(C4
::Context
->preference("marcflavour"))) => 1
535 output_html_with_http_headers
$input, $cookie, $template->output;