synch'ing 2.2 and head
[koha.git] / acqui / basket.pl
1 #!/usr/bin/perl
2
3 # $Id$
4
5 #script to show display basket of orders
6 #written by chris@katipo.co.nz 24/2/2000
7
8
9 # Copyright 2000-2002 Katipo Communications
10 #
11 # This file is part of Koha.
12 #
13 # Koha is free software; you can redistribute it and/or modify it under the
14 # terms of the GNU General Public License as published by the Free Software
15 # Foundation; either version 2 of the License, or (at your option) any later
16 # version.
17 #
18 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
19 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
20 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
21 #
22 # You should have received a copy of the GNU General Public License along with
23 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
24 # Suite 330, Boston, MA  02111-1307 USA
25
26 use strict;
27 use C4::Auth;
28 use C4::Koha;
29 use C4::Output;
30 use CGI;
31 use C4::Interface::CGI::Output;
32 use C4::Database;
33 use HTML::Template;
34 use C4::Acquisition;
35 use C4::Date;
36
37 my $query =new CGI;
38 my $basketno = $query ->param('basket');
39 my $booksellerid = $query->param('supplierid');
40 my $order = $query->param('order');
41 my ($template, $loggedinuser, $cookie)
42     = get_template_and_user({template_name => "acqui/basket.tmpl",
43                              query => $query,
44                              type => "intranet",
45                              authnotrequired => 0,
46                              flagsrequired => {acquisition => 1},
47                              debug => 1,
48                              });
49 my ($count,@results);
50
51 my $basket = getbasket($basketno);
52 # FIXME : the query->param('supplierid') below is probably useless. The bookseller is always known from the basket
53 # if no booksellerid in parameter, get it from basket
54 # warn "=>".$basket->{booksellerid};
55 $booksellerid = $basket->{booksellerid} unless $booksellerid;
56 my ($count2,@booksellers)=bookseller($booksellerid);
57
58 # if new basket, pre-fill infos
59 $basket->{creationdate} = "" unless ($basket->{creationdate});
60 $basket->{authorisedby} = $loggedinuser unless ($basket->{authorisedby});
61 ($count,@results)=getbasketcontent($basketno,'',$order);
62
63 my $line_total; # total of each line
64 my $sub_total; # total of line totals
65 my $gist;      # GST
66 my $grand_total; # $subttotal + $gist
67
68 my @books_loop;
69 for (my $i=0;$i<$count;$i++){
70         my $rrp=$results[$i]->{'listprice'};
71         $rrp=curconvert($results[$i]->{'currency'},$rrp);
72
73         $line_total=$results[$i]->{'quantity'}*$results[$i]->{'ecost'};
74         $sub_total+=$line_total;
75         my %line;
76         if ($i % 2){
77                 $line{highlight}=1;
78         } else {
79                 $line{highlight}=0;
80         }
81         $line{ordernumber} = $results[$i]->{'ordernumber'};
82         $line{publishercode} = $results[$i]->{'publishercode'};
83         $line{isbn} = $results[$i]->{'isbn'};
84         $line{booksellerid} = $results[$i]->{'booksellerid'};
85         $line{basketno}=$basketno;
86         $line{title} = $results[$i]->{'title'};
87         $line{author} = $results[$i]->{'author'};
88         $line{i} = $i;
89         $line{rrp} = $results[$i]->{'rrp'};
90         $line{ecost} = $results[$i]->{'ecost'};
91         $line{quantity} = $results[$i]->{'quantity'};
92         $line{quantityrecieved} = $results[$i]->{'quantityreceived'};
93         $line{line_total} = $line_total;
94         $line{biblionumber} = $results[$i]->{'biblionumber'};
95         $line{bookfundid} = $results[$i]->{'bookfundid'};
96         push @books_loop, \%line;
97 }
98 my $prefgist =C4::Context->preference("gist");
99 $gist=sprintf("%.2f",$sub_total*$prefgist);
100 $grand_total=$sub_total+$gist;
101 $template->param(basketno => $basketno,
102                                 creationdate => $basket->{creationdate},
103                                 authorisedby => $basket->{authorisedby},
104                                 authorisedbyname => $basket->{authorisedbyname},
105                                 closedate => format_date($basket->{closedate}),
106                                 active => $booksellers[0]->{'active'},
107                                 booksellerid=> $booksellers[0]->{'id'},
108                                 name => $booksellers[0]->{'name'},
109                                 entrydate => format_date($results[0]->{'entrydate'}),
110                                 books_loop => \@books_loop,
111                                 count =>$count,
112                                 sub_total => $sub_total,
113                                 gist => $gist,
114                                 grand_total =>$grand_total,
115                                 currency => $booksellers[0]->{'listprice'},
116                                 );
117 output_html_with_http_headers $query, $cookie, $template->output;