Bug 15531: (QA followup) Fix several small issues
[koha.git] / acqui / orderreceive.pl
1 #!/usr/bin/perl
2
3
4 #script to receive 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
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.
15 #
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.
20 #
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>.
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 booksellerid
38
39 to know on what supplier this script has to display receive order.
40
41 =item invoiceid
42
43 the id of this invoice.
44
45 =item freight
46
47 =item biblio
48
49 The biblionumber of this order.
50
51 =item datereceived
52
53 =item catview
54
55 =item gst
56
57 =back
58
59 =cut
60
61 use strict;
62 use warnings;
63
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;
76
77 use Koha::Acquisition::Bookseller;
78 use Koha::DateUtils qw( dt_from_string );
79
80 my $input      = new CGI;
81
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');
88
89 my $bookseller = Koha::Acquisition::Bookseller->fetch({ id => $booksellerid });
90 my $results;
91 $results = SearchOrders({
92     ordernumber => $ordernumber
93 }) if $ordernumber;
94
95 my ( $template, $loggedinuser, $cookie, $userflags ) = get_template_and_user(
96     {
97         template_name   => "acqui/orderreceive.tt",
98         query           => $input,
99         type            => "intranet",
100         authnotrequired => 0,
101         flagsrequired   => {acquisition => 'order_receive'},
102         debug           => 1,
103     }
104 );
105
106 unless ( $results and @$results) {
107     output_html_with_http_headers $input, $cookie, $template->output;
108     exit;
109 }
110
111 # prepare the form for receiving
112 my $order = $results->[0];
113
114 # Check if ACQ framework exists
115 my $acq_fw = GetMarcStructure(1, 'ACQ');
116 unless($acq_fw) {
117     $template->param('NoACQframework' => 1);
118 }
119
120 my $AcqCreateItem = C4::Context->preference('AcqCreateItem');
121 if ($AcqCreateItem eq 'receiving') {
122     $template->param(
123         AcqCreateItemReceiving => 1,
124         UniqueItemFields => C4::Context->preference('UniqueItemFields'),
125     );
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});
134         }
135         if($item->{holdingbranch}) {
136             $item->{holdingbranchname} = GetBranchName($item->{holdingbranch});
137         }
138         if(my $code = GetAuthValCode("items.notforloan", $fw)) {
139             $item->{notforloan} = GetKohaAuthorisedValueLib($code, $item->{notforloan});
140         }
141         if(my $code = GetAuthValCode("items.restricted", $fw)) {
142             $item->{restricted} = GetKohaAuthorisedValueLib($code, $item->{restricted});
143         }
144         if(my $code = GetAuthValCode("items.location", $fw)) {
145             $item->{location} = GetKohaAuthorisedValueLib($code, $item->{location});
146         }
147         if(my $code = GetAuthValCode("items.ccode", $fw)) {
148             $item->{collection} = GetKohaAuthorisedValueLib($code, $item->{ccode});
149         }
150         if(my $code = GetAuthValCode("items.materials", $fw)) {
151             $item->{materials} = GetKohaAuthorisedValueLib($code, $item->{materials});
152         }
153         my $itemtype = getitemtypeinfo($item->{itype});
154         $item->{itemtype} = $itemtype->{description};
155         push @items, $item;
156     }
157     $template->param(items => \@items);
158 }
159
160 $order->{quantityreceived} = '' if $order->{quantityreceived} == 0;
161 $order->{unitprice} = '' if $order->{unitprice} == 0;
162
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} );
175     }
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};
185     }
186  }
187
188 my $suggestion = GetSuggestionInfoFromBiblionumber($order->{biblionumber});
189
190 my $authorisedby = $order->{authorisedby};
191 my $member = GetMember( borrowernumber => $authorisedby );
192
193 my $budget = GetBudget( $order->{budget_id} );
194
195 my $datereceived = $order->{datereceived} ? dt_from_string( $order->{datereceived} ) : dt_from_string;
196
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},
227 );
228
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'};
235     }
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;
243         }
244         push @funds,
245           {
246             b_id  => $r->{budget_id},
247             b_txt => $r->{budget_name},
248             b_sel => ( $r->{budget_id} == $order->{budget_id} ) ? 1 : 0,
249           };
250     }
251
252     @funds = sort { uc( $a->{b_txt} ) cmp uc( $b->{b_txt} ) } @funds;
253
254     push @budget_loop,
255       {
256         'id'          => $period->{'budget_period_id'},
257         'description' => $period->{'budget_period_description'},
258         'funds'       => \@funds
259       };
260 }
261
262 $template->{'VARS'}->{'budget_loop'} = \@budget_loop;
263
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),
270     );
271 }
272
273 my $op = $input->param('op');
274 if ($op and $op eq 'edit'){
275     $template->param(edit   =>   1);
276 }
277 output_html_with_http_headers $input, $cookie, $template->output;