From c0b51eafddb2721de247b2f0dd3b9a33048db13d Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 15 Apr 2015 15:33:54 +0200 Subject: [PATCH] Bug 10423: Show date due with time if it's a hourly loan MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit On printing the summary from the patron account, the hours are not displayed if needed. The as_date_due flag should be set to display it correctly. Problem, GetPendingIssues modify the value retrieved from the database. In order to not add regression and check all calls to GetPendingIssues, this patch backup the value before the change. Test plan: Check some items out, specify a hourly loan for some. Click on print > print summary and confirm the date due are correctly formatted. Followed test plan. Date + time display as expected. Signed-off-by: Marc Véron Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi --- koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt | 2 +- members/summary-print.pl | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt index 1d62a239f5..92526e8a9a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt @@ -50,7 +50,7 @@ [% issue.author %] [% issue.itemcallnumber %] [% issue.itemtype_description %] - [% issue.date_due | $KohaDates %] + [% issue.date_due | $KohaDates as_due_date => 1 %] [% issue.barcode %] [% issue.charge %] [% issue.replacementprice %] diff --git a/members/summary-print.pl b/members/summary-print.pl index 39897db344..4530e14384 100755 --- a/members/summary-print.pl +++ b/members/summary-print.pl @@ -95,6 +95,8 @@ sub build_issue_data { $row{'charge'} = sprintf( "%.2f", $charge ); + $row{date_due} = $row{date_due_sql}; + push( @{$return}, \%row ); } -- 2.11.0