3 #script to receive orders
6 # Copyright 2000-2002 Katipo Communications
7 # Copyright 2008-2009 BibLibre SARL
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 orders receipt or pending for a given supplier.
31 It allows to write an order as 'received' when it arrives.
39 To know the supplier this script has to show orders.
43 is the bookseller invoice number.
51 To filter the results list on this given date.
68 use Koha
::Acquisition
::Baskets
;
69 use Koha
::Acquisition
::Bookseller
;
70 use Koha
::Acquisition
::Orders
;
78 my $sticky_filters = $input->param('sticky_filters') || 0;
80 my ($template, $loggedinuser, $cookie)
81 = get_template_and_user
({template_name
=> "acqui/parcel.tt",
85 flagsrequired
=> {acquisition
=> 'order_receive'},
89 my $op = $input->param('op') // '';
91 # process cancellation first so that list of
92 # orders to display is calculated after
93 if ($op eq 'cancelreceipt') {
94 my $ordernumber = $input->param('ordernumber');
95 my $parent_ordernumber = CancelReceipt
($ordernumber);
96 unless($parent_ordernumber) {
97 $template->param(error_cancelling_receipt
=> 1);
101 my $invoiceid = $input->param('invoiceid');
103 $invoice = GetInvoiceDetails
($invoiceid) if $invoiceid;
105 unless( $invoiceid and $invoice->{invoiceid
} ) {
107 error_invoice_not_known
=> 1,
108 no_orders_to_display
=> 1
110 output_html_with_http_headers
$input, $cookie, $template->output;
114 my $booksellerid = $invoice->{booksellerid
};
115 my $bookseller = Koha
::Acquisition
::Booksellers
->find( $booksellerid );
117 my @orders = @
{ $invoice->{orders
} };
118 my $countlines = scalar @orders;
119 my @loop_received = ();
122 my $total_tax_excluded = 0;
123 my $total_tax_included = 0;
125 my $subtotal_for_funds;
126 for my $order ( @orders ) {
127 $order->{'unitprice'} += 0;
129 my $order_object = Koha
::Acquisition
::Orders
->find($order->{ordernumber
});
130 if ( $bookseller->invoiceincgst ) {
131 $order->{ecost
} = $order->{ecost_tax_included
};
132 $order->{unitprice
} = $order->{unitprice_tax_included
};
135 $order->{ecost
} = $order->{ecost_tax_excluded
};
136 $order->{unitprice
} = $order->{unitprice_tax_excluded
};
139 $order->{total
} = get_rounded_price
($order->{unitprice
}) * $order->{quantity
};
141 my %line = %{ $order };
142 $line{invoice
} = $invoice->{invoicenumber
};
143 my @itemnumbers = $order_object->items->get_column('itemnumber');
144 my $biblio = Koha
::Biblios
->find( $line{biblionumber
} );
145 $line{total_holds
} = $biblio ?
$biblio->holds->count : 0;
146 $line{item_holds
} = $biblio ?
$biblio->current_holds->search(
148 itemnumber
=> { -in => \
@itemnumbers },
151 $line{budget
} = GetBudgetByOrderNumber
( $line{ordernumber
} );
153 $line{tax_value
} = $line{tax_value_on_receiving
};
154 $line{tax_rate
} = $line{tax_rate_on_receiving
};
155 $foot{$line{tax_rate
}}{tax_rate
} = $line{tax_rate
};
156 $foot{$line{tax_rate
}}{tax_value
} += $line{tax_value
};
157 $total_tax_excluded += get_rounded_price
($line{unitprice_tax_excluded
}) * $line{quantity
};
158 $total_tax_included += get_rounded_price
($line{unitprice_tax_included
}) * $line{quantity
};
160 my $suggestion = GetSuggestionInfoFromBiblionumber
($line{biblionumber
});
161 $line{suggestionid
} = $suggestion->{suggestionid
};
162 $line{surnamesuggestedby
} = $suggestion->{surnamesuggestedby
};
163 $line{firstnamesuggestedby
} = $suggestion->{firstnamesuggestedby
};
165 if ( $line{parent_ordernumber
} != $line{ordernumber
} ) {
166 if ( grep { $_->{ordernumber
} == $line{parent_ordernumber
} }
170 $line{cannot_cancel
} = 1;
174 my $budget_name = GetBudgetName
( $line{budget_id
} );
175 $line{budget_name
} = $budget_name;
177 $subtotal_for_funds->{ $line{budget_name
} }{ecost
} += get_rounded_price
($order->{ecost
}) * $order->{quantity
};
178 $subtotal_for_funds->{ $line{budget_name
} }{unitprice
} += $order->{total
};
180 push @loop_received, \
%line;
182 push @book_foot_loop, map { $_ } values %foot;
184 my @loop_orders = ();
185 unless( defined $invoice->{closedate
} ) {
187 if ( $op eq "search" or $sticky_filters ) {
188 my ( $search, $ean, $basketname, $orderno, $basketgroupname );
189 if ( $sticky_filters ) {
190 $search = $input->cookie("filter_parcel_summary");
191 $ean = $input->cookie("filter_parcel_ean");
192 $basketname = $input->cookie("filter_parcel_basketname");
193 $orderno = $input->cookie("filter_parcel_orderno");
194 $basketgroupname = $input->cookie("filter_parcel_basketgroupname");
196 $search = $input->param('summaryfilter') || '';
197 $ean = $input->param('eanfilter') || '';
198 $basketname = $input->param('basketfilter') || '';
199 $orderno = $input->param('orderfilter') || '';
200 $basketgroupname = $input->param('basketgroupnamefilter') || '';
202 $pendingorders = SearchOrders
({
203 booksellerid
=> $booksellerid,
204 basketname
=> $basketname,
205 ordernumber
=> $orderno,
208 basketgroupname
=> $basketgroupname,
213 summaryfilter
=> $search,
215 basketfilter
=> $basketname,
216 orderfilter
=> $orderno,
217 basketgroupnamefilter
=> $basketgroupname,
220 $pendingorders = SearchOrders
({
221 booksellerid
=> $booksellerid,
225 my $countpendings = scalar @
$pendingorders;
227 for (my $i = 0 ; $i < $countpendings ; $i++) {
228 my $order = $pendingorders->[$i];
230 if ( $bookseller->invoiceincgst ) {
231 $order->{ecost
} = $order->{ecost_tax_included
};
233 $order->{ecost
} = $order->{ecost_tax_excluded
};
235 $order->{total
} = get_rounded_price
($order->{ecost
}) * $order->{quantity
};
239 $line{invoice
} = $invoice;
240 $line{booksellerid
} = $booksellerid;
242 my $biblionumber = $line{'biblionumber'};
243 my $biblio = Koha
::Biblios
->find( $biblionumber );
244 my $countbiblio = $biblio ?
$biblio->active_orders->count : 0;
245 my $ordernumber = $line{'ordernumber'};
246 my $order_object = Koha
::Acquisition
::Orders
->find($ordernumber);
247 my $cnt_subscriptions = $biblio ?
$biblio->subscriptions->count: 0;
248 my $itemcount = $biblio ?
$biblio->items->count : 0;
249 my $holds_count = $biblio ?
$biblio->holds->count : 0;
250 my @itemnumbers = $order_object->items->get_column('itemnumber');
251 my $itemholds = $biblio ?
$biblio->holds->search({ itemnumber
=> { -in => \
@itemnumbers } })->count : 0;
253 my $suggestion = GetSuggestionInfoFromBiblionumber
($line{biblionumber
});
254 $line{suggestionid
} = $suggestion->{suggestionid
};
255 $line{surnamesuggestedby
} = $suggestion->{surnamesuggestedby
};
256 $line{firstnamesuggestedby
} = $suggestion->{firstnamesuggestedby
};
258 # if the biblio is not in other orders and if there is no items elsewhere and no subscriptions and no holds we can then show the link "Delete order and Biblio" see bug 5680
259 $line{can_del_bib
} = 1 if $countbiblio <= 1 && $itemcount == scalar @itemnumbers && !($cnt_subscriptions) && !($holds_count);
260 $line{items
} = ($itemcount) - (scalar @itemnumbers);
261 $line{left_item
} = 1 if $line{items
} >= 1;
262 $line{left_biblio
} = 1 if $countbiblio > 1;
263 $line{biblios
} = $countbiblio - 1;
264 $line{left_subscription
} = 1 if $cnt_subscriptions;
265 $line{subscriptions
} = $cnt_subscriptions;
266 $line{left_holds
} = ($holds_count >= 1) ?
1 : 0;
267 $line{left_holds_on_order
} = 1 if $line{left_holds
}==1 && ($line{items
} == 0 || $itemholds );
268 $line{holds
} = $holds_count;
269 $line{holds_on_order
} = $itemholds?
$itemholds:$holds_count if $line{left_holds_on_order
};
270 $line{basket
} = Koha
::Acquisition
::Baskets
->find( $line{basketno
} );
272 my $budget_name = GetBudgetName
( $line{budget_id
} );
273 $line{budget_name
} = $budget_name;
275 push @loop_orders, \
%line;
279 loop_orders
=> \
@loop_orders,
284 invoiceid
=> $invoice->{invoiceid
},
285 invoice
=> $invoice->{invoicenumber
},
286 invoiceclosedate
=> $invoice->{closedate
},
287 datereceived
=> dt_from_string
,
288 name
=> $bookseller->name,
289 booksellerid
=> $bookseller->id,
290 loop_received
=> \
@loop_received,
291 loop_orders
=> \
@loop_orders,
292 book_foot_loop
=> \
@book_foot_loop,
293 (uc(C4
::Context
->preference("marcflavour"))) => 1,
294 total_tax_excluded
=> $total_tax_excluded,
295 total_tax_included
=> $total_tax_included,
296 subtotal_for_funds
=> $subtotal_for_funds,
297 sticky_filters
=> $sticky_filters,
299 output_html_with_http_headers
$input, $cookie, $template->output;