From e3dd7cd362500da65bf279b118a0ab6b6e059a9d Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Mon, 14 Jan 2019 06:21:39 +0000 Subject: [PATCH] Bug 19770: Add cardnumber and CSS classed to patron info on waiting holds Patch makes use fo patron-string.inc for displaying the patron information on the waiting holds report. It also adds spans with classes for phone and email. To Test: 1 - View the holds awaiting pickup report 2 - Note there is no cardnumber for the patron 3 - Apply patch 4 - Cardnumber shows now 5 - Verify the same works for 'Holds over' tab Signed-off-by: Maryse Simard --- koha-tmpl/intranet-tmpl/prog/en/includes/waiting_holds.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/waiting_holds.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/waiting_holds.inc index edfea09..05ecfee 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/waiting_holds.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/waiting_holds.inc @@ -28,11 +28,11 @@ [% END %]
Barcode: [% reserveloo.item.barcode | html %] - [% reserveloo.borrower.surname | html %], [% reserveloo.borrower.firstname | html %] - [% IF ( reserveloo.borrower.phone ) %]
[% reserveloo.borrower.phone | html %][% END %] + [% INCLUDE 'patron-title.inc' patron=reserveloo.borrower %] + [% IF ( reserveloo.borrower.phone ) %]
[% reserveloo.borrower.phone | html %][% END %] [% IF ( reserveloo.borrower.first_valid_email_address ) %] -
- [% reserveloo.borrower.first_valid_email_address | html %] +
+ [% reserveloo.borrower.first_valid_email_address | html %]
[% END %] [% Branches.GetName( reserveloo.item.homebranch ) | html %] -- 2.7.4