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