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
;
77 my $sticky_filters = $input->param('sticky_filters') || 0;
79 my ($template, $loggedinuser, $cookie)
80 = get_template_and_user
({template_name
=> "acqui/parcel.tt",
84 flagsrequired
=> {acquisition
=> 'order_receive'},
88 my $op = $input->param('op') // '';
90 # process cancellation first so that list of
91 # orders to display is calculated after
92 if ($op eq 'cancelreceipt') {
93 my $ordernumber = $input->param('ordernumber');
94 my $parent_ordernumber = CancelReceipt
($ordernumber);
95 unless($parent_ordernumber) {
96 $template->param(error_cancelling_receipt
=> 1);
100 my $invoiceid = $input->param('invoiceid');
102 $invoice = GetInvoiceDetails
($invoiceid) if $invoiceid;
104 unless( $invoiceid and $invoice->{invoiceid
} ) {
106 error_invoice_not_known
=> 1,
107 no_orders_to_display
=> 1
109 output_html_with_http_headers
$input, $cookie, $template->output;
113 my $booksellerid = $invoice->{booksellerid
};
114 my $bookseller = Koha
::Acquisition
::Booksellers
->find( $booksellerid );
116 my @orders = @
{ $invoice->{orders
} };
117 my $countlines = scalar @orders;
118 my @loop_received = ();
121 my $total_tax_excluded = 0;
122 my $total_tax_included = 0;
124 my $subtotal_for_funds;
125 for my $order ( @orders ) {
126 $order->{'unitprice'} += 0;
128 if ( $bookseller->invoiceincgst ) {
129 $order->{ecost
} = $order->{ecost_tax_included
};
130 $order->{unitprice
} = $order->{unitprice_tax_included
};
133 $order->{ecost
} = $order->{ecost_tax_excluded
};
134 $order->{unitprice
} = $order->{unitprice_tax_excluded
};
137 $order->{total
} = $order->{unitprice
} * $order->{quantity
};
139 my %line = %{ $order };
140 $line{invoice
} = $invoice->{invoicenumber
};
141 my @itemnumbers = GetItemnumbersFromOrder
( $order->{ordernumber
} );
142 my $biblio = Koha
::Biblios
->find( $line{biblionumber
} );
143 $line{total_holds
} = $biblio ?
$biblio->holds->count : 0;
144 $line{item_holds
} = $biblio ?
$biblio->current_holds->search(
146 itemnumber
=> { -in => \
@itemnumbers },
149 $line{budget
} = GetBudgetByOrderNumber
( $line{ordernumber
} );
151 $line{tax_value
} = $line{tax_value_on_receiving
};
152 $line{tax_rate
} = $line{tax_rate_on_receiving
};
153 $foot{$line{tax_rate
}}{tax_rate
} = $line{tax_rate
};
154 $foot{$line{tax_rate
}}{tax_value
} += $line{tax_value
};
155 $total_tax_excluded += $line{unitprice_tax_excluded
} * $line{quantity
};
156 $total_tax_included += $line{unitprice_tax_included
} * $line{quantity
};
158 my $suggestion = GetSuggestionInfoFromBiblionumber
($line{biblionumber
});
159 $line{suggestionid
} = $suggestion->{suggestionid
};
160 $line{surnamesuggestedby
} = $suggestion->{surnamesuggestedby
};
161 $line{firstnamesuggestedby
} = $suggestion->{firstnamesuggestedby
};
163 if ( $line{parent_ordernumber
} != $line{ordernumber
} ) {
164 if ( grep { $_->{ordernumber
} == $line{parent_ordernumber
} }
168 $line{cannot_cancel
} = 1;
172 my $budget_name = GetBudgetName
( $line{budget_id
} );
173 $line{budget_name
} = $budget_name;
175 $subtotal_for_funds->{ $line{budget_name
} }{ecost
} += $order->{ecost
} * $order->{quantity
};
176 $subtotal_for_funds->{ $line{budget_name
} }{unitprice
} += $order->{total
};
178 push @loop_received, \
%line;
180 push @book_foot_loop, map { $_ } values %foot;
182 my @loop_orders = ();
183 unless( defined $invoice->{closedate
} ) {
185 if ( $op eq "search" or $sticky_filters ) {
186 my ( $search, $ean, $basketname, $orderno, $basketgroupname );
187 if ( $sticky_filters ) {
188 $search = $input->cookie("filter_parcel_summary");
189 $ean = $input->cookie("filter_parcel_ean");
190 $basketname = $input->cookie("filter_parcel_basketname");
191 $orderno = $input->cookie("filter_parcel_orderno");
192 $basketgroupname = $input->cookie("filter_parcel_basketgroupname");
194 $search = $input->param('summaryfilter') || '';
195 $ean = $input->param('eanfilter') || '';
196 $basketname = $input->param('basketfilter') || '';
197 $orderno = $input->param('orderfilter') || '';
198 $basketgroupname = $input->param('basketgroupnamefilter') || '';
200 $pendingorders = SearchOrders
({
201 booksellerid
=> $booksellerid,
202 basketname
=> $basketname,
203 ordernumber
=> $orderno,
206 basketgroupname
=> $basketgroupname,
211 summaryfilter
=> $search,
213 basketfilter
=> $basketname,
214 orderfilter
=> $orderno,
215 basketgroupnamefilter
=> $basketgroupname,
218 $pendingorders = SearchOrders
({
219 booksellerid
=> $booksellerid,
223 my $countpendings = scalar @
$pendingorders;
225 for (my $i = 0 ; $i < $countpendings ; $i++) {
226 my $order = $pendingorders->[$i];
228 if ( $bookseller->invoiceincgst ) {
229 $order->{ecost
} = $order->{ecost_tax_included
};
231 $order->{ecost
} = $order->{ecost_tax_excluded
};
233 $order->{total
} = $order->{ecost
} * $order->{quantity
};
237 $line{invoice
} = $invoice;
238 $line{booksellerid
} = $booksellerid;
240 my $biblionumber = $line{'biblionumber'};
241 my $biblio = Koha
::Biblios
->find( $biblionumber );
242 my $countbiblio = CountBiblioInOrders
($biblionumber);
243 my $ordernumber = $line{'ordernumber'};
244 my $cnt_subscriptions = $biblio ?
$biblio->subscriptions->count: 0;
245 my $itemcount = $biblio ?
$biblio->items->count : 0;
246 my $holds_count = $biblio ?
$biblio->holds->count : 0;
247 my @items = GetItemnumbersFromOrder
( $ordernumber );
248 my $itemholds = $biblio ?
$biblio->holds->search({ itemnumber
=> { -in => \
@items } })->count : 0;
250 my $suggestion = GetSuggestionInfoFromBiblionumber
($line{biblionumber
});
251 $line{suggestionid
} = $suggestion->{suggestionid
};
252 $line{surnamesuggestedby
} = $suggestion->{surnamesuggestedby
};
253 $line{firstnamesuggestedby
} = $suggestion->{firstnamesuggestedby
};
255 # 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
256 $line{can_del_bib
} = 1 if $countbiblio <= 1 && $itemcount == scalar @items && !($cnt_subscriptions) && !($holds_count);
257 $line{items
} = ($itemcount) - (scalar @items);
258 $line{left_item
} = 1 if $line{items
} >= 1;
259 $line{left_biblio
} = 1 if $countbiblio > 1;
260 $line{biblios
} = $countbiblio - 1;
261 $line{left_subscription
} = 1 if $cnt_subscriptions;
262 $line{subscriptions
} = $cnt_subscriptions;
263 $line{left_holds
} = ($holds_count >= 1) ?
1 : 0;
264 $line{left_holds_on_order
} = 1 if $line{left_holds
}==1 && ($line{items
} == 0 || $itemholds );
265 $line{holds
} = $holds_count;
266 $line{holds_on_order
} = $itemholds?
$itemholds:$holds_count if $line{left_holds_on_order
};
267 $line{basket
} = Koha
::Acquisition
::Baskets
->find( $line{basketno
} );
269 my $budget_name = GetBudgetName
( $line{budget_id
} );
270 $line{budget_name
} = $budget_name;
272 push @loop_orders, \
%line;
276 loop_orders
=> \
@loop_orders,
281 invoiceid
=> $invoice->{invoiceid
},
282 invoice
=> $invoice->{invoicenumber
},
283 invoiceclosedate
=> $invoice->{closedate
},
284 datereceived
=> dt_from_string
,
285 name
=> $bookseller->name,
286 booksellerid
=> $bookseller->id,
287 loop_received
=> \
@loop_received,
288 loop_orders
=> \
@loop_orders,
289 book_foot_loop
=> \
@book_foot_loop,
290 (uc(C4
::Context
->preference("marcflavour"))) => 1,
291 total_tax_excluded
=> $total_tax_excluded,
292 total_tax_included
=> $total_tax_included,
293 subtotal_for_funds
=> $subtotal_for_funds,
294 sticky_filters
=> $sticky_filters,
296 output_html_with_http_headers
$input, $cookie, $template->output;