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>.
30 This script shows all order already receive and all pendings orders.
31 It permit to write a new order as 'received'.
39 to know on what supplier this script has to display receive order.
43 the id of this invoice.
49 The biblionumber of this order.
68 use C4
::Budgets qw
/ GetBudget GetBudgetHierarchy CanUserUseBudget GetBudgetPeriods /;
75 use Koha
::Acquisition
::Booksellers
;
76 use Koha
::Acquisition
::Currencies
;
77 use Koha
::Acquisition
::Orders
;
78 use Koha
::DateUtils
qw( dt_from_string );
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 );
93 $results = SearchOrders
({
94 ordernumber
=> $ordernumber
97 my ( $template, $loggedinuser, $cookie, $userflags ) = get_template_and_user
(
99 template_name
=> "acqui/orderreceive.tt",
102 authnotrequired
=> 0,
103 flagsrequired
=> {acquisition
=> 'order_receive'},
108 unless ( $results and @
$results) {
109 output_html_with_http_headers
$input, $cookie, $template->output;
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 $active_currency = Koha
::Acquisition
::Currencies
->get_active;
119 # Check if ACQ framework exists
120 my $acq_fw = GetMarcStructure
( 1, 'ACQ', { unsafe
=> 1 } );
122 $template->param('NoACQframework' => 1);
125 my $AcqCreateItem = $basket->effective_create_items;
126 if ($AcqCreateItem eq 'receiving') {
128 AcqCreateItemReceiving
=> 1,
129 UniqueItemFields
=> C4
::Context
->preference('UniqueItemFields'),
131 } elsif ($AcqCreateItem eq 'ordering') {
132 my $fw = ($acq_fw) ?
'ACQ' : '';
133 my $items = $order_object->items;
135 while ( my $i = $items->next ) {
136 my $item = $i->unblessed;
138 $descriptions = Koha
::AuthorisedValues
->get_description_by_koha_field({frameworkcode
=> $fw, kohafield
=> 'items.notforloan', authorised_value
=> $item->{notforloan
} });
139 $item->{notforloan
} = $descriptions->{lib
} // '';
141 $descriptions = Koha
::AuthorisedValues
->get_description_by_koha_field({frameworkcode
=> $fw, kohafield
=> 'items.restricted', authorised_value
=> $item->{restricted
} });
142 $item->{restricted
} = $descriptions->{lib
} // '';
144 $descriptions = Koha
::AuthorisedValues
->get_description_by_koha_field({frameworkcode
=> $fw, kohafield
=> 'items.location', authorised_value
=> $item->{location
} });
145 $item->{location
} = $descriptions->{lib
} // '';
147 $descriptions = Koha
::AuthorisedValues
->get_description_by_koha_field({frameworkcode
=> $fw, kohafield
=> 'items.ccode', authorised_value
=> $item->{ccode
} });
148 $item->{collection
} = $descriptions->{lib
} // '';
150 $descriptions = Koha
::AuthorisedValues
->get_description_by_koha_field({frameworkcode
=> $fw, kohafield
=> 'items.materials', authorised_value
=> $item->{materials
} });
151 $item->{materials
} = $descriptions->{lib
} // '';
153 my $itemtype = Koha
::ItemTypes
->find($i->effective_itemtype);
154 if (defined $itemtype) {
155 # We should not do that here, but call ->itemtype->description when needed instead
156 $item->{itemtype
} = $itemtype->description; # FIXME Should not it be translated_description?
160 $template->param(items
=> \
@items);
163 $order->{quantityreceived
} = '' if $order->{quantityreceived
} == 0;
165 my $unitprice = $order->{unitprice
};
167 if ( $bookseller->invoiceincgst ) {
168 $rrp = $order->{rrp_tax_included
};
169 $ecost = $order->{ecost_tax_included
};
170 unless ( $unitprice != 0 and defined $unitprice) {
171 $unitprice = $order->{ecost_tax_included
};
174 $rrp = $order->{rrp_tax_excluded
};
175 $ecost = $order->{ecost_tax_excluded
};
176 unless ( $unitprice != 0 and defined $unitprice) {
177 $unitprice = $order->{ecost_tax_excluded
};
182 if( defined $order->{tax_rate_on_receiving
} ) {
183 $tax_rate = $order->{tax_rate_on_receiving
} + 0.0;
185 $tax_rate = $order->{tax_rate_on_ordering
} + 0.0;
188 my $suggestion = GetSuggestionInfoFromBiblionumber
($order->{biblionumber
});
190 my $creator = Koha
::Patrons
->find( $order->{created_by
} );
192 my $budget = GetBudget
( $order->{budget_id
} );
194 my $datereceived = $order->{datereceived
} ? dt_from_string
( $order->{datereceived
} ) : dt_from_string
;
196 # get option values for gist syspref
197 my @gst_values = map {
199 }, split( '\|', C4
::Context
->preference("gist") );
201 my $order_internalnote = $order->{order_internalnote
};
202 my $order_vendornote = $order->{order_vendornote
};
203 if ( $order->{subscriptionid
} ) {
204 # Order from a subscription, we will display an history of what has been received
205 my $orders = Koha
::Acquisition
::Orders
->search(
207 subscriptionid
=> $order->{subscriptionid
},
208 parent_ordernumber
=> $order->{ordernumber
},
209 ordernumber
=> { '!=' => $order->{ordernumber
} }
212 if ( $order->{parent_ordernumber
} != $order->{ordernumber
} ) {
213 my $parent_order = Koha
::Acquisition
::Orders
->find($order->{parent_ordernumber
});
214 $order_internalnote = $parent_order->{order_internalnote
};
215 $order_vendornote = $parent_order->{order_vendornote
};
223 AcqCreateItem
=> $AcqCreateItem,
225 biblionumber
=> $order->{'biblionumber'},
226 ordernumber
=> $order->{'ordernumber'},
227 subscriptionid
=> $order->{subscriptionid
},
228 booksellerid
=> $order->{'booksellerid'},
230 name
=> $bookseller->name,
231 cur_active_sym
=> $active_currency->symbol,
232 cur_active
=> $active_currency->currency,
233 listincgst
=> $bookseller->listincgst,
234 invoiceincgst
=> $bookseller->invoiceincgst,
235 title
=> $order->{'title'},
236 author
=> $order->{'author'},
237 copyrightdate
=> $order->{'copyrightdate'},
238 isbn
=> $order->{'isbn'},
239 seriestitle
=> $order->{'seriestitle'},
240 bookfund
=> $budget->{budget_name
},
241 quantity
=> $order->{'quantity'},
242 quantityreceivedplus1
=> $order->{'quantityreceived'} + 1,
243 quantityreceived
=> $order->{'quantityreceived'},
245 replacementprice
=> $order->{'replacementprice'},
247 unitprice
=> $unitprice,
248 tax_rate
=> $tax_rate,
250 invoiceid
=> $invoice->{invoiceid
},
251 invoice
=> $invoice->{invoicenumber
},
252 datereceived
=> $datereceived,
253 order_internalnote
=> $order_internalnote,
254 order_vendornote
=> $order_vendornote,
255 suggestionid
=> $suggestion->{suggestionid
},
256 surnamesuggestedby
=> $suggestion->{surnamesuggestedby
},
257 firstnamesuggestedby
=> $suggestion->{firstnamesuggestedby
},
258 gst_values
=> \
@gst_values,
261 my $patron = Koha
::Patrons
->find( $loggedinuser )->unblessed;
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'} );
271 foreach my $r ( @
{$budget_hierarchy} ) {
272 next unless ( CanUserUseBudget
( $patron, $r, $userflags ) );
273 if ( !defined $r->{budget_amount
} || $r->{budget_amount
} == 0 ) {
278 b_id
=> $r->{budget_id
},
279 b_txt
=> $r->{budget_name
},
280 b_sel
=> ( $r->{budget_id
} == $order->{budget_id
} ) ?
1 : 0,
284 @funds = sort { uc( $a->{b_txt
} ) cmp uc( $b->{b_txt
} ) } @funds;
288 'id' => $period->{'budget_period_id'},
289 'description' => $period->{'budget_period_description'},
294 $template->{'VARS'}->{'budget_loop'} = \
@budget_loop;
296 my $op = $input->param('op');
297 if ($op and $op eq 'edit'){
298 $template->param(edit
=> 1);
300 output_html_with_http_headers
$input, $cookie, $template->output;