Bug 19036: Add ability to enable credit number for only some credit types
[koha.git] / acqui / orderreceive.pl
blobdea4f439bedd705736cf4e5ecf41fc594fac6e99
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 Modern::Perl;
63 use CGI qw ( -utf8 );
64 use C4::Context;
65 use C4::Acquisition;
66 use C4::Auth;
67 use C4::Output;
68 use C4::Budgets qw/ GetBudget GetBudgetHierarchy CanUserUseBudget GetBudgetPeriods /;
69 use C4::Members;
70 use C4::Items;
71 use C4::Biblio;
72 use C4::Suggestions;
73 use C4::Koha;
75 use Koha::Acquisition::Booksellers;
76 use Koha::Acquisition::Currencies;
77 use Koha::Acquisition::Orders;
78 use Koha::DateUtils qw( dt_from_string );
79 use Koha::ItemTypes;
80 use Koha::Patrons;
82 my $input = new CGI;
84 my $dbh = C4::Context->dbh;
85 my $invoiceid = $input->param('invoiceid');
86 my $invoice = GetInvoice($invoiceid);
87 my $booksellerid = $invoice->{booksellerid};
88 my $freight = $invoice->{shipmentcost};
89 my $ordernumber = $input->param('ordernumber');
91 my $bookseller = Koha::Acquisition::Booksellers->find( $booksellerid );
92 my $results;
93 $results = SearchOrders({
94 ordernumber => $ordernumber
95 }) if $ordernumber;
97 my ( $template, $loggedinuser, $cookie, $userflags ) = get_template_and_user(
99 template_name => "acqui/orderreceive.tt",
100 query => $input,
101 type => "intranet",
102 authnotrequired => 0,
103 flagsrequired => {acquisition => 'order_receive'},
104 debug => 1,
108 unless ( $results and @$results) {
109 output_html_with_http_headers $input, $cookie, $template->output;
110 exit;
113 # prepare the form for receiving
114 my $order = $results->[0];
115 my $order_object = Koha::Acquisition::Orders->find( $ordernumber );
116 my $basket = $order_object->basket;
117 my $currencies = Koha::Acquisition::Currencies->search;
118 my $active_currency = $currencies->get_active;
120 # Check if ACQ framework exists
121 my $acq_fw = GetMarcStructure( 1, 'ACQ', { unsafe => 1 } );
122 unless($acq_fw) {
123 $template->param('NoACQframework' => 1);
126 my $AcqCreateItem = $basket->effective_create_items;
127 if ($AcqCreateItem eq 'receiving') {
128 $template->param(
129 AcqCreateItemReceiving => 1,
130 UniqueItemFields => C4::Context->preference('UniqueItemFields'),
132 } elsif ($AcqCreateItem eq 'ordering') {
133 my $fw = ($acq_fw) ? 'ACQ' : '';
134 my $items = $order_object->items;
135 my @items;
136 while ( my $i = $items->next ) {
137 my $item = $i->unblessed;
138 my $descriptions;
139 $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({frameworkcode => $fw, kohafield => 'items.notforloan', authorised_value => $item->{notforloan} });
140 $item->{notforloan} = $descriptions->{lib} // '';
142 $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({frameworkcode => $fw, kohafield => 'items.restricted', authorised_value => $item->{restricted} });
143 $item->{restricted} = $descriptions->{lib} // '';
145 $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({frameworkcode => $fw, kohafield => 'items.location', authorised_value => $item->{location} });
146 $item->{location} = $descriptions->{lib} // '';
148 $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({frameworkcode => $fw, kohafield => 'items.ccode', authorised_value => $item->{ccode} });
149 $item->{collection} = $descriptions->{lib} // '';
151 $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({frameworkcode => $fw, kohafield => 'items.materials', authorised_value => $item->{materials} });
152 $item->{materials} = $descriptions->{lib} // '';
154 my $itemtype = Koha::ItemTypes->find($i->effective_itemtype);
155 if (defined $itemtype) {
156 # We should not do that here, but call ->itemtype->description when needed instead
157 $item->{itemtype} = $itemtype->description; # FIXME Should not it be translated_description?
159 push @items, $item;
161 $template->param(items => \@items);
164 $order->{quantityreceived} = '' if $order->{quantityreceived} == 0;
166 my $unitprice = $order->{unitprice};
167 my ( $rrp, $ecost );
168 if ( $bookseller->invoiceincgst ) {
169 $rrp = $order->{rrp_tax_included};
170 $ecost = $order->{ecost_tax_included};
171 unless ( $unitprice != 0 and defined $unitprice) {
172 $unitprice = $order->{ecost_tax_included};
174 } else {
175 $rrp = $order->{rrp_tax_excluded};
176 $ecost = $order->{ecost_tax_excluded};
177 unless ( $unitprice != 0 and defined $unitprice) {
178 $unitprice = $order->{ecost_tax_excluded};
182 my $tax_rate;
183 if( defined $order->{tax_rate_on_receiving} ) {
184 $tax_rate = $order->{tax_rate_on_receiving} + 0.0;
185 } else {
186 $tax_rate = $order->{tax_rate_on_ordering} + 0.0;
189 my $creator = Koha::Patrons->find( $order->{created_by} );
191 my $budget = GetBudget( $order->{budget_id} );
193 my $datereceived = $order->{datereceived} ? dt_from_string( $order->{datereceived} ) : dt_from_string;
195 # get option values for gist syspref
196 my @gst_values = map {
197 option => $_ + 0.0
198 }, split( '\|', C4::Context->preference("gist") );
200 my $order_internalnote = $order->{order_internalnote};
201 my $order_vendornote = $order->{order_vendornote};
202 if ( $order->{subscriptionid} ) {
203 # Order from a subscription, we will display an history of what has been received
204 my $orders = Koha::Acquisition::Orders->search(
206 subscriptionid => $order->{subscriptionid},
207 parent_ordernumber => $order->{ordernumber},
208 ordernumber => { '!=' => $order->{ordernumber} }
211 if ( $order->{parent_ordernumber} != $order->{ordernumber} ) {
212 my $parent_order = Koha::Acquisition::Orders->find($order->{parent_ordernumber});
213 $order_internalnote = $parent_order->{order_internalnote};
214 $order_vendornote = $parent_order->{order_vendornote};
216 $template->param(
217 orders => $orders,
221 $template->param(
222 AcqCreateItem => $AcqCreateItem,
223 count => 1,
224 biblionumber => $order->{'biblionumber'},
225 ordernumber => $order->{'ordernumber'},
226 subscriptionid => $order->{subscriptionid},
227 booksellerid => $order->{'booksellerid'},
228 freight => $freight,
229 name => $bookseller->name,
230 active_currency => $active_currency,
231 currencies => scalar $currencies->search({ rate => { '!=' => 1 } }),
232 invoiceincgst => $bookseller->invoiceincgst,
233 title => $order->{'title'},
234 author => $order->{'author'},
235 copyrightdate => $order->{'copyrightdate'},
236 isbn => $order->{'isbn'},
237 seriestitle => $order->{'seriestitle'},
238 bookfund => $budget->{budget_name},
239 quantity => $order->{'quantity'},
240 quantityreceivedplus1 => $order->{'quantityreceived'} + 1,
241 quantityreceived => $order->{'quantityreceived'},
242 rrp => $rrp,
243 replacementprice => $order->{'replacementprice'},
244 ecost => $ecost,
245 unitprice => $unitprice,
246 tax_rate => $tax_rate,
247 creator => $creator,
248 invoiceid => $invoice->{invoiceid},
249 invoice => $invoice->{invoicenumber},
250 datereceived => $datereceived,
251 order_internalnote => $order_internalnote,
252 order_vendornote => $order_vendornote,
253 gst_values => \@gst_values,
256 my $suggestion = GetSuggestionInfoFromBiblionumber($order->{biblionumber});
257 if ( $suggestion ) {
258 $template->param( suggestion => $suggestion );
261 my $patron = Koha::Patrons->find( $loggedinuser )->unblessed;
262 my @budget_loop;
263 my $periods = GetBudgetPeriods( );
264 foreach my $period (@$periods) {
265 if ($period->{'budget_period_id'} == $budget->{'budget_period_id'}) {
266 $template->{'VARS'}->{'budget_period_description'} = $period->{'budget_period_description'};
268 next if $period->{'budget_period_locked'} || !$period->{'budget_period_description'};
269 my $budget_hierarchy = GetBudgetHierarchy( $period->{'budget_period_id'} );
270 my @funds;
271 foreach my $r ( @{$budget_hierarchy} ) {
272 next unless ( CanUserUseBudget( $patron, $r, $userflags ) );
273 push @funds,
275 b_id => $r->{budget_id},
276 b_txt => $r->{budget_name},
277 b_sel => ( $r->{budget_id} == $order->{budget_id} ) ? 1 : 0,
281 @funds = sort { uc( $a->{b_txt} ) cmp uc( $b->{b_txt} ) } @funds;
283 push @budget_loop,
285 'id' => $period->{'budget_period_id'},
286 'description' => $period->{'budget_period_description'},
287 'funds' => \@funds
291 $template->{'VARS'}->{'budget_loop'} = \@budget_loop;
293 my $op = $input->param('op');
294 if ($op and $op eq 'edit'){
295 $template->param(edit => 1);
297 output_html_with_http_headers $input, $cookie, $template->output;