Bug 11081: (followup) Add license information
[koha.git] / acqui / orderreceive.pl
bloba75a62456010a30771a7389a3c8a643ed918d18c
1 #!/usr/bin/perl
4 #script to receive orders
5 #written by chris@katipo.co.nz 24/2/2000
7 # Copyright 2000-2002 Katipo Communications
9 # This file is part of Koha.
11 # Koha is free software; you can redistribute it and/or modify it
12 # under the terms of the GNU General Public License as published by
13 # the Free Software Foundation; either version 3 of the License, or
14 # (at your option) any later version.
16 # Koha is distributed in the hope that it will be useful, but
17 # WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 # GNU General Public License for more details.
21 # You should have received a copy of the GNU General Public License
22 # along with Koha; if not, see <http://www.gnu.org/licenses>.
24 =head1 NAME
26 orderreceive.pl
28 =head1 DESCRIPTION
30 This script shows all order already receive and all pendings orders.
31 It permit to write a new order as 'received'.
33 =head1 CGI PARAMETERS
35 =over 4
37 =item booksellerid
39 to know on what supplier this script has to display receive order.
41 =item invoiceid
43 the id of this invoice.
45 =item freight
47 =item biblio
49 The biblionumber of this order.
51 =item datereceived
53 =item catview
55 =item gst
57 =back
59 =cut
61 use strict;
62 use warnings;
64 use CGI qw ( -utf8 );
65 use C4::Context;
66 use C4::Koha; # GetKohaAuthorisedValues GetItemTypes
67 use C4::Acquisition;
68 use C4::Auth;
69 use C4::Output;
70 use C4::Budgets qw/ GetBudget GetBudgetHierarchy CanUserUseBudget GetBudgetPeriods /;
71 use C4::Members;
72 use C4::Branch; # GetBranches
73 use C4::Items;
74 use C4::Biblio;
75 use C4::Suggestions;
77 use Koha::Acquisition::Bookseller;
78 use Koha::DateUtils qw( dt_from_string );
80 my $input = new CGI;
82 my $dbh = C4::Context->dbh;
83 my $invoiceid = $input->param('invoiceid');
84 my $invoice = GetInvoice($invoiceid);
85 my $booksellerid = $invoice->{booksellerid};
86 my $freight = $invoice->{shipmentcost};
87 my $ordernumber = $input->param('ordernumber');
89 my $bookseller = Koha::Acquisition::Bookseller->fetch({ id => $booksellerid });
90 my $results;
91 $results = SearchOrders({
92 ordernumber => $ordernumber
93 }) if $ordernumber;
95 my ( $template, $loggedinuser, $cookie, $userflags ) = get_template_and_user(
97 template_name => "acqui/orderreceive.tt",
98 query => $input,
99 type => "intranet",
100 authnotrequired => 0,
101 flagsrequired => {acquisition => 'order_receive'},
102 debug => 1,
106 unless ( $results and @$results) {
107 output_html_with_http_headers $input, $cookie, $template->output;
108 exit;
111 # prepare the form for receiving
112 my $order = $results->[0];
114 # Check if ACQ framework exists
115 my $acq_fw = GetMarcStructure(1, 'ACQ');
116 unless($acq_fw) {
117 $template->param('NoACQframework' => 1);
120 my $AcqCreateItem = C4::Context->preference('AcqCreateItem');
121 if ($AcqCreateItem eq 'receiving') {
122 $template->param(
123 AcqCreateItemReceiving => 1,
124 UniqueItemFields => C4::Context->preference('UniqueItemFields'),
126 } elsif ($AcqCreateItem eq 'ordering') {
127 my $fw = ($acq_fw) ? 'ACQ' : '';
128 my @itemnumbers = GetItemnumbersFromOrder($order->{ordernumber});
129 my @items;
130 foreach (@itemnumbers) {
131 my $item = GetItem($_);
132 if($item->{homebranch}) {
133 $item->{homebranchname} = GetBranchName($item->{homebranch});
135 if($item->{holdingbranch}) {
136 $item->{holdingbranchname} = GetBranchName($item->{holdingbranch});
138 if(my $code = GetAuthValCode("items.notforloan", $fw)) {
139 $item->{notforloan} = GetKohaAuthorisedValueLib($code, $item->{notforloan});
141 if(my $code = GetAuthValCode("items.restricted", $fw)) {
142 $item->{restricted} = GetKohaAuthorisedValueLib($code, $item->{restricted});
144 if(my $code = GetAuthValCode("items.location", $fw)) {
145 $item->{location} = GetKohaAuthorisedValueLib($code, $item->{location});
147 if(my $code = GetAuthValCode("items.ccode", $fw)) {
148 $item->{collection} = GetKohaAuthorisedValueLib($code, $item->{ccode});
150 if(my $code = GetAuthValCode("items.materials", $fw)) {
151 $item->{materials} = GetKohaAuthorisedValueLib($code, $item->{materials});
153 my $itemtype = getitemtypeinfo($item->{itype});
154 $item->{itemtype} = $itemtype->{description};
155 push @items, $item;
157 $template->param(items => \@items);
160 $order->{quantityreceived} = '' if $order->{quantityreceived} == 0;
161 $order->{unitprice} = '' if $order->{unitprice} == 0;
163 my $rrp;
164 my $ecost;
165 my $unitprice;
166 if ( $bookseller->{listincgst} ) {
167 if ( $bookseller->{invoiceincgst} ) {
168 $rrp = $order->{rrp};
169 $ecost = $order->{ecost};
170 $unitprice = $order->{unitprice};
171 } else {
172 $rrp = $order->{rrp} / ( 1 + $order->{gstrate} );
173 $ecost = $order->{ecost} / ( 1 + $order->{gstrate} );
174 $unitprice = $order->{unitprice} / ( 1 + $order->{gstrate} );
176 } else {
177 if ( $bookseller->{invoiceincgst} ) {
178 $rrp = $order->{rrp} * ( 1 + $order->{gstrate} );
179 $ecost = $order->{ecost} * ( 1 + $order->{gstrate} );
180 $unitprice = $order->{unitprice} * ( 1 + $order->{gstrate} );
181 } else {
182 $rrp = $order->{rrp};
183 $ecost = $order->{ecost};
184 $unitprice = $order->{unitprice};
188 my $suggestion = GetSuggestionInfoFromBiblionumber($order->{biblionumber});
190 my $authorisedby = $order->{authorisedby};
191 my $member = GetMember( borrowernumber => $authorisedby );
193 my $budget = GetBudget( $order->{budget_id} );
195 my $datereceived = $order->{datereceived} ? dt_from_string( $order->{datereceived} ) : dt_from_string;
197 $template->param(
198 AcqCreateItem => $AcqCreateItem,
199 count => 1,
200 biblionumber => $order->{'biblionumber'},
201 ordernumber => $order->{'ordernumber'},
202 subscriptionid => $order->{subscriptionid},
203 booksellerid => $order->{'booksellerid'},
204 freight => $freight,
205 name => $bookseller->{'name'},
206 title => $order->{'title'},
207 author => $order->{'author'},
208 copyrightdate => $order->{'copyrightdate'},
209 isbn => $order->{'isbn'},
210 seriestitle => $order->{'seriestitle'},
211 bookfund => $budget->{budget_name},
212 quantity => $order->{'quantity'},
213 quantityreceivedplus1 => $order->{'quantityreceived'} + 1,
214 quantityreceived => $order->{'quantityreceived'},
215 rrp => sprintf( "%.2f", $rrp ),
216 ecost => sprintf( "%.2f", $ecost ),
217 memberfirstname => $member->{firstname} || "",
218 membersurname => $member->{surname} || "",
219 invoiceid => $invoice->{invoiceid},
220 invoice => $invoice->{invoicenumber},
221 datereceived => $datereceived,
222 order_internalnote => $order->{order_internalnote},
223 order_vendornote => $order->{order_vendornote},
224 suggestionid => $suggestion->{suggestionid},
225 surnamesuggestedby => $suggestion->{surnamesuggestedby},
226 firstnamesuggestedby => $suggestion->{firstnamesuggestedby},
229 my $borrower = GetMember( 'borrowernumber' => $loggedinuser );
230 my @budget_loop;
231 my $periods = GetBudgetPeriods( );
232 foreach my $period (@$periods) {
233 if ($period->{'budget_period_id'} == $budget->{'budget_period_id'}) {
234 $template->{'VARS'}->{'budget_period_description'} = $period->{'budget_period_description'};
236 next if $period->{'budget_period_locked'} || !$period->{'budget_period_description'};
237 my $budget_hierarchy = GetBudgetHierarchy( $period->{'budget_period_id'} );
238 my @funds;
239 foreach my $r ( @{$budget_hierarchy} ) {
240 next unless ( CanUserUseBudget( $borrower, $r, $userflags ) );
241 if ( !defined $r->{budget_amount} || $r->{budget_amount} == 0 ) {
242 next;
244 push @funds,
246 b_id => $r->{budget_id},
247 b_txt => $r->{budget_name},
248 b_sel => ( $r->{budget_id} == $order->{budget_id} ) ? 1 : 0,
252 @funds = sort { uc( $a->{b_txt} ) cmp uc( $b->{b_txt} ) } @funds;
254 push @budget_loop,
256 'id' => $period->{'budget_period_id'},
257 'description' => $period->{'budget_period_description'},
258 'funds' => \@funds
262 $template->{'VARS'}->{'budget_loop'} = \@budget_loop;
264 # regardless of the content of $unitprice e.g 0 or '' or any string will return in these cases 0.00
265 # and the 'IF' in the .tt will show 0.00 and not 'ecost' (see BZ 7129)
266 # So if $unitprice == 0 we don't create unitprice
267 if ( $unitprice != 0) {
268 $template->param(
269 unitprice => sprintf( "%.2f", $unitprice),
273 my $op = $input->param('op');
274 if ($op and $op eq 'edit'){
275 $template->param(edit => 1);
277 output_html_with_http_headers $input, $cookie, $template->output;