Merge branch 'translation' of git://git.workbuffer.org/git/koha into master
[koha_gimpoz] / acqui / neworderempty.pl
index 587c1fc..6c10459 100755 (executable)
@@ -16,9 +16,9 @@
 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
 #
-# You should have received a copy of the GNU General Public License along with
-# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
-# Suite 330, Boston, MA  02111-1307 USA
+# You should have received a copy of the GNU General Public License along
+# with Koha; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
 
 =head1 NAME
@@ -42,10 +42,10 @@ the title of this new record.
 =item author
 the author of this new record.
 
-=item copyright
-the copyright of this new record.
+=item publication year
+the publication year of this new record.
 
-=item ordnum
+=item ordernumber
 the number of this order.
 
 =item biblio
@@ -56,44 +56,58 @@ the basket number for this new order.
 =item suggestionid
 if this order comes from a suggestion.
 
+=item breedingid
+the item's id in the breeding reservoir
+
 =item close
 
 =back
 
 =cut
 
+use warnings;
 use strict;
 use CGI;
 use C4::Context;
+use C4::Input;
+
 use C4::Auth;
-use C4::Bookfund;
-use C4::Bookseller;
+use C4::Budgets;
+use C4::Input;
+use C4::Dates;
+
+use C4::Bookseller;            # GetBookSellerFromId
 use C4::Acquisition;
-use C4::Suggestions;
-use C4::Biblio;
-use C4::Search;
+use C4::Suggestions;   # GetSuggestion
+use C4::Biblio;                        # GetBiblioData
+use C4::Output;
+use C4::Input;
 use C4::Koha;
-use C4::Interface::CGI::Output;
+use C4::Branch;                        # GetBranches
 use C4::Members;
-use C4::Input;
-use C4::Date;
-
-my $input        = new CGI;
-my $booksellerid = $input->param('booksellerid');
-my $title        = $input->param('title');
-my $author       = $input->param('author');
-my $copyright    = $input->param('copyright');
-my @booksellers  = GetBookSeller($booksellerid);
-my $count        = scalar @booksellers;
-my $ordnum       = $input->param('ordnum');
-my $biblionumber       = $input->param('biblionumber');
-my $basketno     = $input->param('basketno');
-my $suggestionid = $input->param('suggestionid');
-my $close        = $input->param('close');
+use C4::Search qw/FindDuplicate BiblioAddAuthorities/;
+
+#needed for z3950 import:
+use C4::ImportBatch qw/GetImportRecordMarc SetImportRecordStatus/;
+
+my $input           = new CGI;
+my $booksellerid    = $input->param('booksellerid');   # FIXME: else ERROR!
+my $budget_id       = $input->param('budget_id') || 0; # FIXME: else ERROR!
+my $title           = $input->param('title');
+my $author          = $input->param('author');
+my $publicationyear = $input->param('publicationyear');
+my $bookseller      = GetBookSellerFromId($booksellerid);      # FIXME: else ERROR!
+my $ordernumber          = $input->param('ordernumber') || '';
+my $biblionumber    = $input->param('biblionumber');
+my $basketno        = $input->param('basketno');
+my $suggestionid    = $input->param('suggestionid');
+my $close           = $input->param('close');
+my $uncertainprice  = $input->param('uncertainprice');
+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 !
 my $data;
-my $new;
+my $new = 'no';
 
-my $dbh = C4::Context->dbh;
+my $budget_name;
 
 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
     {
@@ -101,76 +115,90 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
         query           => $input,
         type            => "intranet",
         authnotrequired => 0,
-        flagsrequired   => { acquisition => 1 },
+        flagsrequired   => { acquisition => 'order_manage' },
         debug           => 1,
     }
 );
-my $me= C4::Context->userenv;
-my $homebranch=$me->{'branch'} ;
-my $branch;
-my $bookfundid;
-my $discount= $booksellers[0]->{'discount'};
-my $gstrate=C4::Context->preference('gist')*100;
-if ( $ordnum eq '' ) {    # create order
+
+my $basket = GetBasket($basketno);
+my $contract = &GetContract($basket->{contractnumber});
+
+#simple parameters reading (all in one :-)
+my $params = $input->Vars;
+my $listprice=0; # the price, that can be in MARC record if we have one
+if ( $ordernumber eq '' and defined $params->{'breedingid'}){
+#we want to import from the breeding reservoir (from a z3950 search)
+    my ($marcrecord, $encoding) = MARCfindbreeding($params->{'breedingid'});
+    die("Could not find the selected record in the reservoir, bailing") unless $marcrecord;
+
+    my $duplicatetitle;
+#look for duplicates
+    if (! (($biblionumber,$duplicatetitle) = FindDuplicate($marcrecord))){
+        if (C4::Context->preference("BiblioAddsAuthorities")){
+            my ($countlinked,$countcreated)=BiblioAddAuthorities($marcrecord, $params->{'frameworkcode'});
+        }
+        my $bibitemnum;
+        $params->{'frameworkcode'} or $params->{'frameworkcode'} = "";
+        ( $biblionumber, $bibitemnum ) = AddBiblio( $marcrecord, $params->{'frameworkcode'} );
+        # get the price if there is one.
+        # filter by storing only the 1st number
+        # we suppose the currency is correct, as we have no possibilities to get it.
+        if ($marcrecord->subfield("345","d")) {
+            $listprice = $marcrecord->subfield("345","d");
+            if ($listprice =~ /^([\d\.,]*)/) {
+                $listprice = $1;
+                $listprice =~ s/,/\./;
+            } else {
+                $listprice = 0;
+            }
+        }
+        elsif ($marcrecord->subfield("010","d")) {
+            $listprice = $marcrecord->subfield("010","d");
+            if ($listprice =~ /^([\d\.,]*)/) {
+                $listprice = $1;
+                $listprice =~ s/,/\./;
+            } else {
+                $listprice = 0;
+            }
+        }
+        SetImportRecordStatus($params->{'breedingid'}, 'imported');
+    }
+}
+
+
+my $cur = GetCurrency();
+
+if ( $ordernumber eq '' ) {    # create order
     $new = 'yes';
-    if ( $biblionumber  ) {
-       my $record=XMLgetbibliohash($dbh,$biblionumber);
-          ###Error checking if a non existent biblionumber given manually
-       if (!$record){
-       print $input->redirect("/cgi-bin/koha/acqui/basket.pl?supplierid=$booksellerid");
-       }
-        $data = XMLmarc2koha_onerecord($dbh,$record,"biblios");
-    }elsif($suggestionid){
-       $data = GetSuggestion($suggestionid);
-    
-        if ( $data->{'title'} eq '' ) {
-               $data->{'title'}         = $title;
-                $data->{'author'}        = $author;
-                $data->{'copyrightdate'} = $copyright;
-       }
-   }### if biblionumber
- if ($basketno){
-        my $basket = GetBasket( $basketno);
-       my @orders=GetOrders($basketno);
-               if (@orders){
-               $template->param(
-               purchaseordernumber     =>  $orders[0]->{purchaseordernumber}, );
-               }
-       $template->param(
-       creationdate     => format_date( $basket->{creationdate} ),
-       authorisedbyname => $basket->{authorisedbyname},);
-  }else{
-       my @datetoday = localtime();
-       my $date = (1900+$datetoday[5])."-".($datetoday[4]+1)."-". $datetoday[3];
-       $template->param(
-       creationdate     => format_date($date),
-       authorisedbyname => $loggedinuser,);
-  }
-}else {    #modify order
-    $data   = GetSingleOrder($ordnum);
+
+    #  $ordernumber=newordernum;
+    if ( $biblionumber && !$suggestionid ) {
+        $data = GetBiblioData($biblionumber);
+    }
+
+# get suggestion fields if applicable. If it's a subscription renewal, then the biblio already exists
+# otherwise, retrieve suggestion information.
+    if ($suggestionid) {
+        $data = ($biblionumber) ? GetBiblioData($biblionumber) : GetSuggestion($suggestionid);
+    }
+}
+else {    #modify order
+    $data   = GetOrder($ordernumber);
     $biblionumber = $data->{'biblionumber'};
-    #get basketno and suppleirno. too!
+    $budget_id = $data->{'budget_id'};
+
+    #get basketno and supplierno. too!
     my $data2 = GetBasket( $data->{'basketno'} );
-    $basketno     = $data->{'basketno'};
+    $basketno     = $data2->{'basketno'};
     $booksellerid = $data2->{'booksellerid'};
-    $discount=$data->{'discount'};
-       $gstrate=$data->{'gst'} ;
-    $bookfundid =$data->{'bookfundid'};
- my $aqbookfund=GetBookFund($data->{'bookfundid'});
-$branch=$aqbookfund->{branchcode};
-$template->param(      
-       purchaseordernumber     =>  $data->{purchaseordernumber},
-       creationdate     => format_date( $data2->{creationdate} ),
-       authorisedbyname => $data2->{authorisedbyname},);
-       
 }
 
-
-
-# get currencies (for exchange rates calcs if needed)
+# get currencies (for change rates calcs if needed)
 my @rates = GetCurrencies();
 my $count = scalar @rates;
 
+# ## @rates
+
 my @loop_currency = ();
 for ( my $i = 0 ; $i < $count ; $i++ ) {
     my %line;
@@ -179,137 +207,266 @@ for ( my $i = 0 ; $i < $count ; $i++ ) {
     push @loop_currency, \%line;
 }
 
-
-
-
-
 # build branches list
-my $branches = GetBranches;
+my $onlymine=C4::Context->preference('IndependantBranches') && 
+            C4::Context->userenv && 
+            C4::Context->userenv->{flags}!=1 && 
+            C4::Context->userenv->{branch};
+my $branches = GetBranches($onlymine);
 my @branchloop;
-foreach my $thisbranch ( sort keys %$branches ) {
-my $selected=1 if $thisbranch eq $branch;
-     my %row = ( 
+foreach my $thisbranch ( sort {$branches->{$a}->{'branchname'} cmp $branches->{$b}->{'branchname'}} keys %$branches ) {
+    my %row = (
         value      => $thisbranch,
         branchname => $branches->{$thisbranch}->{'branchname'},
-       selected=>$selected ,
     );
+    $row{'selected'} = 1 if( $thisbranch eq $data->{branchcode}) ;
     push @branchloop, \%row;
 }
 $template->param( branchloop => \@branchloop );
 
 # build bookfund list
-
-my $count2;
-my @bookfund;
-my @select_bookfund;
-my %select_bookfunds;
-my $selbookfund;
-@bookfund = GetBookFunds($homebranch);
-$count2 = scalar @bookfund;
-
-for ( my $i = 0 ; $i < $count2 ; $i++ ) {
-    push @select_bookfund, $bookfund[$i]->{'bookfundid'};
-    $select_bookfunds{ $bookfund[$i]->{'bookfundid'} } =
-      $bookfund[$i]->{'bookfundname'};
-       if ($bookfund[$i]->{'bookfundid'} eq $bookfundid){
-       $selbookfund=1;
-       }
+my $borrower= GetMember('borrowernumber' => $loggedinuser);
+my ( $flags, $homebranch )= ($borrower->{'flags'},$borrower->{'branchcode'});
+
+my $budget =  GetBudget($budget_id);
+# build budget list
+my $budget_loop = [];
+my $budgets = GetBudgetHierarchy(q{},$borrower->{branchcode},$borrower->{borrowernumber});
+foreach my $r (@{$budgets}) {
+    if (!defined $r->{budget_amount} || $r->{budget_amount} == 0) {
+        next;
+    }
+    push @{$budget_loop}, {
+        b_id  => $r->{budget_id},
+        b_txt => $r->{budget_name},
+        b_sel => ( $r->{budget_id} == $budget_id ) ? 1 : 0,
+    };
 }
-my $CGIbookfund = CGI::scrolling_list(
-    -name     => 'bookfundid',
-    -values   => \@select_bookfund,
-    -default  => $data->{'bookfundid'},
-    -labels   => \%select_bookfunds,
-    -size     => 1,
-    -selected =>$selbookfund,
-    -multiple => 0
-);
 
-my $bookfundname;
 
 if ($close) {
-    $bookfundid   = $data->{'bookfundid'};
-    $bookfundname = $select_bookfunds{$bookfundid};
+    $budget_id      =  $data->{'budget_id'};
+    $budget_name    =   $budget->{'budget_name'};
+
+}
+
+my $CGIsort1;
+if ($budget) {    # its a mod ..
+    if ( defined $budget->{'sort1_authcat'} ) {    # with custom  Asort* planning values
+        $CGIsort1 = GetAuthvalueDropbox( 'sort1', $budget->{'sort1_authcat'}, $data->{'sort1'} );
+    }
+} elsif(scalar(@$budgets)){
+    $CGIsort1 = GetAuthvalueDropbox( 'sort1', @$budgets[0]->{'sort1_authcat'}, '' );
+}else{
+    $CGIsort1 = GetAuthvalueDropbox( 'sort1','', '' );
 }
 
-#Build sort lists
-my $CGIsort1 = buildCGIsort( "Asort1", "sort1", $data->{'sort1'} );
+# if CGIsort is successfully fetched, the use it
+# else - failback to plain input-field
 if ($CGIsort1) {
     $template->param( CGIsort1 => $CGIsort1 );
-}
-else {
+} else {
     $template->param( sort1 => $data->{'sort1'} );
 }
 
-my $CGIsort2 = buildCGIsort( "Asort2", "sort2", $data->{'sort2'} );
+my $CGIsort2;
+if ($budget) {
+    if ( defined $budget->{'sort2_authcat'} ) {
+        $CGIsort2 = GetAuthvalueDropbox( 'sort2', $budget->{'sort2_authcat'}, $data->{'sort2'} );
+    }
+} elsif(scalar(@$budgets)) {
+    $CGIsort2 = GetAuthvalueDropbox( 'sort2', @$budgets[0]->{sort2_authcat}, '' );
+}else{
+    $CGIsort2 = GetAuthvalueDropbox( 'sort2','', '' );
+}
+
 if ($CGIsort2) {
     $template->param( CGIsort2 => $CGIsort2 );
-}
-else {
+} else {
     $template->param( sort2 => $data->{'sort2'} );
 }
 
-my $bibitemsexists;
-
-#
-
-    $template->param( bibitemexists => "1" ) if $biblionumber;
-        my @bibitemloop;
-          my %line;
-        $line{isbn}             = $data->{'isbn'};
-        $line{itemtype}         = $data->{'itemtype'};
-        $line{volumeddesc}      = $data->{'volumeddesc'};
-        push( @bibitemloop, \%line );
-
-        $template->param( bibitemloop => \@bibitemloop );
+if (C4::Context->preference('AcqCreateItem') eq 'ordering' && !$ordernumber) {
+    # prepare empty item form
+    my $cell = PrepareItemrecordDisplay('','','','ACQ');
+#     warn "==> ".Data::Dumper::Dumper($cell);
+    unless ($cell) {
+        $cell = PrepareItemrecordDisplay('','','','');
+        $template->param('NoACQframework' => 1);
+    }
+    my @itemloop;
+    push @itemloop,$cell;
     
-
+    $template->param(items => \@itemloop);
+}
 
 # fill template
 $template->param(
     close        => $close,
-    bookfundid   => $bookfundid,
-    bookfundname => $bookfundname
-  )
-  if ($close);
+    budget_id    => $budget_id,
+    budget_name  => $budget_name
+) if ($close);
 
 $template->param(
     existing         => $biblionumber,
-    ordnum           => $ordnum,
-    basketno         => $basketno,
-    booksellerid     => $booksellerid,
+    ordernumber           => $ordernumber,
+    # basket informations
+    basketno             => $basketno,
+    basketname           => $basket->{'basketname'},
+    basketnote           => $basket->{'note'},
+    booksellerid         => $basket->{'booksellerid'},
+    basketbooksellernote => $basket->{booksellernote},
+    basketcontractno     => $basket->{contractnumber},
+    basketcontractname   => $contract->{contractname},
+    creationdate         => C4::Dates->new($basket->{creationdate},'iso')->output,
+    authorisedby         => $basket->{'authorisedby'},
+    authorisedbyname     => $basket->{'authorisedbyname'},
+    closedate            => C4::Dates->new($basket->{'closedate'},'iso')->output,
+    # order details
     suggestionid     => $suggestionid,
-    biblionumber           => $biblionumber,
-    itemtype         => $data->{'itemtype'},
-    discount         => $discount,
-    listincgst       => $booksellers[0]->{'listincgst'},
-    listprice        => $booksellers[0]->{'listprice'},
-    gstreg           => $booksellers[0]->{'gstreg'},
-    invoiceinc       => $booksellers[0]->{'invoiceincgst'},
-    invoicedisc      => $booksellers[0]->{'invoicedisc'},
-    nocalc           => $booksellers[0]->{'nocalc'},
-    name             => $booksellers[0]->{'name'},
-    currency         => $booksellers[0]->{'listprice'},
-    gstrate          =>$gstrate,
+    biblionumber     => $biblionumber,
+    uncertainprice   => $data->{'uncertainprice'},
+    authorisedbyname => $borrower->{'firstname'} . " " . $borrower->{'surname'},
+    biblioitemnumber => $data->{'biblioitemnumber'},
+    discount_2dp     => sprintf( "%.2f",  $bookseller->{'discount'}) ,   # for display
+    discount         => $bookseller->{'discount'},
+    listincgst       => $bookseller->{'listincgst'},
+    invoiceincgst    => $bookseller->{'invoiceincgst'},
+    name             => $bookseller->{'name'},
+    cur_active_sym   => $cur->{'symbol'},
+    cur_active       => $cur->{'currency'},
+    currency         => $bookseller->{'listprice'} || $cur->{'currency'}, # eg: 'EUR'
     loop_currencies  => \@loop_currency,
     orderexists      => ( $new eq 'yes' ) ? 0 : 1,
     title            => $data->{'title'},
     author           => $data->{'author'},
-    copyrightdate    => $data->{'copyrightdate'},
-    CGIbookfund      => $CGIbookfund,
+    publicationyear  => $data->{'publicationyear'} ? $data->{'publicationyear'} : $data->{'copyrightdate'},
+    budget_loop      => $budget_loop,
     isbn             => $data->{'isbn'},
     seriestitle      => $data->{'seriestitle'},
     quantity         => $data->{'quantity'},
-    listprice        => $data->{'listprice'},
+    quantityrec      => $data->{'quantity'},
     rrp              => $data->{'rrp'},
-    invoice          => $data->{'booksellerinvoicenumber'},
+    listprice        => sprintf("%.2f", $data->{'listprice'}||$listprice),
+    total            => sprintf("%.2f", ($data->{'ecost'}||0)*($data->{'quantity'}||0) ),
     ecost            => $data->{'ecost'},
-    total              =>$data->{'unitprice'}* $data->{'quantity'},
-  unitprice            => $data->{'unitprice'},
- gst        => $data->{'ecost'}*$gstrate/100,
     notes            => $data->{'notes'},
     publishercode    => $data->{'publishercode'},
-#     donation         => $donation
+    
+    import_batch_id  => $import_batch_id,
+
+# CHECKME: gst-stuff needs verifing, mason.
+    gstrate          => $bookseller->{'gstrate'} || C4::Context->preference("gist"),
+    gstreg           => $bookseller->{'gstreg'},
 );
 
 output_html_with_http_headers $input, $cookie, $template->output;
+
+
+=item MARCfindbreeding
+
+    $record = MARCfindbreeding($breedingid);
+
+Look up the import record repository for the record with
+record with id $breedingid.  If found, returns the decoded
+MARC::Record; otherwise, -1 is returned (FIXME).
+Returns as second parameter the character encoding.
+
+=cut
+
+sub MARCfindbreeding {
+    my ( $id ) = @_;
+    my ($marc, $encoding) = GetImportRecordMarc($id);
+    # remove the - in isbn, koha store isbn without any -
+    if ($marc) {
+        my $record = MARC::Record->new_from_usmarc($marc);
+        my ($isbnfield,$isbnsubfield) = GetMarcFromKohaField('biblioitems.isbn','');
+        if ( $record->field($isbnfield) ) {
+            foreach my $field ( $record->field($isbnfield) ) {
+                foreach my $subfield ( $field->subfield($isbnsubfield) ) {
+                    my $newisbn = $field->subfield($isbnsubfield);
+                    $newisbn =~ s/-//g;
+                    $field->update( $isbnsubfield => $newisbn );
+                }
+            }
+        }
+        # fix the unimarc 100 coded field (with unicode information)
+        if (C4::Context->preference('marcflavour') eq 'UNIMARC' && $record->subfield(100,'a')) {
+            my $f100a=$record->subfield(100,'a');
+            my $f100 = $record->field(100);
+            my $f100temp = $f100->as_string;
+            $record->delete_field($f100);
+            if ( length($f100temp) > 28 ) {
+                substr( $f100temp, 26, 2, "50" );
+                $f100->update( 'a' => $f100temp );
+                my $f100 = MARC::Field->new( '100', '', '', 'a' => $f100temp );
+                $record->insert_fields_ordered($f100);
+            }
+        }
+        
+        if ( !defined(ref($record)) ) {
+            return -1;
+        }
+        else {
+            # normalize author : probably UNIMARC specific...
+            if (    C4::Context->preference("z3950NormalizeAuthor")
+                and C4::Context->preference("z3950AuthorAuthFields") )
+            {
+                my ( $tag, $subfield ) = GetMarcFromKohaField("biblio.author");
+
+#                 my $summary = C4::Context->preference("z3950authortemplate");
+                my $auth_fields =
+                C4::Context->preference("z3950AuthorAuthFields");
+                my @auth_fields = split /,/, $auth_fields;
+                my $field;
+
+                if ( $record->field($tag) ) {
+                    foreach my $tmpfield ( $record->field($tag)->subfields ) {
+
+    #                        foreach my $subfieldcode ($tmpfield->subfields){
+                        my $subfieldcode  = shift @$tmpfield;
+                        my $subfieldvalue = shift @$tmpfield;
+                        if ($field) {
+                            $field->add_subfields(
+                                "$subfieldcode" => $subfieldvalue )
+                            if ( $subfieldcode ne $subfield );
+                        }
+                        else {
+                            $field =
+                            MARC::Field->new( $tag, "", "",
+                                $subfieldcode => $subfieldvalue )
+                            if ( $subfieldcode ne $subfield );
+                        }
+                    }
+                }
+                $record->delete_field( $record->field($tag) );
+                foreach my $fieldtag (@auth_fields) {
+                    next unless ( $record->field($fieldtag) );
+                    my $lastname  = $record->field($fieldtag)->subfield('a');
+                    my $firstname = $record->field($fieldtag)->subfield('b');
+                    my $title     = $record->field($fieldtag)->subfield('c');
+                    my $number    = $record->field($fieldtag)->subfield('d');
+                    if ($title) {
+
+#                         $field->add_subfields("$subfield"=>"[ ".ucfirst($title).ucfirst($firstname)." ".$number." ]");
+                        $field->add_subfields(
+                                "$subfield" => ucfirst($title) . " "
+                            . ucfirst($firstname) . " "
+                            . $number );
+                    }
+                    else {
+
+#                       $field->add_subfields("$subfield"=>"[ ".ucfirst($firstname).", ".ucfirst($lastname)." ]");
+                        $field->add_subfields(
+                            "$subfield" => ucfirst($firstname) . ", "
+                            . ucfirst($lastname) );
+                    }
+                }
+                $record->insert_fields_ordered($field);
+            }
+            return $record, $encoding;
+        }
+    }
+    return -1;
+}
+