Bug 18789: (QA follow-up) Fix loading saved address data to edit patron form
authorJosef Moravec <josef.moravec@gmail.com>
Fri, 16 Feb 2018 09:01:26 +0000 (09:01 +0000)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Fri, 16 Feb 2018 16:03:58 +0000 (13:03 -0300)
Test plan:
1) Have patron with address filled in
2) Edit the patron
-- without this patch the fields for address are blank
-- with patch the fields are filled with actual data

Signed-off-by: Josef Moravec <josef.moravec@gmail.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

members/memberentry.pl

index 228bc5e..35c6ff0 100755 (executable)
@@ -760,6 +760,7 @@ $template->param(
 $guarantorid = $borrower_data->{'guarantorid'} || $guarantorid;
 my $guarantor = $guarantorid ? Koha::Patrons->find( $guarantorid ) : undef;
 $template->param(
+  patron => $patron, # Used by address include templates now
   nodouble  => $nodouble,
   borrowernumber  => $borrowernumber, #register number
   guarantor   => $guarantor,