View | Details | Raw Unified | Return to bug 31890
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/patrons.pref (+1 lines)
Lines 301-306 Patrons: Link Here
301
         - "When adding a guarantee to a guarantor patron fill the following fields in the guarantee's member entry form from the guarantors record:"
301
         - "When adding a guarantee to a guarantor patron fill the following fields in the guarantee's member entry form from the guarantors record:"
302
         - pref: PrefillGuaranteeField
302
         - pref: PrefillGuaranteeField
303
           multiple:
303
           multiple:
304
               surname: "Surname"
304
               B_streettype: "Alternate address - Street type"
305
               B_streettype: "Alternate address - Street type"
305
               B_address: "Alternate address - Address"
306
               B_address: "Alternate address - Address"
306
               B_address2: "Alternate address - Address 2"
307
               B_address2: "Alternate address - Address 2"
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt (-3 / +2 lines)
Lines 318-326 legend:hover { Link Here
318
                                                    [% END %]
318
                                                    [% END %]
319
319
320
                                                    [% IF ( uppercasesurnames ) %]
320
                                                    [% IF ( uppercasesurnames ) %]
321
                                                        <input style="text-transform:uppercase;" type="text" id="surname" name="surname" size="20"  value="[% borrower_data.surname | html %]" />
321
                                                        <input style="text-transform:uppercase;" type="text" id="surname" name="surname" size="20"  value="[% patron.surname | html %]" />
322
                                                    [% ELSE %]
322
                                                    [% ELSE %]
323
                                                        <input type="text" id="surname" name="surname" size="20"  value="[% borrower_data.surname | html %]" />
323
                                                        <input type="text" id="surname" name="surname" size="20"  value="[% patron.surname | html %]" />
324
                                                    [% END %]
324
                                                    [% END %]
325
                                                    [% IF ( mandatorysurname ) %]
325
                                                    [% IF ( mandatorysurname ) %]
326
                                                        <span class="required">Required</span>
326
                                                        <span class="required">Required</span>
327
- 

Return to bug 31890