Merge commit 'biblibre/3.2_biblibre' into to-push
[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 with
20 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
21 # Suite 330, Boston, MA  02111-1307 USA
22
23
24 =head1 NAME
25
26 neworderempty.pl
27
28 =head1 DESCRIPTION
29 this script allows to create a new record to order it. This record shouldn't exist
30 on database.
31
32 =head1 CGI PARAMETERS
33
34 =over 4
35
36 =item booksellerid
37 the bookseller the librarian has to buy a new book.
38
39 =item title
40 the title of this new record.
41
42 =item author
43 the author of this new record.
44
45 =item publication year
46 the publication year of this new record.
47
48 =item ordernumber
49 the number of this order.
50
51 =item biblio
52
53 =item basketno
54 the basket number for this new order.
55
56 =item suggestionid
57 if this order comes from a suggestion.
58
59 =item breedingid
60 the item's id in the breeding reservoir
61
62 =item close
63
64 =back
65
66 =cut
67
68 use warnings;
69 use strict;
70 use CGI;
71 use C4::Context;
72 use C4::Input;
73
74 use C4::Auth;
75 use C4::Budgets;
76 use C4::Input;
77 use C4::Dates;
78
79 use C4::Bookseller;             # GetBookSellerFromId
80 use C4::Acquisition;
81 use C4::Suggestions;    # GetSuggestion
82 use C4::Biblio;                 # GetBiblioData
83 use C4::Output;
84 use C4::Input;
85 use C4::Koha;
86 use C4::Branch;                 # GetBranches
87 use C4::Members;
88 use C4::Search qw/FindDuplicate BiblioAddAuthorities/;
89
90 #needed for z3950 import:
91 use C4::ImportBatch qw/GetImportRecordMarc SetImportRecordStatus/;
92
93 my $input           = new CGI;
94 my $booksellerid    = $input->param('booksellerid');    # FIXME: else ERROR!
95 my $budget_id       = $input->param('budget_id');       # FIXME: else ERROR!
96 my $title           = $input->param('title');
97 my $author          = $input->param('author');
98 my $publicationyear = $input->param('publicationyear');
99 my $bookseller      = GetBookSellerFromId($booksellerid);       # FIXME: else ERROR!
100 my $ordernumber          = $input->param('ordernumber') || '';
101 my $biblionumber    = $input->param('biblionumber');
102 my $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 $data;
108 my $new = 'no';
109
110 my $budget_name;
111
112 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
113     {
114         template_name   => "acqui/neworderempty.tmpl",
115         query           => $input,
116         type            => "intranet",
117         authnotrequired => 0,
118         flagsrequired   => { acquisition => 'order_manage' },
119         debug           => 1,
120     }
121 );
122
123 my $basket = GetBasket($basketno);
124 my $contract = &GetContract($basket->{contractnumber});
125
126 #simple parameters reading (all in one :-)
127 my $params = $input->Vars;
128 my $listprice; # the price, that can be in MARC record if we have one
129 if ( $ordernumber eq '' and defined $params->{'breedingid'}){
130 #we want to import from the breeding reservoir (from a z3950 search)
131     my ($marcrecord, $encoding) = MARCfindbreeding($params->{'breedingid'});
132     die("Could not find the selected record in the reservoir, bailing") unless $marcrecord;
133
134     my $duplicatetitle;
135 #look for duplicates
136     if (! (($biblionumber,$duplicatetitle) = FindDuplicate($marcrecord))){
137         if (C4::Context->preference("BiblioAddsAuthorities")){
138             my ($countlinked,$countcreated)=BiblioAddAuthorities($marcrecord, $params->{'frameworkcode'});
139         }
140         my $bibitemnum;
141         $params->{'frameworkcode'} or $params->{'frameworkcode'} = "";
142         ( $biblionumber, $bibitemnum ) = AddBiblio( $marcrecord, $params->{'frameworkcode'} );
143         # get the price if there is one.
144         # filter by storing only the 1st number
145         # we suppose the currency is correct, as we have no possibilities to get it.
146         if ($marcrecord->subfield("345","d")) {
147             $listprice = $marcrecord->subfield("345","d");
148             if ($listprice =~ /^([\d\.,]*)/) {
149                 $listprice = $1;
150                 $listprice =~ s/,/\./;
151             } else {
152                 $listprice = 0;
153             }
154         }
155         elsif ($marcrecord->subfield("010","d")) {
156             $listprice = $marcrecord->subfield("010","d");
157             if ($listprice =~ /^([\d\.,]*)/) {
158                 $listprice = $1;
159                 $listprice =~ s/,/\./;
160             } else {
161                 $listprice = 0;
162             }
163         }
164         SetImportRecordStatus($params->{'breedingid'}, 'imported');
165     }
166 }
167
168
169 my $cur = GetCurrency();
170
171 if ( $ordernumber eq '' ) {    # create order
172     $new = 'yes';
173
174     #   $ordernumber=newordernum;
175     if ( $biblionumber && !$suggestionid ) {
176         $data = GetBiblioData($biblionumber);
177     }
178
179 # get suggestion fields if applicable. If it's a subscription renewal, then the biblio already exists
180 # otherwise, retrieve suggestion information.
181     if ($suggestionid) {
182         $data = ($biblionumber) ? GetBiblioData($biblionumber) : GetSuggestion($suggestionid);
183     }
184 }
185 else {    #modify order
186     $data   = GetOrder($ordernumber);
187     $biblionumber = $data->{'biblionumber'};
188     $budget_id = $data->{'budget_id'};
189
190     #get basketno and supplierno. too!
191     my $data2 = GetBasket( $data->{'basketno'} );
192     $basketno     = $data2->{'basketno'};
193     $booksellerid = $data2->{'booksellerid'};
194 }
195
196 # get currencies (for change rates calcs if needed)
197 my @rates = GetCurrencies();
198 my $count = scalar @rates;
199
200 # ## @rates
201
202 my @loop_currency = ();
203 for ( my $i = 0 ; $i < $count ; $i++ ) {
204     my %line;
205     $line{currency} = $rates[$i]->{'currency'};
206     $line{rate}     = $rates[$i]->{'rate'};
207     push @loop_currency, \%line;
208 }
209
210 # build branches list
211 my $onlymine=C4::Context->preference('IndependantBranches') && 
212             C4::Context->userenv && 
213             C4::Context->userenv->{flags}!=1 && 
214             C4::Context->userenv->{branch};
215 my $branches = GetBranches($onlymine);
216 my @branchloop;
217 foreach my $thisbranch ( sort {$branches->{$a}->{'branchname'} cmp $branches->{$b}->{'branchname'}} keys %$branches ) {
218     my %row = (
219         value      => $thisbranch,
220         branchname => $branches->{$thisbranch}->{'branchname'},
221     );
222     $row{'selected'} = 1 if( $thisbranch eq $data->{branchcode}) ;
223     push @branchloop, \%row;
224 }
225 $template->param( branchloop => \@branchloop );
226
227 # build bookfund list
228 my $borrower= GetMember('borrowernumber' => $loggedinuser);
229 my ( $flags, $homebranch )= ($borrower->{'flags'},$borrower->{'branchcode'});
230
231 my $budget =  GetBudget($budget_id);
232 # build budget list
233 my %labels;
234 my @values;
235 my $budgets = GetBudgetHierarchy('','',$borrower->{'borrowernumber'});
236 foreach my $r (@$budgets) {
237     $labels{"$r->{budget_id}"} = $r->{budget_name};
238     next if  sprintf ("%00d",  $r->{budget_amount})  ==   0;
239     push @values, $r->{budget_id};
240 }
241 # if no budget_id is passed then its an add
242 my $budget_dropbox = CGI::scrolling_list(
243     -name    => 'budget_id',
244     -id      => 'budget_id',
245     -values  => \@values,
246     -size    => 1,
247     -labels  => \%labels,
248     -onChange   => "fetchSortDropbox(this.form)",
249 );
250
251 if ($close) {
252     $budget_id      =  $data->{'budget_id'};
253     $budget_name    =   $budget->{'budget_name'};
254
255 }
256
257 my $CGIsort1;
258 if ($budget) {    # its a mod ..
259     if ( defined $budget->{'sort1_authcat'} ) {    # with custom  Asort* planning values
260         $CGIsort1 = GetAuthvalueDropbox( 'sort1', $budget->{'sort1_authcat'}, $data->{'sort1'} );
261     }
262 } elsif(scalar(@$budgets)){
263     $CGIsort1 = GetAuthvalueDropbox( 'sort1', @$budgets[0]->{'sort1_authcat'}, '' );
264 }else{
265     $CGIsort1 = GetAuthvalueDropbox( 'sort1','', '' );
266 }
267
268 # if CGIsort is successfully fetched, the use it
269 # else - failback to plain input-field
270 if ($CGIsort1) {
271     $template->param( CGIsort1 => $CGIsort1 );
272 } else {
273     $template->param( sort1 => $data->{'sort1'} );
274 }
275
276 my $CGIsort2;
277 if ($budget) {
278     if ( defined $budget->{'sort2_authcat'} ) {
279         $CGIsort2 = GetAuthvalueDropbox( 'sort2', $budget->{'sort2_authcat'}, $data->{'sort2'} );
280     }
281 } elsif(scalar(@$budgets)) {
282     $CGIsort2 = GetAuthvalueDropbox( 'sort2', @$budgets[0]->{sort2_authcat}, '' );
283 }else{
284     $CGIsort2 = GetAuthvalueDropbox( 'sort2','', '' );
285 }
286
287 if ($CGIsort2) {
288     $template->param( CGIsort2 => $CGIsort2 );
289 } else {
290     $template->param( sort2 => $data->{'sort2'} );
291 }
292
293 if (C4::Context->preference('AcqCreateItem') eq 'ordering' && !$ordernumber) {
294     # prepare empty item form
295     my $cell = PrepareItemrecordDisplay('','','','ACQ');
296 #     warn "==> ".Data::Dumper::Dumper($cell);
297     unless ($cell) {
298         $cell = PrepareItemrecordDisplay('','','','');
299         $template->param('NoACQframework' => 1);
300     }
301     my @itemloop;
302     push @itemloop,$cell;
303     
304     $template->param(items => \@itemloop);
305 }
306
307 # fill template
308 $template->param(
309     close        => $close,
310     budget_id    => $budget_id,
311     budget_name  => $budget_name
312 ) if ($close);
313
314 $template->param(
315     existing         => $biblionumber,
316     ordernumber           => $ordernumber,
317     # basket informations
318     basketno             => $basketno,
319     basketname           => $basket->{'basketname'},
320     basketnote           => $basket->{'note'},
321     booksellerid         => $basket->{'booksellerid'},
322     basketbooksellernote => $basket->{booksellernote},
323     basketcontractno     => $basket->{contractnumber},
324     basketcontractname   => $contract->{contractname},
325     creationdate         => C4::Dates->new($basket->{creationdate},'iso')->output,
326     authorisedby         => $basket->{'authorisedby'},
327     authorisedbyname     => $basket->{'authorisedbyname'},
328     closedate            => C4::Dates->new($basket->{'closedate'},'iso')->output,
329     # order details
330     suggestionid     => $suggestionid,
331     biblionumber     => $biblionumber,
332     uncertainprice   => $data->{'uncertainprice'},
333     authorisedbyname => $borrower->{'firstname'} . " " . $borrower->{'surname'},
334     biblioitemnumber => $data->{'biblioitemnumber'},
335     discount_2dp     => sprintf( "%.2f",  $bookseller->{'discount'}) ,   # for display
336     discount         => $bookseller->{'discount'},
337     listincgst       => $bookseller->{'listincgst'},
338     invoiceincgst    => $bookseller->{'invoiceincgst'},
339     name             => $bookseller->{'name'},
340     cur_active_sym   => $cur->{'symbol'},
341     cur_active       => $cur->{'currency'},
342     currency         => $bookseller->{'listprice'} || $cur->{'currency'}, # eg: 'EUR'
343     loop_currencies  => \@loop_currency,
344     orderexists      => ( $new eq 'yes' ) ? 0 : 1,
345     title            => $data->{'title'},
346     author           => $data->{'author'},
347     publicationyear  => $data->{'publicationyear'},
348     budget_dropbox   => $budget_dropbox,
349     isbn             => $data->{'isbn'},
350     seriestitle      => $data->{'seriestitle'},
351     quantity         => $data->{'quantity'},
352     quantityrec      => $data->{'quantity'},
353     rrp              => $data->{'rrp'},
354     listprice        => sprintf("%.2f", $data->{'listprice'}||$listprice),
355     total            => sprintf("%.2f", $data->{'ecost'}*$data->{'quantity'} ),
356     ecost            => $data->{'ecost'},
357     notes            => $data->{'notes'},
358     publishercode    => $data->{'publishercode'},
359     
360     import_batch_id  => $import_batch_id,
361
362 # CHECKME: gst-stuff needs verifing, mason.
363     gstrate          => $bookseller->{'gstrate'} || C4::Context->preference("gist"),
364     gstreg           => $bookseller->{'gstreg'},
365 );
366
367 output_html_with_http_headers $input, $cookie, $template->output;
368
369
370 =item MARCfindbreeding
371
372     $record = MARCfindbreeding($breedingid);
373
374 Look up the import record repository for the record with
375 record with id $breedingid.  If found, returns the decoded
376 MARC::Record; otherwise, -1 is returned (FIXME).
377 Returns as second parameter the character encoding.
378
379 =cut
380
381 sub MARCfindbreeding {
382     my ( $id ) = @_;
383     my ($marc, $encoding) = GetImportRecordMarc($id);
384     # remove the - in isbn, koha store isbn without any -
385     if ($marc) {
386         my $record = MARC::Record->new_from_usmarc($marc);
387         my ($isbnfield,$isbnsubfield) = GetMarcFromKohaField('biblioitems.isbn','');
388         if ( $record->field($isbnfield) ) {
389             foreach my $field ( $record->field($isbnfield) ) {
390                 foreach my $subfield ( $field->subfield($isbnsubfield) ) {
391                     my $newisbn = $field->subfield($isbnsubfield);
392                     $newisbn =~ s/-//g;
393                     $field->update( $isbnsubfield => $newisbn );
394                 }
395             }
396         }
397         # fix the unimarc 100 coded field (with unicode information)
398         if (C4::Context->preference('marcflavour') eq 'UNIMARC' && $record->subfield(100,'a')) {
399             my $f100a=$record->subfield(100,'a');
400             my $f100 = $record->field(100);
401             my $f100temp = $f100->as_string;
402             $record->delete_field($f100);
403             if ( length($f100temp) > 28 ) {
404                 substr( $f100temp, 26, 2, "50" );
405                 $f100->update( 'a' => $f100temp );
406                 my $f100 = MARC::Field->new( '100', '', '', 'a' => $f100temp );
407                 $record->insert_fields_ordered($f100);
408             }
409         }
410         
411         if ( !defined(ref($record)) ) {
412             return -1;
413         }
414         else {
415             # normalize author : probably UNIMARC specific...
416             if (    C4::Context->preference("z3950NormalizeAuthor")
417                 and C4::Context->preference("z3950AuthorAuthFields") )
418             {
419                 my ( $tag, $subfield ) = GetMarcFromKohaField("biblio.author");
420
421 #                 my $summary = C4::Context->preference("z3950authortemplate");
422                 my $auth_fields =
423                 C4::Context->preference("z3950AuthorAuthFields");
424                 my @auth_fields = split /,/, $auth_fields;
425                 my $field;
426
427                 if ( $record->field($tag) ) {
428                     foreach my $tmpfield ( $record->field($tag)->subfields ) {
429
430     #                        foreach my $subfieldcode ($tmpfield->subfields){
431                         my $subfieldcode  = shift @$tmpfield;
432                         my $subfieldvalue = shift @$tmpfield;
433                         if ($field) {
434                             $field->add_subfields(
435                                 "$subfieldcode" => $subfieldvalue )
436                             if ( $subfieldcode ne $subfield );
437                         }
438                         else {
439                             $field =
440                             MARC::Field->new( $tag, "", "",
441                                 $subfieldcode => $subfieldvalue )
442                             if ( $subfieldcode ne $subfield );
443                         }
444                     }
445                 }
446                 $record->delete_field( $record->field($tag) );
447                 foreach my $fieldtag (@auth_fields) {
448                     next unless ( $record->field($fieldtag) );
449                     my $lastname  = $record->field($fieldtag)->subfield('a');
450                     my $firstname = $record->field($fieldtag)->subfield('b');
451                     my $title     = $record->field($fieldtag)->subfield('c');
452                     my $number    = $record->field($fieldtag)->subfield('d');
453                     if ($title) {
454
455 #                         $field->add_subfields("$subfield"=>"[ ".ucfirst($title).ucfirst($firstname)." ".$number." ]");
456                         $field->add_subfields(
457                                 "$subfield" => ucfirst($title) . " "
458                             . ucfirst($firstname) . " "
459                             . $number );
460                     }
461                     else {
462
463 #                       $field->add_subfields("$subfield"=>"[ ".ucfirst($firstname).", ".ucfirst($lastname)." ]");
464                         $field->add_subfields(
465                             "$subfield" => ucfirst($firstname) . ", "
466                             . ucfirst($lastname) );
467                     }
468                 }
469                 $record->insert_fields_ordered($field);
470             }
471             return $record, $encoding;
472         }
473     }
474     return -1;
475 }
476