From 09c4d12d73194aeeb3d26ff3df33edb1ee467002 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 20 May 2014 13:39:26 +0200 Subject: [PATCH] Bug 12274: Invoice detail: don't crash on certain billing dates Bug 10613 sent the billingdate as a string. The template wants a DateTime object. To reproduce: 1/ Go on a invoice detail page 2/ Select a billing date 3/ Boom without the patch [Tue May 20 13:39:18 2014] invoice.pl: Template process failed: undef error - The 'day' parameter ("2014") to DateTime::new did not pass the 'an integer which is a possible valid day of month' callback. Signed-off-by: Jonathan Druart Signed-off-by: Katrin Fischer Not all dates will make it go 'boom' but 31/07/2014 did. Signed-off-by: Galen Charlton --- acqui/invoice.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acqui/invoice.pl b/acqui/invoice.pl index 84b7834376..18e94d99ec 100755 --- a/acqui/invoice.pl +++ b/acqui/invoice.pl @@ -150,7 +150,7 @@ $template->param( suppliername => $details->{'suppliername'}, booksellerid => $details->{'booksellerid'}, datereceived => $details->{'datereceived'}, - billingdate => C4::Dates->new($details->{'billingdate'}, "iso")->output(), + billingdate => $details->{'billingdate'}, invoiceclosedate => $details->{'closedate'}, shipmentcost => $details->{'shipmentcost'}, orders_loop => \@orders_loop, -- 2.39.2