From c5da1786c548bd574f56a0888910eb8a6730d1a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20V=C3=A9ron?= Date: Tue, 14 Jun 2016 10:14:29 +0200 Subject: [PATCH] Bug 10760: Alternate Address: Make street number and street type editable Table 'borrowers' contain columns B_streetnumber and B_streettype. This patch makes them editable for alternate address. To test: - 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. Note: A second patch will follow to manage the display of street number and street type Signed-off-by: Owen Leonard Signed-off-by: Kyle M Hall --- .../en/includes/member-alt-address-style-de.inc | 36 ++++++++++++++++++++++ .../en/includes/member-alt-address-style-us.inc | 35 +++++++++++++++++++++ 2 files changed, 71 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/member-alt-address-style-de.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/member-alt-address-style-de.inc index 3893497..43385f2 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/member-alt-address-style-de.inc +++ b/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 ) %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/member-alt-address-style-us.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/member-alt-address-style-us.inc index e6b31ff..7c4adbd 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/member-alt-address-style-us.inc +++ b/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 ) %] -- 2.1.4