1- don't loose bookseller id when closing a basket
[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 ($template, $loggedinuser, $cookie)
41     = get_template_and_user({template_name => "acqui/basket.tmpl",
42                              query => $query,
43                              type => "intranet",
44                              authnotrequired => 0,
45                              flagsrequired => {acquisition => 1},
46                              debug => 1,
47                              });
48 my ($count,@results);
49
50 my $basket = getbasket($basketno);
51 # FIXME : the query->param('supplierid') below is probably useless. The bookseller is always known from the basket
52 # if no booksellerid in parameter, get it from basket
53 # warn "=>".$basket->{booksellerid};
54 $booksellerid = $basket->{booksellerid} unless $booksellerid;
55 my ($count2,@booksellers)=bookseller($booksellerid);
56
57 # if new basket, pre-fill infos
58 $basket->{creationdate} = "" unless ($basket->{creationdate});
59 $basket->{authorisedby} = $loggedinuser unless ($basket->{authorisedby});
60 ($count,@results)=getbasketcontent($basketno);
61
62 my $line_total; # total of each line
63 my $sub_total; # total of line totals
64 my $gist;      # GST
65 my $grand_total; # $subttotal + $gist
66 my $toggle=0;
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 ($toggle==0){
77                 $line{color}='#EEEEEE';
78                 $toggle=1;
79         } else {
80                 $line{color}='white';
81                 $toggle=0;
82         }
83         $line{ordernumber} = $results[$i]->{'ordernumber'};
84         $line{publishercode} = $results[$i]->{'publishercode'};
85         $line{isbn} = $results[$i]->{'isbn'};
86         $line{booksellerid} = $results[$i]->{'booksellerid'};
87         $line{basketno}=$basketno;
88         $line{title} = $results[$i]->{'title'};
89         $line{author} = $results[$i]->{'author'};
90         $line{i} = $i;
91         $line{rrp} = $results[$i]->{'rrp'};
92         $line{ecost} = $results[$i]->{'ecost'};
93         $line{quantity} = $results[$i]->{'quantity'};
94         $line{quantityrecieved} = $results[$i]->{'quantityreceived'};
95         $line{line_total} = $line_total;
96         $line{biblionumber} = $results[$i]->{'biblionumber'};
97         push @books_loop, \%line;
98 }
99 my $prefgist =C4::Context->preference("gist");
100 $gist=sprintf("%.2f",$sub_total*$prefgist);
101 $grand_total=$sub_total+$gist;
102 $template->param(basketno => $basketno,
103                                 creationdate => $basket->{creationdate},
104                                 authorisedby => $basket->{authorisedby},
105                                 authorisedbyname => $basket->{authorisedbyname},
106                                 closedate => format_date($basket->{closedate}),
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;