X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=circ%2Fbranchoverdues.pl;h=c81547ed4328c588055394ebedfe60b01017ff7e;hb=9c5e40e4923179bf0b2b630d3e09797dc4c1fdb0;hp=5c1dcafea65449278d6219a8e517c547cbc7088f;hpb=f75f964ba40b7bdd1911842bc43b4df095aee583;p=koha.git diff --git a/circ/branchoverdues.pl b/circ/branchoverdues.pl index 5c1dcafea6..c81547ed43 100755 --- a/circ/branchoverdues.pl +++ b/circ/branchoverdues.pl @@ -22,12 +22,13 @@ use C4::Context; use CGI; use C4::Output; use C4::Auth; -use C4::Dates qw/format_date/; use C4::Overdues; # AddNotifyLine use C4::Biblio; use C4::Koha; use C4::Debug; use C4::Branch; +use Koha::DateUtils; +use Data::Dumper; =head1 branchoverdues.pl @@ -97,7 +98,6 @@ elsif ( $input->param('action') eq 'remove' ) { my @overduesloop; my @getoverdues = GetOverduesForBranch( $default, $location ); -use Data::Dumper; $debug and warn "HERE : $default / $location" . Dumper(@getoverdues); # search for location authorised value my ($tag,$subfield) = GetMarcFromKohaField('items.location',''); @@ -114,7 +114,8 @@ foreach my $num (@getoverdues) { if ($record){ $overdueforbranch{'subtitle'} = GetRecordValue('subtitle',$record,'')->[0]->{subfield}; } - $overdueforbranch{'date_due'} = format_date( $num->{'date_due'} ); + my $dt = dt_from_string($num->{date_due}, 'sql'); + $overdueforbranch{'date_due'} = output_pref($dt); $overdueforbranch{'title'} = $num->{'title'}; $overdueforbranch{'description'} = $num->{'description'}; $overdueforbranch{'barcode'} = $num->{'barcode'}; @@ -151,7 +152,6 @@ foreach my $num (@getoverdues) { # initiate the templates for the overdueloop $template->param( overduesloop => \@overduesloop, - show_date => format_date(C4::Dates->today('iso')), location => $location, );