From 5a0c042990b610568e7de07a81591605ce572e7c Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 15 Apr 2015 15:33:54 +0200 Subject: [PATCH] [Signed-off] Bug 10423: Show date due with time if it's a hourly loan MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 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 --- C4/Members.pm | 2 ++ koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt | 2 +- members/summary-print.pl | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/C4/Members.pm b/C4/Members.pm index 4ca83b9..266dbc8 100644 --- a/C4/Members.pm +++ b/C4/Members.pm @@ -1200,6 +1200,8 @@ sub GetPendingIssues { $_->{issuedate} = dt_from_string($_->{issuedate}, 'sql'); } $_->{date_due} or next; + $_->{date_due_sql} = $_->{date_due}; + # FIXME no need to have this value $_->{date_due} = dt_from_string($_->{date_due}, 'sql'); if ( DateTime->compare($_->{date_due}, $today) == -1 ) { $_->{overdue} = 1; 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 1d62a23..92526e8 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 39897db..4530e14 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 ); } -- 1.7.10.4