french po updated
[koha.git] / acqui / basket.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 use strict;
25 use C4::Auth;
26 use C4::Koha;
27 use C4::Output;
28 use CGI;
29
30
31 use C4::Acquisition;
32 use C4::Bookfund;
33 use C4::Bookseller;
34 use C4::Date;
35
36 =head1 NAME
37
38 basket.pl
39
40 =head1 DESCRIPTION
41
42  This script display all informations about basket for the supplier given
43  on input arg. Moreover, it allow to add a new order for this supplier from
44  an existing record, a suggestion or from a new record.
45
46 =head1 CGI PARAMETERS
47
48 =over 4
49
50 =item $basketno
51
52 this parameter seems to be unused.
53
54 =item supplierid
55
56 the supplier this script have to display the basket.
57
58 =item order
59
60
61
62 =back
63
64 =cut
65
66 my $query        = new CGI;
67 my $basketno     = $query->param('basketno');
68 my $booksellerid = $query->param('supplierid');
69 my $order        = $query->param('order');
70 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
71     {
72         template_name   => "acqui/basket.tmpl",
73         query           => $query,
74         type            => "intranet",
75         authnotrequired => 0,
76         flagsrequired   => { acquisition => 1 },
77         debug           => 1,
78     }
79 );
80
81 my $basket = GetBasket($basketno);
82
83 # FIXME : the query->param('supplierid') below is probably useless. The bookseller is always known from the basket
84 # if no booksellerid in parameter, get it from basket
85 # warn "=>".$basket->{booksellerid};
86 $booksellerid = $basket->{booksellerid} unless $booksellerid;
87 my @booksellers = GetBookSeller($booksellerid);
88 my $count2 = scalar @booksellers;
89
90 # get librarian branch...
91 if ( C4::Context->preference("IndependantBranches") ) {
92     my $userenv = C4::Context->userenv;
93     unless ( $userenv->{flags} == 1 ) {
94         my $validtest = ( $basket->{creationdate} eq '' )
95           || ( $basket->{branch}  eq '' )
96           || ( $userenv->{branch} eq $basket->{branch} )
97           || ( $userenv->{branch} eq '' )
98           || ( $basket->{branch}  eq '' );
99         unless ($validtest) {
100             print $query->redirect("../mainpage.pl");
101             exit 1;
102         }
103     }
104 }
105
106 # if new basket, pre-fill infos
107 $basket->{creationdate} = ""            unless ( $basket->{creationdate} );
108 $basket->{authorisedby} = $loggedinuser unless ( $basket->{authorisedby} );
109
110 my ( $count, @results );
111 @results  = GetOrders( $basketno, $order );
112 $count = scalar @results;
113
114 my $line_total;     # total of each line
115 my $sub_total;      # total of line totals
116 my $gist;           # GST
117 my $grand_total;    # $subttotal + $gist
118 my $toggle = 0;
119
120
121 # my $line_total_est; # total of each line
122 my $sub_total_est;      # total of line totals
123 my $gist_est;           # GST
124 my $grand_total_est;    # $subttotal + $gist
125
126 my $qty_total;
127
128 my @books_loop;
129 for ( my $i = 0 ; $i < $count ; $i++ ) {
130     my $rrp = $results[$i]->{'listprice'};
131     $rrp = ConvertCurrency( $results[$i]->{'currency'}, $rrp );
132
133     $sub_total_est += $results[$i]->{'quantity'} * $results[$i]->{'rrp'};
134     $line_total = $results[$i]->{'quantity'} * $results[$i]->{'ecost'};
135     $sub_total += $line_total;
136     $qty_total += $results[$i]->{'quantity'};
137     my %line;
138     %line=%{$results[$i]};
139    if ( $toggle == 0 ) {
140         $line{color} = '#EEEEEE';
141         $toggle = 1;
142     }
143     else {
144         $line{color} = 'white';
145         $toggle = 0;
146     }
147     $line{basketno}         = $basketno;
148     $line{i}                = $i;
149     $line{rrp}              = sprintf( "%.2f", $line{'rrp'} );
150     $line{ecost}            = sprintf( "%.2f", $line{'ecost'} );
151     $line{line_total}       = sprintf( "%.2f", $line_total );
152     $line{odd}              = $i % 2;
153     push @books_loop, \%line;
154 }
155 my $prefgist = C4::Context->preference("gist");
156 $gist            = sprintf( "%.2f", $sub_total * $prefgist );
157 $grand_total     = $sub_total + $gist;
158 $grand_total_est =
159   $sub_total_est + sprintf( "%.2f", $sub_total_est * $prefgist );
160 $gist_est = sprintf( "%.2f", $sub_total_est * $prefgist );
161 $template->param(
162     basketno         => $basketno,
163     creationdate     => format_date( $basket->{creationdate} ),
164     authorisedby     => $basket->{authorisedby},
165     authorisedbyname => $basket->{authorisedbyname},
166     closedate        => format_date( $basket->{closedate} ),
167     active           => $booksellers[0]->{'active'},
168     booksellerid     => $booksellers[0]->{'id'},
169     name             => $booksellers[0]->{'name'},
170     address1         => $booksellers[0]->{'address1'},
171     address2         => $booksellers[0]->{'address2'},
172     address3         => $booksellers[0]->{'address3'},
173     address4         => $booksellers[0]->{'address4'},
174     entrydate        => format_date( $results[0]->{'entrydate'} ),
175     books_loop       => \@books_loop,
176     count            => $count,
177     sub_total        => $sub_total,
178     gist             => $gist,
179     grand_total      => $grand_total,
180     sub_total_est    => $sub_total_est,
181     gist_est         => $gist_est,
182     grand_total_est  => $grand_total_est,
183     currency         => $booksellers[0]->{'listprice'},
184     qty_total        => $qty_total,
185 );
186 output_html_with_http_headers $query, $cookie, $template->output;