Lines 47-53
use C4::Biblio;
Link Here
|
47 |
use C4::Output; |
47 |
use C4::Output; |
48 |
use CGI qw ( -utf8 ); |
48 |
use CGI qw ( -utf8 ); |
49 |
use C4::Acquisition qw( SearchOrders ); |
49 |
use C4::Acquisition qw( SearchOrders ); |
50 |
use C4::Dates qw/format_date/; |
50 |
use Koha::DateUtils; |
51 |
|
51 |
|
52 |
use Koha::Acquisition::Bookseller; |
52 |
use Koha::Acquisition::Bookseller; |
53 |
|
53 |
|
Lines 79-86
for my $s (@suppliers) {
Link Here
|
79 |
basketno => $ord->{'basketno'}, |
79 |
basketno => $ord->{'basketno'}, |
80 |
total => $ord->{'count(*)'}, |
80 |
total => $ord->{'count(*)'}, |
81 |
authorisedby => $ord->{'authorisedby'}, |
81 |
authorisedby => $ord->{'authorisedby'}, |
82 |
creationdate => format_date($ord->{'creationdate'}), |
82 |
creationdate => output_pref( { str => $ord->{'creationdate'} } ), |
83 |
closedate => format_date($ord->{'closedate'}), |
83 |
closedate => output_pref( { str => $ord->{'closedate'} } ), |
84 |
}; |
84 |
}; |
85 |
} |
85 |
} |
86 |
push @{$loop_suppliers}, { |
86 |
push @{$loop_suppliers}, { |