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