Jonathan Druart
0ab22e1c7c
In order to simplify and make uniform the code, the controller scripts send a Koha::Patron object to the templates instead of all attributes of a patron. That will make the code much more easier to maintain and will be less error-prone. The variable "patron" sent to the templates is supposed to represent the patron the librarian is editing the detail. In the members module and some scripts of the circulation module, the patron's detail are sent one by one to the template. That leads to frustration from developpers (making sure everything is passed from all scripts) and to regression (we got tone of bugs in the last year because of this way to do). With this patch set it will be easy access patron's detail, passing only 1 variable from the controllers. Test plan: Play with the patron and circulation module and make sur the detail of the patron you are editing/seeing info are correctly displayed. Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
146 lines
6.1 KiB
HTML
146 lines
6.1 KiB
HTML
<fieldset class="rows" id="memberentry_address">
|
|
<legend id="alt_address_lgd">Alternate address</legend><ol>
|
|
[% UNLESS noB_streetnumber %]
|
|
<li>
|
|
[% IF ( mandatoryB_streetnumber ) %]
|
|
<label for="B_streetnumber" class="required">
|
|
[% ELSE %]
|
|
<label for="B_streetnumber">
|
|
[% END %]
|
|
Street Number: </label>
|
|
<input type="text" id="B_streetnumber" name="B_streetnumber" size="5" value="[% patron.B_streetnumber %]" />
|
|
[% IF ( mandatoryB_streetnumber ) %]<span class="required">Required</span>[% END %]
|
|
</li>
|
|
[% END %]
|
|
|
|
[% IF roadtypes %]
|
|
<li>
|
|
[% IF ( mandatoryB_streettype ) %]
|
|
<label for="B_streettype" class="required">
|
|
[% ELSE %]
|
|
<label for="B_streettype">
|
|
[% END %]
|
|
Street type: </label>
|
|
<select name="B_streettype">
|
|
<option value=""></option>
|
|
[% FOR roadtype IN roadtypes %]
|
|
[% IF roadtype.authorised_value == patron.B_streettype %]
|
|
<option value="[% roadtype.authorised_value %]" selected="selected">[% roadtype.lib %]</option>
|
|
[% ELSE %]
|
|
<option value="[% roadtype.authorised_value %]">[% roadtype.lib %]</option>
|
|
[% END %]
|
|
[% END %]
|
|
</select>
|
|
[% IF ( mandatoryB_streettype ) %]<span class="required">Required</span>[% END %]
|
|
</li>
|
|
[% END %]
|
|
|
|
[% UNLESS noB_address %]
|
|
<li>
|
|
[% IF ( mandatoryB_address ) %]
|
|
<label for="B_address" class="required">
|
|
[% ELSE %]
|
|
<label for="B_address">
|
|
[% END %]
|
|
Address: </label>
|
|
<input type="text" id="B_address" name="B_address" size="40" value="[% patron.B_address %]" />
|
|
[% IF ( mandatoryB_address ) %]<span class="required">Required</span>[% END %]
|
|
</li>
|
|
[% END %]
|
|
[% UNLESS noB_address2 %]
|
|
<li>
|
|
[% IF ( mandatoryB_address2 ) %]
|
|
<label for="B_address2" class="required">
|
|
[% ELSE %]
|
|
<label for="B_address2">
|
|
[% END %]
|
|
Address 2: </label>
|
|
<input type="text" id="B_address2" name="B_address2" size="40" value="[% patron.B_address2 %]" />
|
|
[% IF ( mandatoryB_address2 ) %]<span class="required">Required</span>[% END %]
|
|
</li>
|
|
[% END %]
|
|
[% UNLESS noB_city %]
|
|
<li>
|
|
[% IF ( mandatoryB_city ) %]
|
|
<label for="B_city" class="required" >
|
|
[% ELSE %]
|
|
<label for="B_city">
|
|
[% END %]
|
|
City: </label>
|
|
<input type="text" id="B_city" name="B_city" size="20" value="[% patron.B_city %]" />
|
|
[% IF ( mandatoryB_city ) %]<span class="required">Required</span>[% END %]
|
|
</li>
|
|
[% END %]
|
|
[% UNLESS noB_state %]
|
|
<li>
|
|
[% IF ( mandatoryB_state ) %]
|
|
<label for="B_state" class="required" >
|
|
[% ELSE %]
|
|
<label for="B_state">
|
|
[% END %]
|
|
State: </label>
|
|
<input type="text" id="B_state" name="B_state" size="20" value="[% patron.B_state %]" />
|
|
[% IF ( mandatoryB_state ) %]<span class="required">Required</span>[% END %]
|
|
</li>
|
|
[% END %]
|
|
[% UNLESS noB_zipcode %]
|
|
<li>
|
|
[% IF ( mandatoryB_zipcode ) %]
|
|
<label for="B_zipcode" class="required">
|
|
[% ELSE %]
|
|
<label for="B_zipcode">
|
|
[% END %]
|
|
ZIP/Postal code: </label>
|
|
<input type="text" id="B_zipcode" name="B_zipcode" maxlength="10" size="10" value="[% patron.B_zipcode %]" />
|
|
[% IF ( mandatoryB_zipcode ) %]<span class="required">Required</span>[% END %]
|
|
</li>
|
|
[% END %]
|
|
[% UNLESS noB_country %]
|
|
<li>
|
|
[% IF ( mandatoryB_country ) %]
|
|
<label for="B_country" class="required">
|
|
[% ELSE %]
|
|
<label for="B_country">
|
|
[% END %]
|
|
Country: </label>
|
|
<input type="text" id="B_country" name="B_country" size="20" value="[% patron.B_country %]" />
|
|
[% IF ( mandatoryB_country ) %]<span class="required">Required</span>[% END %]
|
|
</li>
|
|
[% END %]
|
|
[% UNLESS noB_phone %]
|
|
<li>
|
|
[% IF ( mandatoryB_phone ) %]
|
|
<label for="B_phone" class="required">
|
|
[% ELSE %]
|
|
<label for="B_phone">
|
|
[% END %]
|
|
Phone: </label>
|
|
<input type="text" id="B_phone" name="B_phone" value="[% patron.B_phone %]" />
|
|
[% IF ( mandatoryB_phone ) %]<span class="required">Required</span>[% END %]
|
|
</li>
|
|
[% END %]
|
|
[% UNLESS noB_email %]
|
|
<li>
|
|
[% IF ( mandatoryB_email ) %]
|
|
<label for="B_email" class="required">
|
|
[% ELSE %]
|
|
<label for="B_email">
|
|
[% END %]
|
|
Email: </label>
|
|
<input type="text" id="B_email" name="B_email" size="45" value="[% patron.B_email %]" />
|
|
[% IF ( mandatoryB_email ) %]<span class="required">Required</span>[% END %] </li>
|
|
[% END %]
|
|
[% UNLESS nocontactnote %]
|
|
<li>
|
|
[% IF ( mandatorycontactnote ) %]
|
|
<label for="contactnote" class="required">
|
|
[% ELSE %]
|
|
<label for="contactnote">
|
|
[% END %]
|
|
Contact note: </label>
|
|
<textarea id="contactnote" name="contactnote" cols="40" rows="2">[% contactnote %]</textarea>
|
|
[% IF ( mandatorycontactnote ) %]<span class="required">Required</span>[% END %]
|
|
</li>
|
|
[% END %]
|
|
</ol>
|
|
</fieldset>
|