@@ -, +, @@ / moremember.tt the Details page for that patron, the 'Edit' link in the toolbar does not pass the guarantor's id in the URL (...&guarantorid=&...). under 'Guarantor') again does not include the guarantor id in the URL. the drop down menu. Enter the Surname, First name, and Date of birth of the patron you used in step 1). This triggers the 'Duplicate patron record?' warning -- click on 'View existing record' and notice how the guarantor information is missing. is showing. --- koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-brief.tt | 4 ++-- koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc @@ -134,7 +134,7 @@ function searchToHold(){
[% IF ( CAN_user_borrowers ) %] [% IF ( guarantor ) %] - + [% ELSE %] [% END %] --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-brief.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-brief.tt @@ -52,8 +52,8 @@
  • Guarantees:
  • [% END %] [% ELSE %] - [% IF ( guarantorborrowernumber ) %] -
  • Guarantor:[% guarantorsurname %], [% guarantorfirstname %]
  • + [% IF ( guarantor.borrowernumber ) %] +
  • Guarantor:[% guarantor.surname %], [% guarantor.firstname %]
  • [% END %] [% END %] --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt @@ -272,8 +272,8 @@ function validate1(date) {
    - [% IF ( guarantorborrowernumber ) %] - Edit + [% IF ( guarantor.borrowernumber ) %] + Edit [% ELSE %] Edit [% END %]
    --