Bug 17835: Replace GetItemTypes with Koha::ItemTypes
[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::Acquisition;
67 use C4::Auth;
68 use C4::Output;
69 use C4::Budgets qw/ GetBudget GetBudgetHierarchy CanUserUseBudget GetBudgetPeriods /;
70 use C4::Members;
71 use C4::Items;
72 use C4::Biblio;
73 use C4::Suggestions;
74
75 use Koha::Acquisition::Booksellers;
76 use Koha::DateUtils qw( dt_from_string );
77
78 my $input      = new CGI;
79
80 my $dbh          = C4::Context->dbh;
81 my $invoiceid    = $input->param('invoiceid');
82 my $invoice      = GetInvoice($invoiceid);
83 my $booksellerid   = $invoice->{booksellerid};
84 my $freight      = $invoice->{shipmentcost};
85 my $ordernumber  = $input->param('ordernumber');
86
87 my $bookseller = Koha::Acquisition::Booksellers->find( $booksellerid );
88 my $results;
89 $results = SearchOrders({
90     ordernumber => $ordernumber
91 }) if $ordernumber;
92
93 my ( $template, $loggedinuser, $cookie, $userflags ) = get_template_and_user(
94     {
95         template_name   => "acqui/orderreceive.tt",
96         query           => $input,
97         type            => "intranet",
98         authnotrequired => 0,
99         flagsrequired   => {acquisition => 'order_receive'},
100         debug           => 1,
101     }
102 );
103
104 unless ( $results and @$results) {
105     output_html_with_http_headers $input, $cookie, $template->output;
106     exit;
107 }
108
109 # prepare the form for receiving
110 my $order = $results->[0];
111
112 # Check if ACQ framework exists
113 my $acq_fw = GetMarcStructure( 1, 'ACQ', { unsafe => 1 } );
114 unless($acq_fw) {
115     $template->param('NoACQframework' => 1);
116 }
117
118 my $AcqCreateItem = C4::Context->preference('AcqCreateItem');
119 if ($AcqCreateItem eq 'receiving') {
120     $template->param(
121         AcqCreateItemReceiving => 1,
122         UniqueItemFields => C4::Context->preference('UniqueItemFields'),
123     );
124 } elsif ($AcqCreateItem eq 'ordering') {
125     my $fw = ($acq_fw) ? 'ACQ' : '';
126     my @itemnumbers = GetItemnumbersFromOrder($order->{ordernumber});
127     my @items;
128     foreach (@itemnumbers) {
129         my $item = GetItem($_);
130         my $descriptions;
131         $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({frameworkcode => $fw, kohafield => 'items.notforloan', authorised_value => $item->{notforloan} });
132         $item->{notforloan} = $descriptions->{lib} // '';
133
134         $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({frameworkcode => $fw, kohafield => 'items.restricted', authorised_value => $item->{restricted} });
135         $item->{restricted} = $descriptions->{lib} // '';
136
137         $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({frameworkcode => $fw, kohafield => 'items.location', authorised_value => $item->{location} });
138         $item->{location} = $descriptions->{lib} // '';
139
140         $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({frameworkcode => $fw, kohafield => 'items.collection', authorised_value => $item->{collection} });
141         $item->{collection} = $descriptions->{lib} // '';
142
143         $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({frameworkcode => $fw, kohafield => 'items.materials', authorised_value => $item->{materials} });
144         $item->{materials} = $descriptions->{lib} // '';
145
146         my $itemtype = getitemtypeinfo($item->{itype});
147         $item->{itemtype} = $itemtype->{description};
148         push @items, $item;
149     }
150     $template->param(items => \@items);
151 }
152
153 $order->{quantityreceived} = '' if $order->{quantityreceived} == 0;
154
155 my $unitprice = $order->{unitprice};
156 my ( $rrp, $ecost );
157 if ( $bookseller->invoiceincgst ) {
158     $rrp = $order->{rrp_tax_included};
159     $ecost = $order->{ecost_tax_included};
160     unless ( $unitprice != 0 and defined $unitprice) {
161         $unitprice = $order->{ecost_tax_included};
162     }
163 } else {
164     $rrp = $order->{rrp_tax_excluded};
165     $ecost = $order->{ecost_tax_excluded};
166     unless ( $unitprice != 0 and defined $unitprice) {
167         $unitprice = $order->{ecost_tax_excluded};
168     }
169 }
170
171 my $tax_rate;
172 if( defined $order->{tax_rate_on_receiving} ) {
173     $tax_rate = $order->{tax_rate_on_receiving} + 0.0;
174 } else {
175     $tax_rate = $order->{tax_rate_on_ordering} + 0.0;
176 }
177
178 my $suggestion = GetSuggestionInfoFromBiblionumber($order->{biblionumber});
179
180 my $authorisedby = $order->{authorisedby};
181 my $member = GetMember( borrowernumber => $authorisedby );
182
183 my $budget = GetBudget( $order->{budget_id} );
184
185 my $datereceived = $order->{datereceived} ? dt_from_string( $order->{datereceived} ) : dt_from_string;
186
187 # get option values for gist syspref
188 my @gst_values = map {
189     option => $_ + 0.0
190 }, split( '\|', C4::Context->preference("gist") );
191
192 $template->param(
193     AcqCreateItem         => $AcqCreateItem,
194     count                 => 1,
195     biblionumber          => $order->{'biblionumber'},
196     ordernumber           => $order->{'ordernumber'},
197     subscriptionid        => $order->{subscriptionid},
198     booksellerid          => $order->{'booksellerid'},
199     freight               => $freight,
200     name                  => $bookseller->name,
201     title                 => $order->{'title'},
202     author                => $order->{'author'},
203     copyrightdate         => $order->{'copyrightdate'},
204     isbn                  => $order->{'isbn'},
205     seriestitle           => $order->{'seriestitle'},
206     bookfund              => $budget->{budget_name},
207     quantity              => $order->{'quantity'},
208     quantityreceivedplus1 => $order->{'quantityreceived'} + 1,
209     quantityreceived      => $order->{'quantityreceived'},
210     rrp                   => $rrp,
211     ecost                 => $ecost,
212     unitprice             => $unitprice,
213     tax_rate              => $tax_rate,
214     memberfirstname       => $member->{firstname} || "",
215     membersurname         => $member->{surname} || "",
216     invoiceid             => $invoice->{invoiceid},
217     invoice               => $invoice->{invoicenumber},
218     datereceived          => $datereceived,
219     order_internalnote    => $order->{order_internalnote},
220     order_vendornote      => $order->{order_vendornote},
221     suggestionid          => $suggestion->{suggestionid},
222     surnamesuggestedby    => $suggestion->{surnamesuggestedby},
223     firstnamesuggestedby  => $suggestion->{firstnamesuggestedby},
224     gst_values            => \@gst_values,
225 );
226
227 my $borrower = GetMember( 'borrowernumber' => $loggedinuser );
228 my @budget_loop;
229 my $periods = GetBudgetPeriods( );
230 foreach my $period (@$periods) {
231     if ($period->{'budget_period_id'} == $budget->{'budget_period_id'}) {
232         $template->{'VARS'}->{'budget_period_description'} = $period->{'budget_period_description'};
233     }
234     next if $period->{'budget_period_locked'} || !$period->{'budget_period_description'};
235     my $budget_hierarchy = GetBudgetHierarchy( $period->{'budget_period_id'} );
236     my @funds;
237     foreach my $r ( @{$budget_hierarchy} ) {
238         next unless ( CanUserUseBudget( $borrower, $r, $userflags ) );
239         if ( !defined $r->{budget_amount} || $r->{budget_amount} == 0 ) {
240             next;
241         }
242         push @funds,
243           {
244             b_id  => $r->{budget_id},
245             b_txt => $r->{budget_name},
246             b_sel => ( $r->{budget_id} == $order->{budget_id} ) ? 1 : 0,
247           };
248     }
249
250     @funds = sort { uc( $a->{b_txt} ) cmp uc( $b->{b_txt} ) } @funds;
251
252     push @budget_loop,
253       {
254         'id'          => $period->{'budget_period_id'},
255         'description' => $period->{'budget_period_description'},
256         'funds'       => \@funds
257       };
258 }
259
260 $template->{'VARS'}->{'budget_loop'} = \@budget_loop;
261
262 my $op = $input->param('op');
263 if ($op and $op eq 'edit'){
264     $template->param(edit   =>   1);
265 }
266 output_html_with_http_headers $input, $cookie, $template->output;