@@ -, +, @@ --- C4/Utils/DataTables/Members.pm | 2 +- koha-tmpl/intranet-tmpl/prog/en/includes/circ-patron-search-results.inc | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) --- a/C4/Utils/DataTables/Members.pm +++ a/C4/Utils/DataTables/Members.pm @@ -39,7 +39,7 @@ sub search { borrowers.borrowernotes, borrowers.branchcode, borrowers.email, borrowers.userid, borrowers.dateofbirth, borrowers.categorycode, categories.description AS category_description, categories.category_type, - branches.branchname"; + branches.branchname, borrowers.phone"; my $from = "FROM borrowers LEFT JOIN branches ON borrowers.branchcode = branches.branchcode LEFT JOIN categories ON borrowers.categorycode = categories.categorycode"; --- a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-patron-search-results.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-patron-search-results.inc @@ -19,6 +19,7 @@ Category Library Address + Primary phone @@ -34,6 +35,7 @@ [% Categories.GetName( borrower.categorycode ) %] [% Branches.GetName( borrower.branchcode ) %] [% borrower.address %] + [% borrower.phone %] [% END %] --