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 $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 !
113 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
115 template_name
=> "acqui/neworderempty.tmpl",
118 authnotrequired
=> 0,
119 flagsrequired
=> { acquisition
=> 'order_manage' },
124 my $marcflavour = C4
::Context
->preference('marcflavour');
127 my $order = GetOrder
($ordernumber);
128 $basketno = $order->{'basketno'};
131 my $basket = GetBasket
($basketno);
132 my $contract = &GetContract
($basket->{contractnumber
});
134 #simple parameters reading (all in one :-)
135 my $params = $input->Vars;
136 my $listprice=0; # the price, that can be in MARC record if we have one
137 if ( $ordernumber eq '' and defined $params->{'breedingid'}){
138 #we want to import from the breeding reservoir (from a z3950 search)
139 my ($marcrecord, $encoding) = MARCfindbreeding
($params->{'breedingid'});
140 die("Could not find the selected record in the reservoir, bailing") unless $marcrecord;
142 # Remove all the items (952) from the imported record
143 foreach my $item ($marcrecord->field('952')) {
144 $marcrecord->delete_field($item);
149 ($biblionumber,$duplicatetitle) = FindDuplicate
($marcrecord);
150 if($biblionumber && !$input->param('use_external_source')) {
151 #if duplicate record found and user did not decide yet, first warn user
152 #and let him choose between using new record or existing record
153 Load_Duplicate
($duplicatetitle);
156 #from this point: add a new record
157 if (C4
::Context
->preference("BiblioAddsAuthorities")){
158 my $headings_linked=BiblioAutoLink
($marcrecord, $params->{'frameworkcode'});
161 $params->{'frameworkcode'} or $params->{'frameworkcode'} = "";
162 ( $biblionumber, $bibitemnum ) = AddBiblio
( $marcrecord, $params->{'frameworkcode'} );
163 # get the price if there is one.
164 $listprice = GetMarcPrice
($marcrecord, $marcflavour);
165 SetImportRecordStatus
($params->{'breedingid'}, 'imported');
170 if ( $ordernumber eq '' ) { # create order
173 # $ordernumber=newordernum;
174 if ( $biblionumber && !$suggestionid ) {
175 $data = GetBiblioData
($biblionumber);
178 # get suggestion fields if applicable. If it's a subscription renewal, then the biblio already exists
179 # otherwise, retrieve suggestion information.
181 $data = ($biblionumber) ? GetBiblioData
($biblionumber) : GetSuggestion
($suggestionid);
185 $data = GetOrder
($ordernumber);
186 $biblionumber = $data->{'biblionumber'};
187 $budget_id = $data->{'budget_id'};
189 #get basketno and supplierno. too!
190 my $data2 = GetBasket
( $data->{'basketno'} );
191 $basketno = $data2->{'basketno'};
192 $booksellerid = $data2->{'booksellerid'};
196 $suggestion = GetSuggestionInfo
($suggestionid) if $suggestionid;
198 # get currencies (for change rates calcs if needed)
199 my $active_currency = GetCurrency
();
200 my $default_currency;
201 if (! $data->{currency
} ) { # New order no currency set
202 if ( $bookseller->{listprice
} ) {
203 $default_currency = $bookseller->{listprice
};
206 $default_currency = $active_currency->{currency
};
210 my @rates = GetCurrencies
();
214 my @loop_currency = ();
215 for my $curr ( @rates ) {
217 if ($data->{currency
} ) {
218 $selected = $curr->{currency
} eq $data->{currency
};
221 $selected = $curr->{currency
} eq $default_currency;
223 push @loop_currency, {
224 currcode
=> $curr->{currency
},
225 rate
=> $curr->{rate
},
226 selected
=> $selected,
230 # build branches list
231 my $onlymine=C4
::Context
->preference('IndependantBranches') &&
232 C4
::Context
->userenv &&
233 C4
::Context
->userenv->{flags
}!=1 &&
234 C4
::Context
->userenv->{branch
};
235 my $branches = GetBranches
($onlymine);
237 foreach my $thisbranch ( sort {$branches->{$a}->{'branchname'} cmp $branches->{$b}->{'branchname'}} keys %$branches ) {
239 value
=> $thisbranch,
240 branchname
=> $branches->{$thisbranch}->{'branchname'},
242 $row{'selected'} = 1 if( $thisbranch && $data->{branchcode
} && $thisbranch eq $data->{branchcode
}) ;
243 push @branchloop, \
%row;
245 $template->param( branchloop
=> \
@branchloop );
247 # build bookfund list
248 my $borrower= GetMember
('borrowernumber' => $loggedinuser);
249 my ( $flags, $homebranch )= ($borrower->{'flags'},$borrower->{'branchcode'});
251 my $budget = GetBudget
($budget_id);
253 my $budget_loop = [];
254 my $budgets = GetBudgetHierarchy
(q{},$borrower->{branchcode
},$borrower->{borrowernumber
});
255 foreach my $r (@
{$budgets}) {
256 if (!defined $r->{budget_amount
} || $r->{budget_amount
} == 0) {
259 push @
{$budget_loop}, {
260 b_id
=> $r->{budget_id
},
261 b_txt
=> $r->{budget_name
},
262 b_active
=> $r->{budget_period_active
},
263 b_sel
=> ( $r->{budget_id
} == $budget_id ) ?
1 : 0,
268 sort { uc( $a->{b_txt
}) cmp uc( $b->{b_txt
}) } @
{$budget_loop};
271 $budget_id = $data->{'budget_id'};
272 $budget_name = $budget->{'budget_name'};
277 if ($budget) { # its a mod ..
278 if ( defined $budget->{'sort1_authcat'} ) { # with custom Asort* planning values
279 $CGIsort1 = GetAuthvalueDropbox
( $budget->{'sort1_authcat'}, $data->{'sort1'} );
281 } elsif(@
{$budgets}){
282 $CGIsort1 = GetAuthvalueDropbox
( @
$budgets[0]->{'sort1_authcat'}, '' );
284 $CGIsort1 = GetAuthvalueDropbox
( '', '' );
287 # if CGIsort is successfully fetched, the use it
288 # else - failback to plain input-field
290 $template->param( CGIsort1
=> $CGIsort1 );
292 $template->param( sort1
=> $data->{'sort1'} );
297 if ( defined $budget->{'sort2_authcat'} ) {
298 $CGIsort2 = GetAuthvalueDropbox
( $budget->{'sort2_authcat'}, $data->{'sort2'} );
300 } elsif(@
{$budgets}) {
301 $CGIsort2 = GetAuthvalueDropbox
( @
$budgets[0]->{sort2_authcat
}, '' );
303 $CGIsort2 = GetAuthvalueDropbox
( '', '' );
307 $template->param( CGIsort2
=> $CGIsort2 );
309 $template->param( sort2
=> $data->{'sort2'} );
312 if (C4
::Context
->preference('AcqCreateItem') eq 'ordering' && !$ordernumber) {
313 # Check if ACQ framework exists
314 my $marc = GetMarcStructure
(1, 'ACQ');
316 $template->param('NoACQframework' => 1);
319 AcqCreateItemOrdering
=> 1,
320 UniqueItemFields
=> C4
::Context
->preference('UniqueItemFields'),
323 # 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
325 @itemtypes = C4
::ItemType
->all unless C4
::Context
->preference('item-level_itypes');
327 # Find the items.barcode subfield for barcode validations
328 my (undef, $barcode_subfield) = GetMarcFromKohaField
('items.barcode', '');
333 budget_id
=> $budget_id,
334 budget_name
=> $budget_name
338 existing
=> $biblionumber,
339 ordernumber
=> $ordernumber,
340 # basket informations
341 basketno
=> $basketno,
342 basketname
=> $basket->{'basketname'},
343 basketnote
=> $basket->{'note'},
344 booksellerid
=> $basket->{'booksellerid'},
345 basketbooksellernote
=> $basket->{booksellernote
},
346 basketcontractno
=> $basket->{contractnumber
},
347 basketcontractname
=> $contract->{contractname
},
348 creationdate
=> $basket->{creationdate
},
349 authorisedby
=> $basket->{'authorisedby'},
350 authorisedbyname
=> $basket->{'authorisedbyname'},
351 closedate
=> $basket->{'closedate'},
353 suggestionid
=> $suggestion->{suggestionid
},
354 surnamesuggestedby
=> $suggestion->{surnamesuggestedby
},
355 firstnamesuggestedby
=> $suggestion->{firstnamesuggestedby
},
356 biblionumber
=> $biblionumber,
357 uncertainprice
=> $data->{'uncertainprice'},
358 authorisedbyname
=> $borrower->{'firstname'} . " " . $borrower->{'surname'},
359 biblioitemnumber
=> $data->{'biblioitemnumber'},
360 discount_2dp
=> sprintf( "%.2f", $bookseller->{'discount'}) , # for display
361 discount
=> $bookseller->{'discount'},
362 listincgst
=> $bookseller->{'listincgst'},
363 invoiceincgst
=> $bookseller->{'invoiceincgst'},
364 name
=> $bookseller->{'name'},
365 cur_active_sym
=> $active_currency->{'symbol'},
366 cur_active
=> $active_currency->{'currency'},
367 loop_currencies
=> \
@loop_currency,
368 orderexists
=> ( $new eq 'yes' ) ?
0 : 1,
369 title
=> $data->{'title'},
370 author
=> $data->{'author'},
371 publicationyear
=> $data->{'publicationyear'} ?
$data->{'publicationyear'} : $data->{'copyrightdate'},
372 editionstatement
=> $data->{'editionstatement'},
373 budget_loop
=> $budget_loop,
374 isbn
=> $data->{'isbn'},
375 seriestitle
=> $data->{'seriestitle'},
376 itemtypeloop
=> \
@itemtypes,
377 quantity
=> $data->{'quantity'},
378 quantityrec
=> $data->{'quantity'},
379 rrp
=> $data->{'rrp'},
380 listprice
=> sprintf("%.2f", $data->{'listprice'}||$data->{'price'}||$listprice),
381 total
=> sprintf("%.2f", ($data->{'ecost'}||0)*($data->{'quantity'}||0) ),
382 ecost
=> $data->{'ecost'},
383 unitprice
=> sprintf("%.2f", $data->{'unitprice'}||0),
384 notes
=> $data->{'notes'},
385 publishercode
=> $data->{'publishercode'},
386 barcode_subfield
=> $barcode_subfield,
388 import_batch_id
=> $import_batch_id,
390 # CHECKME: gst-stuff needs verifing, mason.
391 gstrate
=> $bookseller->{'gstrate'} // C4
::Context
->preference("gist") // 0,
392 gstreg
=> $bookseller->{'gstreg'},
395 output_html_with_http_headers
$input, $cookie, $template->output;
398 =head2 MARCfindbreeding
400 $record = MARCfindbreeding($breedingid);
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.
409 sub MARCfindbreeding
{
411 my ($marc, $encoding) = GetImportRecordMarc
($id);
412 # remove the - in isbn, koha store isbn without any -
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);
421 $field->update( $isbnsubfield => $newisbn );
425 # fix the unimarc 100 coded field (with unicode information)
426 if ($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);
439 if ( !defined(ref($record)) ) {
443 # normalize author : probably UNIMARC specific...
444 if ( C4
::Context
->preference("z3950NormalizeAuthor")
445 and C4
::Context
->preference("z3950AuthorAuthFields") )
447 my ( $tag, $subfield ) = GetMarcFromKohaField
("biblio.author");
449 # my $summary = C4::Context->preference("z3950authortemplate");
451 C4
::Context
->preference("z3950AuthorAuthFields");
452 my @auth_fields = split /,/, $auth_fields;
455 if ( $record->field($tag) ) {
456 foreach my $tmpfield ( $record->field($tag)->subfields ) {
458 # foreach my $subfieldcode ($tmpfield->subfields){
459 my $subfieldcode = shift @
$tmpfield;
460 my $subfieldvalue = shift @
$tmpfield;
462 $field->add_subfields(
463 "$subfieldcode" => $subfieldvalue )
464 if ( $subfieldcode ne $subfield );
468 MARC
::Field
->new( $tag, "", "",
469 $subfieldcode => $subfieldvalue )
470 if ( $subfieldcode ne $subfield );
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');
483 # $field->add_subfields("$subfield"=>"[ ".ucfirst($title).ucfirst($firstname)." ".$number." ]");
484 $field->add_subfields(
485 "$subfield" => ucfirst($title) . " "
486 . ucfirst($firstname) . " "
491 # $field->add_subfields("$subfield"=>"[ ".ucfirst($firstname).", ".ucfirst($lastname)." ]");
492 $field->add_subfields(
493 "$subfield" => ucfirst($firstname) . ", "
494 . ucfirst($lastname) );
497 $record->insert_fields_ordered($field);
499 return $record, $encoding;
506 my ($duplicatetitle)= @_;
507 ($template, $loggedinuser, $cookie) = get_template_and_user
(
509 template_name
=> "acqui/neworderempty_duplicate.tmpl",
512 authnotrequired
=> 0,
513 flagsrequired
=> { acquisition
=> 'order_manage' },
519 biblionumber
=> $biblionumber,
520 basketno
=> $basketno,
521 booksellerid
=> $basket->{'booksellerid'},
522 breedingid
=> $params->{'breedingid'},
523 duplicatetitle
=> $duplicatetitle,
526 output_html_with_http_headers
$input, $cookie, $template->output;