Bug 19228: Trigger confirm delete when removing item from course
[koha.git] / acqui / orderreceive.pl
blob116277df0e4b4e68e6a81b1cb3e9d301eb17b6fe
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::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 use C4::Koha;
76 use Koha::Acquisition::Booksellers;
77 use Koha::DateUtils qw( dt_from_string );
78 use Koha::ItemTypes;
79 use Koha::Patrons;
81 my $input = new CGI;
83 my $dbh = C4::Context->dbh;
84 my $invoiceid = $input->param('invoiceid');
85 my $invoice = GetInvoice($invoiceid);
86 my $booksellerid = $invoice->{booksellerid};
87 my $freight = $invoice->{shipmentcost};
88 my $ordernumber = $input->param('ordernumber');
90 my $bookseller = Koha::Acquisition::Booksellers->find( $booksellerid );
91 my $results;
92 $results = SearchOrders({
93 ordernumber => $ordernumber
94 }) if $ordernumber;
96 my ( $template, $loggedinuser, $cookie, $userflags ) = get_template_and_user(
98 template_name => "acqui/orderreceive.tt",
99 query => $input,
100 type => "intranet",
101 authnotrequired => 0,
102 flagsrequired => {acquisition => 'order_receive'},
103 debug => 1,
107 unless ( $results and @$results) {
108 output_html_with_http_headers $input, $cookie, $template->output;
109 exit;
112 # prepare the form for receiving
113 my $order = $results->[0];
115 # Check if ACQ framework exists
116 my $acq_fw = GetMarcStructure( 1, 'ACQ', { unsafe => 1 } );
117 unless($acq_fw) {
118 $template->param('NoACQframework' => 1);
121 my $AcqCreateItem = C4::Context->preference('AcqCreateItem');
122 if ($AcqCreateItem eq 'receiving') {
123 $template->param(
124 AcqCreateItemReceiving => 1,
125 UniqueItemFields => C4::Context->preference('UniqueItemFields'),
127 } elsif ($AcqCreateItem eq 'ordering') {
128 my $fw = ($acq_fw) ? 'ACQ' : '';
129 my @itemnumbers = GetItemnumbersFromOrder($order->{ordernumber});
130 my @items;
131 foreach (@itemnumbers) {
132 my $item = GetItem($_);
133 my $descriptions;
134 $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({frameworkcode => $fw, kohafield => 'items.notforloan', authorised_value => $item->{notforloan} });
135 $item->{notforloan} = $descriptions->{lib} // '';
137 $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({frameworkcode => $fw, kohafield => 'items.restricted', authorised_value => $item->{restricted} });
138 $item->{restricted} = $descriptions->{lib} // '';
140 $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({frameworkcode => $fw, kohafield => 'items.location', authorised_value => $item->{location} });
141 $item->{location} = $descriptions->{lib} // '';
143 $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({frameworkcode => $fw, kohafield => 'items.collection', authorised_value => $item->{collection} });
144 $item->{collection} = $descriptions->{lib} // '';
146 $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({frameworkcode => $fw, kohafield => 'items.materials', authorised_value => $item->{materials} });
147 $item->{materials} = $descriptions->{lib} // '';
149 my $itemtype = Koha::ItemTypes->find( $item->{itype} );
150 if (defined $itemtype) {
151 $item->{itemtype} = $itemtype->description; # FIXME Should not it be translated_description?
153 push @items, $item;
155 $template->param(items => \@items);
158 $order->{quantityreceived} = '' if $order->{quantityreceived} == 0;
160 my $unitprice = $order->{unitprice};
161 my ( $rrp, $ecost );
162 if ( $bookseller->invoiceincgst ) {
163 $rrp = $order->{rrp_tax_included};
164 $ecost = $order->{ecost_tax_included};
165 unless ( $unitprice != 0 and defined $unitprice) {
166 $unitprice = $order->{ecost_tax_included};
168 } else {
169 $rrp = $order->{rrp_tax_excluded};
170 $ecost = $order->{ecost_tax_excluded};
171 unless ( $unitprice != 0 and defined $unitprice) {
172 $unitprice = $order->{ecost_tax_excluded};
176 my $tax_rate;
177 if( defined $order->{tax_rate_on_receiving} ) {
178 $tax_rate = $order->{tax_rate_on_receiving} + 0.0;
179 } else {
180 $tax_rate = $order->{tax_rate_on_ordering} + 0.0;
183 my $suggestion = GetSuggestionInfoFromBiblionumber($order->{biblionumber});
185 my $authorisedby = $order->{authorisedby};
186 my $authorised_patron = Koha::Patrons->find( $authorisedby );
188 my $budget = GetBudget( $order->{budget_id} );
190 my $datereceived = $order->{datereceived} ? dt_from_string( $order->{datereceived} ) : dt_from_string;
192 # get option values for gist syspref
193 my @gst_values = map {
194 option => $_ + 0.0
195 }, split( '\|', C4::Context->preference("gist") );
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 => $rrp,
216 ecost => $ecost,
217 unitprice => $unitprice,
218 tax_rate => $tax_rate,
219 memberfirstname => $authorised_patron->firstname || "",
220 membersurname => $authorised_patron->surname || "",
221 invoiceid => $invoice->{invoiceid},
222 invoice => $invoice->{invoicenumber},
223 datereceived => $datereceived,
224 order_internalnote => $order->{order_internalnote},
225 order_vendornote => $order->{order_vendornote},
226 suggestionid => $suggestion->{suggestionid},
227 surnamesuggestedby => $suggestion->{surnamesuggestedby},
228 firstnamesuggestedby => $suggestion->{firstnamesuggestedby},
229 gst_values => \@gst_values,
232 my $patron = Koha::Patrons->find( $loggedinuser )->unblessed;
233 my @budget_loop;
234 my $periods = GetBudgetPeriods( );
235 foreach my $period (@$periods) {
236 if ($period->{'budget_period_id'} == $budget->{'budget_period_id'}) {
237 $template->{'VARS'}->{'budget_period_description'} = $period->{'budget_period_description'};
239 next if $period->{'budget_period_locked'} || !$period->{'budget_period_description'};
240 my $budget_hierarchy = GetBudgetHierarchy( $period->{'budget_period_id'} );
241 my @funds;
242 foreach my $r ( @{$budget_hierarchy} ) {
243 next unless ( CanUserUseBudget( $patron, $r, $userflags ) );
244 if ( !defined $r->{budget_amount} || $r->{budget_amount} == 0 ) {
245 next;
247 push @funds,
249 b_id => $r->{budget_id},
250 b_txt => $r->{budget_name},
251 b_sel => ( $r->{budget_id} == $order->{budget_id} ) ? 1 : 0,
255 @funds = sort { uc( $a->{b_txt} ) cmp uc( $b->{b_txt} ) } @funds;
257 push @budget_loop,
259 'id' => $period->{'budget_period_id'},
260 'description' => $period->{'budget_period_description'},
261 'funds' => \@funds
265 $template->{'VARS'}->{'budget_loop'} = \@budget_loop;
267 my $op = $input->param('op');
268 if ($op and $op eq 'edit'){
269 $template->param(edit => 1);
271 output_html_with_http_headers $input, $cookie, $template->output;