@@ -, +, @@ information' in memberentry.pl --- .../intranet-tmpl/prog/en/modules/members/memberentrygen.tt | 10 +++++----- koha-tmpl/intranet-tmpl/prog/js/members.js | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt @@ -386,8 +386,8 @@ [% ELSE %]
  • - Patron #: - [% r.guarantor_id | html %] + Patron card number: + [% r.guarantor.cardnumber | html %]
  • [% IF r.guarantor.surname %] @@ -421,8 +421,8 @@
    1. - Patron #: - [% guarantor.borrowernumber | html %] + Patron card number: + [% guarantor.cardnumber | html %]
    2. @@ -457,7 +457,7 @@
      1. - Patron #: + Patron card number:
      2. --- a/koha-tmpl/intranet-tmpl/prog/js/members.js +++ a/koha-tmpl/intranet-tmpl/prog/js/members.js @@ -181,7 +181,7 @@ function select_user(borrowernumber, borrower, relationship) { var guarantor_id = $('#guarantor_id').val(); if ( guarantor_id ) { fieldset.find('.new_guarantor_id').first().val( guarantor_id ); - fieldset.find('.new_guarantor_id_text').first().text( guarantor_id ); + fieldset.find('.new_guarantor_id_text').first().text( borrower.cardnumber ); } else { fieldset.find('.guarantor_id').first().hide(); } --