@@ -, +, @@ type editable - Apply patch - Edit a patron's details - Verify that in edit mode for Alternate address, the fields 'street type' and 'street number' appear and follow the settings in sysprefs AddressFormat, BorrowerMandatoryField, BorrowerUnwantedField - Verify that the values are saved correctly. --- .../en/includes/member-alt-address-style-de.inc | 36 ++++++++++++++++++++ .../en/includes/member-alt-address-style-us.inc | 35 +++++++++++++++++++ 2 files changed, 71 insertions(+) --- a/koha-tmpl/intranet-tmpl/prog/en/includes/member-alt-address-style-de.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/member-alt-address-style-de.inc @@ -12,6 +12,42 @@ [% IF ( mandatoryB_address ) %]Required[% END %] [% END %] + + [% IF roadtypes %] +
  • + [% IF ( mandatoryB_streettype ) %] +
  • + [% END %] + + [% UNLESS noB_streetnumber %] +
  • + [% IF ( mandatoryB_streetnumber ) %] +
  • + [% END %] + [% UNLESS noB_address2 %]
  • [% IF ( mandatoryB_address2 ) %] --- a/koha-tmpl/intranet-tmpl/prog/en/includes/member-alt-address-style-us.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/member-alt-address-style-us.inc @@ -1,5 +1,40 @@
    Alternate address
      + [% UNLESS noB_streetnumber %] +
    1. + [% IF ( mandatoryB_streetnumber ) %] +
    2. + [% END %] + + [% IF roadtypes %] +
    3. + [% IF ( mandatoryB_streettype ) %] +
    4. + [% END %] + [% UNLESS noB_address %]
    5. [% IF ( mandatoryB_address ) %] --