X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=acqui%2Fparcels.pl;h=c0a330b4794cd5a9592894b922d7ed47d82a61ec;hb=f7d160efcc4c631ab634bf660f834f4053482d37;hp=ffcbb66bbf3a2595230e806f1aa2de4b05a5ea97;hpb=94029916cc8a1ac81e5c344aff32bcb656e94094;p=koha.git diff --git a/acqui/parcels.pl b/acqui/parcels.pl index ffcbb66bbf..c0a330b479 100755 --- a/acqui/parcels.pl +++ b/acqui/parcels.pl @@ -29,7 +29,7 @@ parcels.pl =head1 DESCRIPTION This script shows all orders/parcels receipt or pending for a given supplier. -It allows to write an order/parcels as 'received' when he arrives. +It allows to write an order/parcels as 'received' when it arrives. =head1 CGI PARAMETERS @@ -66,8 +66,7 @@ To know how many results have to be display / page. =cut -use strict; -use warnings; +use Modern::Perl; use CGI qw ( -utf8 ); use C4::Auth; use C4::Output; @@ -75,7 +74,7 @@ use C4::Output; use C4::Acquisition; use C4::Budgets; -use Koha::Acquisition::Bookseller; +use Koha::Acquisition::Booksellers; use Koha::DateUtils qw( output_pref dt_from_string ); my $input = CGI->new; @@ -139,7 +138,7 @@ if ($op and $op eq 'confirm') { } } -my $bookseller = Koha::Acquisition::Bookseller->fetch({ id => $booksellerid }); +my $bookseller = Koha::Acquisition::Booksellers->find( $booksellerid ); my @parcels = GetInvoices( supplierid => $booksellerid, invoicenumber => $code, @@ -203,7 +202,7 @@ $template->param( datefrom => $datefrom, dateto => $dateto, resultsperpage => $resultsperpage, - name => $bookseller->{'name'}, + name => $bookseller->name, shipmentdate_today => dt_from_string, booksellerid => $booksellerid, GST => C4::Context->preference('gist'),