Bug 5917 : Fix for xgettext.pl
[koha.git] / acqui / orderreceive.pl
1 #!/usr/bin/perl
2
3
4 #script to recieve orders
5 #written by chris@katipo.co.nz 24/2/2000
6
7 # Copyright 2000-2002 Katipo Communications
8 #
9 # This file is part of Koha.
10 #
11 # Koha is free software; you can redistribute it and/or modify it under the
12 # terms of the GNU General Public License as published by the Free Software
13 # Foundation; either version 2 of the License, or (at your option) any later
14 # version.
15 #
16 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
17 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
18 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License along
21 # with Koha; if not, write to the Free Software Foundation, Inc.,
22 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23
24 =head1 NAME
25
26 orderreceive.pl
27
28 =head1 DESCRIPTION
29
30 This script shows all order already receive and all pendings orders.
31 It permit to write a new order as 'received'.
32
33 =head1 CGI PARAMETERS
34
35 =over 4
36
37 =item supplierid
38
39 to know on what supplier this script has to display receive order.
40
41 =item receive
42
43 =item invoice
44
45 the number of this invoice.
46
47 =item freight
48
49 =item biblio
50
51 The biblionumber of this order.
52
53 =item datereceived
54
55 =item catview
56
57 =item gst
58
59 =back
60
61 =cut
62
63 use strict;
64 #use warnings; FIXME - Bug 2505
65 use CGI;
66 use C4::Context;
67 use C4::Koha;   # GetKohaAuthorisedValues GetItemTypes
68 use C4::Acquisition;
69 use C4::Auth;
70 use C4::Output;
71 use C4::Dates qw/format_date/;
72 use C4::Bookseller;
73 use C4::Members;
74 use C4::Branch;    # GetBranches
75 use C4::Items;
76 use C4::Biblio;
77
78
79 my $input      = new CGI;
80
81 my $dbh          = C4::Context->dbh;
82 my $supplierid   = $input->param('supplierid');
83 my $ordernumber       = $input->param('ordernumber');
84 my $search       = $input->param('receive');
85 my $invoice      = $input->param('invoice');
86 my $freight      = $input->param('freight');
87 my $datereceived = $input->param('datereceived');
88
89
90 $datereceived = $datereceived ? C4::Dates->new($datereceived, 'iso') : C4::Dates->new();
91
92 my $bookseller = GetBookSellerFromId($supplierid);
93 my $gst= $input->param('gst') || $bookseller->{gstrate} || C4::Context->preference("gist") || 0;
94 my $results = SearchOrder($ordernumber,$search);
95
96
97 my $count   = scalar @$results;
98 my $order       = GetOrder($ordernumber);
99
100
101 my $date = @$results[0]->{'entrydate'};
102
103 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
104     {
105         template_name   => "acqui/orderreceive.tmpl",
106         query           => $input,
107         type            => "intranet",
108         authnotrequired => 0,
109         flagsrequired   => {acquisition => 'order_receive'},
110         debug           => 1,
111     }
112 );
113
114 # prepare the form for receiving
115 if ( $count == 1 ) {
116     if (C4::Context->preference('AcqCreateItem') eq 'receiving') {
117         # prepare empty item form
118         my $cell = PrepareItemrecordDisplay('','','','ACQ');
119         unless ($cell) {
120             $cell = PrepareItemrecordDisplay('','','','');
121             $template->param('NoACQframework' => 1);
122         }
123         my @itemloop;
124         push @itemloop,$cell;
125         
126         $template->param(items => \@itemloop);
127     }
128
129     if ( @$results[0]->{'quantityreceived'} == 0 ) {
130         @$results[0]->{'quantityreceived'} = '';
131     }
132     if ( @$results[0]->{'unitprice'} == 0 ) {
133         @$results[0]->{'unitprice'} = '';
134     }
135     $template->param(
136         count                 => 1,
137         biblionumber          => @$results[0]->{'biblionumber'},
138         ordernumber           => @$results[0]->{'ordernumber'},
139         biblioitemnumber      => @$results[0]->{'biblioitemnumber'},
140         supplierid            => @$results[0]->{'booksellerid'},
141         freight               => $freight,
142         gst                   => $gst,
143         name                  => $bookseller->{'name'},
144         date                  => format_date($date),
145         title                 => @$results[0]->{'title'},
146         author                => @$results[0]->{'author'},
147         copyrightdate         => @$results[0]->{'copyrightdate'},
148         isbn                  => @$results[0]->{'isbn'},
149         seriestitle           => @$results[0]->{'seriestitle'},
150         bookfund              => @$results[0]->{'bookfundid'},
151         quantity              => @$results[0]->{'quantity'},
152         quantityreceivedplus1 => @$results[0]->{'quantityreceived'} + 1,
153         quantityreceived      => @$results[0]->{'quantityreceived'},
154         rrp                   => @$results[0]->{'rrp'},
155         ecost                 => @$results[0]->{'ecost'},
156         unitprice             => @$results[0]->{'unitprice'},
157         invoice               => $invoice,
158         datereceived          => $datereceived->output(),
159         datereceived_iso          => $datereceived->output('iso'),
160         notes                       =>              $order->{notes}
161     );
162 }
163 else {
164     my @loop;
165     for ( my $i = 0 ; $i < $count ; $i++ ) {
166         my %line = %{ @$results[$i] };
167
168         $line{invoice}      = $invoice;
169         $line{datereceived} = $datereceived->output();
170         $line{freight}      = $freight;
171         $line{gst}          = $gst;
172         $line{title}        = @$results[$i]->{'title'};
173         $line{author}       = @$results[$i]->{'author'};
174         $line{supplierid}   = $supplierid;
175         push @loop, \%line;
176     }
177
178     $template->param(
179         loop         => \@loop,
180         supplierid   => $supplierid,
181     );
182 }
183 my $op = $input->param('op');
184 if ($op eq 'edit'){
185     $template->param(edit   =>   1);
186 }
187 output_html_with_http_headers $input, $cookie, $template->output;