1 [% IF ( opduplicate ) %][% SET focusAction = "clearDupe" %][% END %]
3 [% INCLUDE 'doc-head-open.inc' %]
4 <title>Koha › Patrons ›
5 [% IF ( opadd ) %]Add[% ELSIF ( opduplicate ) %]Duplicate[% ELSE %] Modify[% END %] [% IF ( categoryname ) %] [% categoryname %] patron[% ELSE %][% IF ( I ) %] Organization patron[% END %][% IF ( A ) %] Adult patron[% END %][% IF ( C ) %] Child patron[% END %][% IF ( P ) %] Professional patron[% END %][% IF ( S ) %] Staff patron[% END %][% END %][% UNLESS ( opadd ) %] [% surname %], [% firstname %][% END %]</title>
6 [% INCLUDE 'doc-head-close.inc' %]
7 [% INCLUDE 'calendar.inc' %]
8 <script type="text/javascript">
10 $(document).ready(function() {
11 $("fieldset.rows input, fieldset.rows select").addClass("noEnterSubmit");
12 $("#guarantordelete").click(function() {
13 $("#contact-details").hide().find('a').remove();
14 $("#guarantorid, #contactname, #contactfirstname").each(function () { this.value = "" });
15 $("#contactname, #contactfirstname")
16 .each(function () { this.type = 'text' })
17 .parent().find('span').remove();
18 $("#guarantorsearch").val("Set to Patron");
20 $("#select_city").change(function(){
21 var myRegEx=new RegExp(/(.*)\|(.*)\|(.*)\|(.*)/);
22 document.form.select_city.value.match(myRegEx);
23 document.form.zipcode.value=RegExp.$1;
24 document.form.city.value=RegExp.$2;
25 document.form.state.value=RegExp.$3;
26 document.form.country.value=RegExp.$4;
28 $(".clearDupe").on("focus",function(){
33 update_category_code( "[% categorycode %]" );
35 if ( $("#categorycode").length > 0 ){
36 var category_code = $("#categorycode").find("option:selected").val();
37 update_category_code( category_code );
40 $("#dateofbirth").datepicker({ maxDate: "-1D" });
41 $("#entryform").validate({
42 submitHandler: function(form) {
43 $("body, form input[type='submit'], form button[type='submit'], form a").addClass('waiting');
44 if (form.beenSubmitted)
47 form.beenSubmitted = true;
52 var mrform = $("#manual_restriction_form");
53 var mrlink = $("#add_manual_restriction");
55 mrlink.on("click",function(e){
60 $("#cancel_manual_restriction").on("click",function(e){
61 $('#debarred_expiration').val('');
62 $('#add_debarment').val(0);
63 $('#debarred_comment').val('');
70 function clear_entry(node) {
71 var original = $(node).parent();
72 $("textarea", original).attr('value', '');
73 $("select", original).attr('value', '');
76 function clone_entry(node) {
77 var original = $(node).parent();
78 var clone = original.clone();
80 var newId = 50 + parseInt(Math.random() * 100000);
81 $("input,select,textarea", clone).attr('id', function() {
82 return this.id.replace(/patron_attr_\d+/, 'patron_attr_' + newId);
84 $("input,select,textarea", clone).attr('name', function() {
85 return this.name.replace(/patron_attr_\d+/, 'patron_attr_' + newId);
87 $("label", clone).attr('for', function() {
88 return $(this).attr("for").replace(/patron_attr_\d+/, 'patron_attr_' + newId);
90 $("input#patron_attr_" + newId, clone).attr('value','');
91 $("select#patron_attr_" + newId, clone).attr('value','');
92 $(original).after(clone);
96 function update_category_code(category_code) {
97 if ( $(category_code).is("select") ) {
98 category_code = $("#categorycode").find("option:selected").val();
100 var mytables = $(".attributes_table");
101 $(mytables).find("li").hide();
102 $(mytables).find(" li[data-category_code='"+category_code+"']").show();
103 $(mytables).find(" li[data-category_code='']").show();
106 var MSG_SEPARATOR = _("Separator must be / in field %s");
107 var MSG_INCORRECT_DAY = _("Invalid day entered in field %s");
108 var MSG_INCORRECT_MONTH = _("Invalid month entered in field %s");
109 var MSG_INCORRECT_YEAR = _("Invalid year entered in field %s");
110 var MSG_DUPLICATE_PATRON = _("Warning: Duplicate patron");
111 var MSG_DUPLICATE_ORGANIZATION = _("Warning: Duplicate organization");
112 var MSG_LATE_EXPIRY = _("Warning: Expiration date falls before enrollment date");
113 var MSG_DUPLICATE_SUSPICION = _("Please confirm whether this is a duplicate patron");
114 var MSG_PASSWORD_MISMATCH = _("The passwords entered do not match");
117 <script type="text/javascript" src="[% themelang %]/js/members.js"></script>
119 <body id="pat_memberentrygen" class="pat">
120 [% INCLUDE 'header.inc' %]
121 [% INCLUDE 'patron-search.inc' %]
123 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a> ›
125 Add[% IF ( categoryname ) %] [% categoryname %] patron[% ELSE %][% IF ( I ) %] Organization patron[% END %][% IF ( A ) %] Adult patron[% END %][% IF ( C ) %] Child patron[% END %][% IF ( P ) %] Professional patron[% END %][% IF ( S ) %] Staff patron[% END %][% END %]
126 [% surname %] [% firstname %]
128 <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% borrowernumber %]">[% firstname %] [% surname %]</a> › <strong>[% IF ( opduplicate ) %]Duplicate[% ELSE %]Modify[% END %][% IF ( categoryname ) %] [% categoryname %] patron[% ELSE %][% IF ( I ) %] Organization patron[% END %][% IF ( A ) %] Adult patron[% END %][% IF ( C ) %] Child patron[% END %][% IF ( P ) %] Professional patron[% END %][% IF ( S ) %] Staff patron[% END %][% END %]
129 </strong>[% END %]</div>
130 [% IF ( opadd ) %]<div id="doc" class="yui-t7">[% ELSE %]<div id="doc3" class="yui-t2">[% END %]
136 [% IF ( error_alert == "no_email" ) %]
137 <div class="error">This member has no email</div>
139 <div class="error">[% error_alert %]</div>
143 <div class="dialog message">Email has been sent.</div>
146 [% IF ( no_add ) %]<div class="dialog alert"><h3>Cannot add patron</h3>
147 [% IF ( no_branches ) %]<p>There are <strong>no libraries defined</strong>. [% IF ( CAN_user_parameters ) %]Please <a href="/cgi-bin/koha/admin/branches.pl">add a library</a>.[% ELSE %]An administrator must define at least one library.[% END %]</p>[% END %]
148 [% IF ( no_categories ) %]<p>There are <strong>no patron categories defined</strong>. [% IF ( CAN_user_parameters ) %]Please <a href="/cgi-bin/koha/admin/categorie.pl">add a patron category</a>.[% ELSE %]An administrator must define at least one patron category.</p>[% END %][% END %]</div>[% END %]
150 [% UNLESS ( no_add ) %]
153 Add[% IF ( categoryname ) %] [% categoryname %] patron[% ELSE %][% IF ( I ) %] Organization patron[% END %][% IF ( A ) %] Adult patron[% END %][% IF ( C ) %] Child patron[% END %][% IF ( P ) %] Professional patron[% END %][% IF ( S ) %] Staff patron[% END %][% END %] [% firstname %] [% surname %]
157 [% IF ( opduplicate ) %]Duplicate[% ELSE %]Modify[% END %][% IF ( categoryname ) %] [% categoryname %] patron[% ELSE %][% IF ( I ) %] Organization patron[% END %][% IF ( A ) %] Adult patron[% END %][% IF ( C ) %] Child patron[% END %][% IF ( P ) %] Professional patron[% END %][% IF ( S ) %] Staff patron[% END %][% END %]
158 [% firstname %] [% surname %]
162 [% IF ( check_member ) %]
163 <div class="dialog alert">
164 <h3>Duplicate patron record?</h3>
165 <p><a class="popup" href="javascript:Dopop('moremember.pl?print=brief&borrowernumber=[% check_member %]');" >View existing record</a></p>
166 <form action="/cgi-bin/koha/members/memberentry.pl" method="get"><input type="hidden" name="op" value="modify" /><input type="hidden" name="borrowernumber" value="[% check_member %]" /><input type="hidden" name="category_type" value="[% check_categorytype %]" /><input class="edit" type="submit" value="It is a duplicate. Edit existing record" /></form>
168 <form name="form_double" action="/cgi-bin/koha/members/memberentry.pl" method="post" autocomplete="off">
169 <input type="hidden" name="nodouble" value="1" />
170 <input class="new" type="submit" value="Not a duplicate. Save as new record" />
175 <div class="dialog alert">
176 <p>The following fields are wrong. Please fix them.</p>
178 [% IF ( ERROR_login_exist ) %]
179 <li id="ERROR_login_exist">Username/password already exists.</li>
181 [% IF ERROR_cardnumber_already_exists %]
182 <li id="ERROR_cardnumber">Cardnumber already in use.</li>
184 [% IF ERROR_cardnumber_length %]
185 <li id="ERROR_cardnumber">Cardnumber length is incorrect.</li>
187 [% IF ( ERROR_age_limitations ) %]
188 <li id="ERROR_age_limitations">Patron's age is incorrect for their category.
189 Ages allowed are [% age_low %]-[% age_high %].</li>
191 [% IF ( ERROR_branch ) %]
192 <li id="ERROR_branch">Library is invalid.</li>
194 [% IF ( ERROR_dateofbirth ) %]
195 <li id="ERROR_dateofbirth">Date of birth is invalid.</li>
197 [% IF ( ERROR_dateenrolled ) %]
198 <li id="ERROR_dateenrolled">Date of enrollment is invalid.</li>
200 [% IF ( ERROR_dateexpiry ) %]
201 <li id="ERROR_dateexpiry">Date of expiration is invalid.</li>
203 [% IF ( ERROR_short_password ) %]
204 <li id="ERROR_short_password">Password must be at least [% minPasswordLength %] characters long.</li>
206 [% IF ( ERROR_password_mismatch ) %]
207 <li id="ERROR_password_mismatch">Passwords do not match.</li>
209 [% IF ( ERROR_extended_unique_id_failed ) %]
210 <li id="ERROR_extended_unique_id_failed">The attribute value
211 [% ERROR_extended_unique_id_failed_value %] is already in use by another patron record.</li>
218 [% UNLESS ( check_member ) %]<form name="form" id="entryform" action="/cgi-bin/koha/members/memberentry.pl" method="post" autocomplete="off">
219 <input type="hidden" name="nodouble" value="[% nodouble %]" /> [% END %]
220 <!-- field always hidden in different form (1,2,3) -->
221 <input type="hidden" name="BorrowerMandatoryField" value="[% BorrowerMandatoryField %]" />
222 <input type="hidden" name="category_type" value="[% category_type %]" />
223 <input type="hidden" name="updtype" value="[% updtype %]" />
224 <input type="hidden" name="destination" value="[% destination %]" />
225 <input type="hidden" name="check_member" value="[% check_member %]" />
226 <input type="hidden" name="borrowernumber" value="[% IF ( opduplicate ) %][% ELSE %][% borrowernumber %][% END %]" />
227 <input type="hidden" name="nodouble" value="[% IF ( opduplicate ) %][% ELSE %][% nodouble %][% END %]" />
228 [% IF ( step ) %]<input type="hidden" name="step" value="[% step %]" />[% END %]
229 [% IF ( opadd ) %]<input type="hidden" name="op" value="insert" />
230 [% ELSIF ( opduplicate ) %]
231 <input type="hidden" name="op" value="insert" />
233 <input type="hidden" name="op" value="save" />
234 [% IF step == 4 || step == 5 || step == 6 || step == 2 || step == 1 %]
235 [%# Only put the cardnumber if we arent showing it in the form later %]
237 <input type="hidden" name="cardnumber" value="[% cardnumber %]" />
243 [%UNLESS notitle && nosurname && nofirstname && nodateofbirth && noinitials && noothernames &&nosex %]
244 <fieldset class="rows" id="memberentry_identity">
245 <legend id="identity_lgd">[% IF ( I ) %]Organization [% ELSE %]Patron [% END %]identity</legend>
249 [% IF ( title_cgipopup ) %]
251 [% IF ( mandatorytitle ) %]
252 <label for="btitle" class="required">
257 [% borrotitlepopup %]
258 [% IF ( mandatorytitle ) %]<span class="required">Required</span>[% END %]
263 [% UNLESS nosurname %]
265 [% IF ( mandatorysurname ) %]
266 <label for="surname" class="required">
268 <label for="surname">
271 [% IF ( uppercasesurnames ) %]
272 <input style="text-transform:uppercase;" type="text" id="surname" name="surname" size="20" value="[% surname %]" class="[% focusAction %]" />
274 <input type="text" id="surname" name="surname" size="20" value="[% surname %]" class="[% focusAction %]" />
276 [% IF ( mandatorysurname ) %]<span class="required">Required</span>[% END %]
280 [% UNLESS nofirstname %]
282 [% IF ( mandatoryfirstname ) %]
283 <label for="firstname" class="required">
285 <label for="firstname">
288 <input type="text" id="firstname" name="firstname" size="20" value="[% IF ( opduplicate ) %][% ELSE %][% firstname %][% END %]" />
289 [% IF ( mandatoryfirstname ) %]<span class="required">Required</span>[% END %]
292 [% UNLESS nodateofbirth %]
294 [% IF ( mandatorydateofbirth ) %]
295 <label for="dateofbirth" class="required">
297 <label for="dateofbirth">
299 Date of birth: </label>
301 [% IF ( dateformat == "metric" ) %]
302 <input type="text" id="dateofbirth" name="dateofbirth" size="20" onchange="CheckDate(document.form.dateofbirth);" value="[% IF ( opduplicate ) %][% ELSE %][% dateofbirth %][% END %]" />
304 <input type="text" id="dateofbirth" name="dateofbirth" size="20" value="[% IF ( opduplicate ) %][% ELSE %][% dateofbirth %][% END %]" />
307 [% IF ( mandatorydateofbirth ) %]<span class="required">Required</span>[% END %]
308 [% IF ( ERROR_dateofbirth ) %]<span class="required">(Error)</span>[% END %]
309 <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
312 [% UNLESS noinitials %]
314 [% IF ( mandatoryinitials ) %]
315 <label for="initials" class="required">
317 <label for="initials">
320 <input type="text" id="initials" name="initials" size="20" value="[% initials %]" class="[% focusAction %]" />
321 [% IF ( mandatoryinitials ) %]<span class="required">Required</span>[% END %]
325 [% UNLESS noothernames %]
327 [% IF ( mandatoryothernames ) %]
328 <label for="othernames" class="required">
330 <label for="othernames">
333 <input type="text" id="othernames" name="othernames" size="20" value="[% othernames %]" class="[% focusAction %]" />
334 [% IF ( mandatoryothernames ) %]<span class="required">Required</span>[% END %]
335 [% IF ( I ) %]<input type="hidden" name="sex" value="N" />[% END %]
343 <label for="sex-female">Female </label><input type="radio" name="sex" id="sex-female" value="F" checked="checked" />
345 <label for="sex-female">Female </label><input type="radio" name="sex" id="sex-female" value="F" />
348 <label for="sex-male">Male </label><input type="radio" name="sex" id="sex-male" value="M" checked="checked" />
350 <label for="sex-male">Male </label><input type="radio" name="sex" id="sex-male" value="M" />
353 <label for="sex-none">N/A </label><input type="radio" name="sex" id="sex-none" value="" checked="checked" />
355 <label for="sex-none">N/A </label><input type="radio" name="sex" id="sex-none" value="" />
362 [% END # hide fieldset %]
364 [% IF ( showguarantor ) %]<input type="hidden" id="guarantorid" name="guarantorid" value="[% guarantorid %]" />
365 <fieldset class="rows">
366 <legend>Guarantor information</legend>
369 [% IF ( guarantorid ) %]
370 <li id="contact-details">
372 <li id="contact-details" style="display: none">
374 <span class="label">Organization #:</span> [% IF ( guarantorid ) %] <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% guarantorid %]" target="blank">[% guarantorid %]</a>[% END %]
377 <label for="contactname">Organization name: </label>
378 [% IF ( guarantorid ) %]
379 <span>[% contactname %]</span>
380 <input name="contactname" id="contactname" type="hidden" size="20" value="[% contactname %]" />
382 <input name="contactname" id="contactname" type="text" size="20" value="[% contactname %]" class="[% focusAction %]" />
387 [% IF ( guarantorid ) %]
388 <li id="contact-details">
390 <li id="contact-details" style="display: none">
392 <span class="label">Patron #:</span> [% IF ( guarantorid ) %] <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% guarantorid %]" target="blank">[% guarantorid %]</a>[% END %]
394 [% UNLESS nocontactname %]
396 <label for="contactname">Surname: </label>
397 [% IF ( guarantorid ) %]
398 <span>[% contactname %]</span>
399 <input name="contactname" id="contactname" type="hidden" size="20" value="[% contactname %]" />
401 <input name="contactname" id="contactname" type="text" size="20" value="[% contactname %]" class="[% focusAction %]" />
405 [% UNLESS nocontactfirstname %]
407 <label for="contactfirstname">First name: </label>
408 [% IF ( guarantorid ) %]
409 <span>[% contactfirstname %]</span>
410 <input name="contactfirstname" id="contactfirstname" type="hidden" size="20" value="[% contactfirstname %]" />
412 <input name="contactfirstname" id="contactfirstname" type="text" size="20" value="[% contactfirstname %]" class="[% focusAction %]" />
416 [% IF ( relshiploop ) %]
418 <label for="relationship">Relationship: </label>
419 <select name="relationship" id="relationship" >
420 [% FOREACH relshiploo IN relshiploop %]
421 [% IF ( relshiploo.selected ) %]
422 <option value="[% relshiploo.relationship %]" selected="selected" >[% relshiploo.relationship %]</option>
424 <option value="[% relshiploo.relationship %]">[% relshiploo.relationship %]</option>
433 <span class="label"> </span>
434 [% IF ( guarantorid ) %]
435 <input id="guarantorsearch" type="button" value="Change" onclick="Dopopguarantor('guarantor_search.pl?category_type=[% category_type %]');" />
437 <input id="guarantorsearch" type="button" value="Set to patron" onclick="Dopopguarantor('guarantor_search.pl?category_type=[% category_type %]');" />
439 <input id="guarantordelete" type="button" value="Delete" />
445 [% UNLESS noaddress && noaddress2 && nocity && nostate && nozipcode && nocountry %]
446 <fieldset class="rows" id="memberentry_mainaddress">
447 <legend id="main_address_lgd">Main address</legend><ol>
448 [% UNLESS nostreetnumber %]
450 [% IF ( mandatorystreetnumber ) %]
451 <label for="streetnumber" class="required">
453 <label for="streetnumber">
455 Street number: </label>
456 <input type="text" id="streetnumber" name="streetnumber" size="5" value="[% streetnumber %]" class="[% focusAction %]" />
457 [% IF ( mandatorystreetnumber ) %]<span class="required">Required</span>[% END %]
460 [% UNLESS nostreettype %]
463 [% IF ( mandatorystreettype ) %]
464 <label for="streettype" class="required">
466 <label for="streettype">
468 Street type: </label>
469 <select name="streettype">
470 <option value=""></option>
471 [% FOR roadtype IN roadtypes %]
472 [% IF roadtype.selected %]
473 <option value="[% roadtype.authorised_value %]" selected="selected">[% roadtype.lib %]</option>
475 <option value="[% roadtype.authorised_value %]">[% roadtype.lib %]</option>
479 [% IF ( mandatorystreettype ) %]<span class="required">Required</span>[% END %]
483 [% UNLESS noaddress %]
485 [% IF ( mandatoryaddress ) %]
486 <label for="address" class="required">
488 <label for="address">
491 <input type="text" id="address" name="address" size="35" value="[% address %]" class="[% focusAction %]" />
492 [% IF ( mandatoryaddress ) %]<span class="required">Required</span>[% END %]
495 [% UNLESS noaddress2 %]
497 [% IF ( mandatoryaddress2 ) %]
498 <label for="address2" class="required">
500 <label for="address2">
503 <input type="text" id="address2" name="address2" size="35" value="[% address2 %]" class="[% focusAction %]" />
504 [% IF ( mandatoryaddress2 ) %]<span class="required">Required</span>[% END %]
509 [% IF ( mandatorycity ) %]
510 <label for="city" class="required">
515 <input type="text" id="city" name="city" size="20" value="[% city %]" class="[% focusAction %]" />
516 [% IF ( city_cgipopup ) %]or <strong>choose</strong>
517 <select id="select_city" name="select_city">
518 [% FOREACH city_loo IN city_loop %]
519 [% IF ( city_loo.selected ) %]
520 <option value="[% city_loo.city_zipcode %]|[% city_loo.city_name %]|[% city_loo.city_state %]|[% city_loo.city_country %]" selected="selected">
522 <option value="[% city_loo.city_zipcode %]|[% city_loo.city_name %]|[% city_loo.city_state %]|[% city_loo.city_country %]">
524 [% city_loo.city_name %] [% city_loo.city_state %] [% city_loo.city_zipcode %]
529 [% IF ( mandatorycity ) %]<span class="required">Required</span>[% END %]
534 [% IF ( mandatorystate ) %]
535 <label for="state" class="required">
540 <input type="text" name="state" id="state" size="20" value="[% state %]" class="[% focusAction %]" />
541 [% IF ( mandatorystate ) %]<span class="required">Required</span>[% END %]
544 [% UNLESS nozipcode %]
546 [% IF ( mandatoryzipcode ) %]
547 <label for="zipcode" class="required">
549 <label for="zipcode">
551 Zip/Postal code: </label>
552 <input type="text" name="zipcode" id="zipcode" size="10" value="[% zipcode %]" class="[% focusAction %]" />
553 [% IF ( mandatoryzipcode ) %]<span class="required">Required</span>[% END %]
556 [% UNLESS nocountry %]
558 [% IF ( mandatorycountry ) %]
559 <label for="country" class="required">
561 <label for="country">
564 <input type="text" name="country" id="country" size="20" value="[% country %]" class="[% focusAction %]" />
565 [% IF ( mandatorycountry ) %]<span class="required">Required</span>[% END %]
570 [% END # nostreet && nocity etc group%]
572 [% UNLESS nophone && nophonepro && nomobile && noemail && noemailpro && nofax %]
573 <fieldset class="rows" id="memberentry_contact">
574 <legend id="contact_lgd">Contact</legend><ol>
577 [% IF ( mandatoryphone ) %]
578 <label for="phone" class="required">
582 Primary phone: </label>
583 <input type="text" id="phone" name="phone" value="[% phone %]" class="[% focusAction %]" />
584 [% IF ( mandatoryphone ) %]<span class="required">Required</span>[% END %]<div class="hint">Shows on transit slips</div>
588 [% UNLESS nophonepro %]
590 [% IF ( mandatoryphonepro ) %]
591 <label for="phonepro" class="required">
593 <label for="phonepro">
595 Secondary phone: </label>
596 <input type="text" id="phonepro" name="phonepro" value="[% phonepro %]" class="[% focusAction %]" />
597 [% IF ( mandatoryphonepro ) %]<span class="required">Required</span>[% END %]
600 [% UNLESS nomobile %]
602 [% IF ( mandatorymobile ) %]
603 <label for="mobile" class="required">
607 Mobile phone: </label>
608 <input type="text" id="mobile" name="mobile" value="[% mobile %]" class="[% focusAction %]" />
609 [% IF ( mandatorymobile ) %]<span class="required">Required</span>[% END %]
614 [% IF ( mandatoryemail ) %]
615 <label for="email" class="required">
619 Primary email: </label>
620 <input type="text" id="email" name="email" size="45" value="[% email %]" class="[% focusAction %]" />
621 [% IF ( mandatoryemail ) %]<span class="required">Required</span>[% END %]<div class="hint">Shows on transit slips</div>
625 [% UNLESS noemailpro %]
627 [% IF ( mandatoryemailpro ) %]
628 <label for="emailpro" class="required">
630 <label for="emailpro">
632 Secondary email: </label>
633 <input type="text" id="emailpro" name="emailpro" size="45" value="[% emailpro %]" class="[% focusAction %]" />
634 [% IF ( mandatoryemailpro ) %]<span class="required">Required</span>[% END %]
639 [% IF ( mandatoryfax ) %]
640 <label for="fax" class="required">
645 <input type="text" id="fax" name="fax" value="[% fax %]" class="[% focusAction %]" />
646 [% IF ( mandatoryfax ) %]<span class="required">Required</span>[% END %]
651 [%END # hide fieldset %]
653 <!-- ************************ STEP_1 *********************** -->
657 [% UNLESS noB_address && noB_address2 && noB_city && noB_zipcode && noB_state && noB_country &&nocontactnote && noB_phone && noB_email %]
658 <fieldset class="rows" id="memberentry_address">
659 <legend id="alt_address_lgd">Alternate address</legend><ol>
660 [% UNLESS noB_address %]
662 [% IF ( mandatoryB_address ) %]
663 <label for="B_address" class="required">
665 <label for="B_address">
668 <input type="text" id="B_address" name="B_address" size="40" value="[% B_address %]" class="[% focusAction %]" />
669 [% IF ( mandatoryB_address ) %]<span class="required">Required</span>[% END %]
672 [% UNLESS noB_address2 %]
674 [% IF ( mandatoryB_address2 ) %]
675 <label for="B_address2" class="required">
677 <label for="B_address2">
680 <input type="text" id="B_address2" name="B_address2" size="40" value="[% B_address2 %]" class="[% focusAction %]" />
681 [% IF ( mandatoryB_address2 ) %]<span class="required">Required</span>[% END %]
684 [% UNLESS noB_city %]
686 [% IF ( mandatoryB_city ) %]
687 <label for="B_city" class="required" >
692 <input type="text" id="B_city" name="B_city" size="20" value="[% B_city %]" class="[% focusAction %]" />
693 [% IF ( mandatoryB_city ) %]<span class="required">Required</span>[% END %]
696 [% UNLESS noB_state %]
698 [% IF ( mandatoryB_state ) %]
699 <label for="B_state" class="required" >
701 <label for="B_state">
704 <input type="text" id="B_state" name="B_state" size="20" value="[% B_state %]" class="[% focusAction %]" />
705 [% IF ( mandatoryB_state ) %]<span class="required">Required</span>[% END %]
708 [% UNLESS noB_zipcode %]
710 [% IF ( mandatoryB_zipcode ) %]
711 <label for="B_zipcode" class="required">
713 <label for="B_zipcode">
715 Zip/Postal code: </label>
716 <input type="text" id="B_zipcode" name="B_zipcode" maxlength="10" size="10" value="[% B_zipcode %]" class="[% focusAction %]" />
717 [% IF ( mandatoryB_zipcode ) %]<span class="required">Required</span>[% END %]
720 [% UNLESS noB_country %]
722 [% IF ( mandatoryB_country ) %]
723 <label for="B_country" class="required">
725 <label for="B_country">
728 <input type="text" id="B_country" name="B_country" size="20" value="[% B_country %]" class="[% focusAction %]" />
729 [% IF ( mandatoryB_country ) %]<span class="required">Required</span>[% END %]
732 [% UNLESS noB_phone %]
734 [% IF ( mandatoryB_phone ) %]
735 <label for="B_phone" class="required">
737 <label for="B_phone">
740 <input type="text" id="B_phone" name="B_phone" value="[% B_phone %]" class="[% focusAction %]" />
741 [% IF ( mandatoryB_phone ) %]<span class="required">Required</span>[% END %]
744 [% UNLESS noB_email %]
746 [% IF ( mandatoryB_email ) %]
747 <label for="B_email" class="required">
749 <label for="B_email">
752 <input type="text" id="B_email" name="B_email" size="45" value="[% B_email %]" class="[% focusAction %]" />
753 [% IF ( mandatoryB_email ) %]<span class="required">Required</span>[% END %] </li>
755 [% UNLESS nocontactnote %]
757 [% IF ( mandatorycontactnote ) %]
758 <label for="contactnote" class="required">
760 <label for="contactnote">
762 Contact note: </label>
763 <textarea id="contactnote" name="contactnote" cols="40" rows="2">[% contactnote %]</textarea>
764 [% IF ( mandatorycontactnote ) %]<span class="required">Required</span>[% END %]
769 [% END # UNLESS noB_address && noB_city && noB_state && noB_phone && noB_email %]
772 [% UNLESS noaltcontactsurname && noaltcontactfirstname && noaltcontactaddress1 && noaltcontactaddress2 && noaltcontactaddress3 && noaltcontactstate && noaltcontactzipcode && noaltcontactcountry && noaltcontactphone %]
773 <fieldset class="rows" id="memberentry_altaddress">
774 <legend id="alt_contact_lgd">Alternate contact</legend><ol>
775 [% UNLESS noaltcontactsurname %]
777 [% IF ( mandatoryaltcontactsurname ) %]
778 <label for="altcontactsurname" class="required">
780 <label for="altcontactsurname">
783 <input type="text" name="altcontactsurname" id="altcontactsurname" value="[% altcontactsurname %]" class="[% focusAction %]" />
784 [% IF ( mandatoryaltcontactsurname ) %]<span class="required">Required</span>[% END %]
787 [% UNLESS noaltcontactfirstname %]
789 [% IF ( mandatoryaltcontactfirstname ) %]
790 <label for="altcontactfirstname" class="required">
792 <label for="altcontactfirstname">
795 <input type="text" name="altcontactfirstname" id="altcontactfirstname" value="[% altcontactfirstname %]" class="[% focusAction %]" />
796 [% IF ( mandatoryaltcontactfirstname ) %]<span class="required">Required</span>[% END %]
799 [% UNLESS noaltcontactaddress1 %]
801 [% IF ( mandatoryaltcontactaddress1 ) %]
802 <label for="altcontactaddress1" class="required">
804 <label for="altcontactaddress1">
807 <input type="text" name="altcontactaddress1" id="altcontactaddress1" value="[% altcontactaddress1 %]" size="40" class="[% focusAction %]" />
808 [% IF ( mandatoryaltcontactaddress1 ) %]<span class="required">Required</span>[% END %]
811 [% UNLESS noaltcontactaddress2 %]
813 [% IF ( mandatoryaltcontactaddress2 ) %]
814 <label for="altcontactaddress2" class="required">
816 <label for="altcontactaddress2">
819 <input type="text" name="altcontactaddress2" id="altcontactaddress2" value="[% altcontactaddress2 %]" size="40" class="[% focusAction %]" />
820 [% IF ( mandatoryaltcontactaddress2 ) %]<span class="required">Required</span>[% END %]
823 [% UNLESS noaltcontactaddress3 %]
825 [% IF ( mandatoryaltcontactaddress3 ) %]
826 <label for="altcontactaddress3" class="required">
828 <label for="altcontactaddress3">
831 <input type="text" name="altcontactaddress3" id="altcontactaddress3" value="[% altcontactaddress3 %]" size="20" class="[% focusAction %]" />
832 [% IF ( mandatoryaltcontactaddress3 ) %]<span class="required">Required</span>[% END %]
835 [% UNLESS noaltcontactstate %]
837 [% IF ( mandatoryaltcontactstate ) %]
838 <label for="altcontactstate" class="required">
840 <label for="altcontactstate">
843 <input type="text" name="altcontactstate" id="altcontactstate" value="[% altcontactstate %]" size="20" class="[% focusAction %]" />
844 [% IF ( mandatoryaltcontactstate ) %]<span class="required">Required</span>[% END %]
847 [% UNLESS noaltcontactzipcode %]
849 [% IF ( mandatoryaltcontactzipcode ) %]
850 <label for="altcontactzipcode" class="required">
852 <label for="altcontactzipcode">
854 Zip/Postal code:</label>
855 <input type="text" name="altcontactzipcode" id="altcontactzipcode" value="[% altcontactzipcode %]" size="5" class="[% focusAction %]" />
856 [% IF ( mandatoryaltcontactzipcode ) %]<span class="required">Required</span>[% END %]
859 [% UNLESS noaltcontactcountry %]
861 [% IF ( mandatoryaltcontactcountry ) %]
862 <label for="altcontactcountry" class="required">
864 <label for="altcontactcountry">
867 <input type="text" name="altcontactcountry" id="altcontactcountry" value="[% altcontactcountry %]" size="20" class="[% focusAction %]" />
868 [% IF ( mandatoryaltcontactcountry ) %]<span class="required">Required</span>[% END %]
871 [% UNLESS noaltcontactphone %]
873 [% IF ( mandatoryaltcontactphone ) %]
874 <label for="altcontactphone" class="required">
876 <label for="altcontactphone">
879 <input type="text" name="altcontactphone" id="altcontactphone" value="[% altcontactphone %]" class="[% focusAction %]" />
880 [% IF ( mandatoryaltcontactphone ) %]<span class="required">Required</span>[% END %]
885 [% END # UNLESS noaltcontactsurname && noaltcontactfirstname etc %]
890 <fieldset class="rows" id="memberentry_library_management">
891 <legend id="library_management_lgd">Library management</legend><ol>
892 [% UNLESS nocardnumber %]
894 [% IF ( mandatorycardnumber ) %]
895 <label for="cardnumber" class="required">
897 <label for="cardnumber" class="validated">
899 Card number: </label>
900 [% IF minlength_cardnumber == maxlength_cardnumber %]
901 <input type="text" id="cardnumber" name="cardnumber" size="20" value="[% cardnumber %]" minlength="[% minlength_cardnumber %]" maxlength="[% maxlength_cardnumber %]" title="exactly [% minlength_cardnumber %] characters" />
902 [% ELSIF minlength_cardnumber && maxlength_cardnumber %]
903 <input type="text" id="cardnumber" name="cardnumber" size="20" value="[% cardnumber %]" minlength="[% minlength_cardnumber %]" maxlength="[% maxlength_cardnumber %]" title="between [% minlength_cardnumber %] and [% maxlength_cardnumber %] characters" />
904 [% ELSIF maxlength_cardnumber %]
905 <input type="text" id="cardnumber" name="cardnumber" size="20" value="[% cardnumber %]" maxlength="[% maxlength_cardnumber %]" title="up to [% maxlength_cardnumber %] characters" />
907 <input type="text" id="cardnumber" name="cardnumber" size="20" value="[% cardnumber %]" />
909 [% IF ( mandatorycardnumber ) %]<span class="required">Required</span>[% END %]
912 [% UNLESS nobranchcode %]
914 <label for="libraries" class="required">Library:</label>
915 <select name="branchcode" size="1" id="libraries">
916 [%- FOREACH branchloo IN branchloop %]
917 [% IF ( branchloo.selected ) -%]
918 <option value="[% branchloo.branchcode %]" selected="selected">[% branchloo.branchname %]</option>
920 <option value="[% branchloo.branchcode %]">[% branchloo.branchname %]</option>
924 <span class="required">Required</span>
928 <label for="categorycode" class="required">Category: </label>
929 <select id="categorycode" name="categorycode" onchange="update_category_code(this);">
930 [% FOREACH typeloo IN typeloop %]
931 [% FOREACH categoryloo IN typeloo.categoryloop %]
932 [% IF ( loop.first ) %]
933 [% IF ( typeloo.typename_C ) %]<optgroup label="Child">[% END %]
934 [% IF ( typeloo.typename_A ) %]<optgroup label="Adult">[% END %]
935 [% IF ( typeloo.typename_S ) %]<optgroup label="Staff">[% END %]
936 [% IF ( typeloo.typename_I ) %]<optgroup label="Organization">[% END %]
937 [% IF ( typeloo.typename_P ) %]<optgroup label="Professional">[% END %]
938 [% IF ( typeloo.typename_X ) %]<optgroup label="Statistical">[% END %]
940 [% IF ( categoryloo.categorycodeselected ) %]
941 <option value="[% categoryloo.categorycode %]" selected="selected" data-typename="[% typeloo.typename %]">[% categoryloo.categoryname %]</option>
943 <option value="[% categoryloo.categorycode %]" data-typename="[% typeloo.typename %]">[% categoryloo.categoryname %]</option>
945 [% IF ( loop.last ) %]
951 <span class="required">Required</span>
955 [% IF ( mandatorysort1 ) %]
956 <label for="sort1" class="required">
961 [% PROCESS 'av-build-dropbox.inc' name="sort1", category="Bsort1", default=sort1, class=focusAction, size = 20 %]
962 [% IF ( mandatorysort1 ) %]<span class="required">Required</span>[% END %]
967 [% IF ( mandatorysort2 ) %]
968 <label for="sort2" class="required">
973 [% PROCESS 'av-build-dropbox.inc' name="sort2", category="Bsort2", default=sort2, class=focusAction, size = 20 %]
974 [% IF ( mandatorysort2 ) %]<span class="required">Required</span>[% END %]
979 [% UNLESS nodateenrolled && noopacnote && noborrowernotes %]
980 <fieldset class="rows" id="memberentry_subscription">
981 <legend id="library_setup_lgd">Library set-up</legend><ol>
982 [% UNLESS nodateenrolled %]
984 [% IF ( mandatorydateenrolled ) %]
985 <label for="from" class="required">
989 Registration date: </label>
990 [% IF ( dateformat == "metric" ) %]
991 <input type="text" id="from" name="dateenrolled" maxlength="10" size="10" onchange="CheckDate(document.form.dateenrolled);check_manip_date('verify');" value="[% dateenrolled %]" class="datepickerfrom" />
993 <input type="text" id="from" name="dateenrolled" maxlength="10" size="10" value="[% dateenrolled %]" class="datepickerfrom" />
995 [% IF ( mandatorydateenrolled ) %]<span class="required">Required</span>[% END %]
996 [% IF ( ERROR_dateenrolled ) %]<span class="required">(Error)</span>[% END %]
997 <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
1000 [% UNLESS nodateexpiry %]
1003 <li style="display:none">
1005 [% IF ( mandatorydateexpiry ) %]
1006 <label for="to" class="required">
1010 Expiry date (leave blank for auto calc) </label>
1011 [% IF ( dateformat == "metric" ) %]
1012 [% UNLESS ( opadd ) %]
1013 <input type="text" id="to" name="dateexpiry" maxlength="10" size="10" onchange="CheckDate(document.form.dateexpiry);check_manip_date('verify');" value="[% dateexpiry %]" class="datepickerto" />
1015 <input type="text" id="to" name="dateexpiry" maxlength="10" size="10" onchange="CheckDate(document.form.dateexpiry);check_manip_date('verify');" class="datepickerto" />
1018 [% UNLESS ( opadd ) %]
1019 <input type="text" id="to" name="dateexpiry" maxlength="10" size="10" value="[% dateexpiry %]" class="datepickerto" />
1021 <input type="text" id="to" name="dateexpiry" maxlength="10" size="10" class="datepickerto" />
1024 [% IF ( mandatorydateexpiry ) %]<span class="required">Required</span>[% END %]
1025 [% IF ( ERROR_dateexpiry ) %]<span class="required">(Error)</span>[% END %]
1026 <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
1028 [% UNLESS noopacnote %]
1030 [% IF ( mandatoryopacnote ) %]
1031 <label for="opacnote" class="required">
1033 <label for="opacnote">
1036 <textarea id="opacnote" name="opacnote" cols="55" rows="5">[% opacnote %]</textarea>
1037 <div class="hint">This message appears on this patron's user page in the OPAC</div>
1038 [% IF ( mandatoryopacnote ) %]<span class="required">Required</span>[% END %]
1041 [% UNLESS noborrowernotes %]
1043 [% IF ( mandatoryborrowernotes ) %]
1044 <label for="borrowernotes" class="required">
1046 <label for="borrowernotes">
1048 Circulation note: </label>
1049 <textarea id="borrowernotes" name="borrowernotes" cols="55" rows="5">[% borrowernotes %]</textarea>
1050 <div class="hint">This message displays when checking out to this patron</div>
1051 [% IF ( mandatoryborrowernotes ) %]<span class="required">Required</span>[% END %]
1056 [% END # hide fieldset %]
1058 [% UNLESS nouserid && nopassword %]
1059 <fieldset class="rows" id="memberentry_userid">
1060 <legend id="opac_staff_login_lgd">OPAC/Staff login</legend><ol>
1061 [% UNLESS nouserid %]
1063 [% IF ( mandatoryuserid ) %]
1064 <label for="userid" class="required">
1066 <label for="userid">
1070 [% IF ( NoUpdateLogin ) %]
1071 [% IF ( opduplicate ) %]
1072 <input type="text" id="userid" name="userid" size="20" disabled="disabled" />
1074 <input type="text" id="userid" name="userid" size="20" disabled="disabled" value="[% userid %]" />
1077 [% IF ( opduplicate ) %]
1078 <input type="text" id="userid" name="userid" size="20" value="" />
1080 <input type="text" id="userid" name="userid" size="20" value="[% userid %]" />
1084 [% IF ( mandatoryuserid ) %]<span class="required">Required</span>[% END %]
1087 [% UNLESS nopassword %]
1089 [% IF ( mandatorypassword ) %]
1090 <label for="password" class="required">
1092 <label for="password">
1096 [% IF ( NoUpdateLogin ) %]
1097 [% IF ( opduplicate ) %]
1098 <input type="password" id="password" name="password" size="20" disabled="disabled" />
1100 <input type="password" id="password" name="password" size="20" disabled="disabled" value="[% password %]" />
1103 [% IF ( opduplicate ) %]
1104 <input type="password" id="password" name="password" size="20" />
1106 <input type="password" id="password" name="password" size="20" value="[% password %]" />
1110 [% IF ( password ) %]
1111 [% IF ( NoUpdateLogin ) %]
1112 <input type="password" id="password" name="password" size="20" disabled="disabled" value="****" />
1114 [% IF ( opduplicate ) %]
1115 <input type="password" id="password" name="password" size="20" />
1117 <input type="password" id="password" name="password" size="20" value="****" />
1121 [% IF ( NoUpdateLogin ) %]
1122 <input type="password" id="password" name="password" size="20" disabled="disabled" value="" />
1124 <input type="password" id="password" name="password" size="20" value="" />
1128 [% IF ( mandatorypassword ) %]<span class="required">Required</span>[% END %][% IF ( ERROR_short_password ) %]<span class="required">Password is too short</span>[% END %]
1129 [% IF ( minPasswordLength ) %]<div class="hint">Minimum password length: [% minPasswordLength %]</div>[% END %]
1132 [% IF ( mandatorypassword ) %]
1133 <label for="password2" class="required">
1135 <label for="password2">
1137 Confirm password: </label>
1139 [% IF ( NoUpdateLogin ) %]
1140 [% IF ( opduplicate ) %]
1141 <input type="password" id="password2" name="password2" size="20" disabled="disabled" />
1143 <input type="password" id="password2" name="password2" size="20" disabled="disabled" value="[% password %]" />
1146 [% IF ( opduplicate ) %]
1147 <input type="password" id="password2" name="password2" size="20" />
1149 <input type="password" id="password2" name="password2" size="20" value="[% password %]" />
1153 [% IF ( password ) %]
1154 [% IF ( NoUpdateLogin ) %]
1155 <input type="password" id="password2" name="password2" size="20" disabled="disabled" value="****" />
1157 [% IF ( opduplicate ) %]
1158 <input type="password" id="password2" name="password2" size="20" />
1160 <input type="password" id="password2" name="password2" size="20" value="****" />
1164 [% IF ( NoUpdateLogin ) %]
1165 <input type="password" id="password2" name="password2" size="20" disabled="disabled" value="" />
1167 <input type="password" id="password2" name="password2" size="20" value="" />
1171 [% IF ( mandatorypassword ) %]<span class="required">Required</span>[% END %][% IF ( ERROR_password_mismatch ) %]<span class="required">Passwords do not match</span>[% END %]
1175 [% END # hide fieldset %][% END %]
1176 <!--this zones are not necessary in modif mode -->
1177 [% UNLESS ( opadd || opduplicate ) %]
1178 <fieldset class="rows">
1179 <legend>Patron account flags</legend>
1181 [% FOREACH flagloo IN flagloop %]
1182 <li><label class="radio" for="yes[% flagloo.name %]">
1183 [% IF ( flagloo.key == 'gonenoaddress' ) %]Gone no address:[% END %]
1184 [% IF ( flagloo.key == 'lost' ) %]Lost card:[% END %]
1186 [% IF CAN_user_circulate_manage_restrictions %]
1187 <label for="yes[% flagloo.name %]">Yes </label>
1188 [% IF ( flagloo.yes ) %]
1189 <input type="radio" id="yes[% flagloo.name %]" name="[% flagloo.name %]" value="1" checked="checked" />
1191 <input type="radio" id="yes[% flagloo.name %]" name="[% flagloo.name %]" value="1" />
1193 <label for="no[% flagloo.name %]">No </label>
1194 [% IF ( flagloo.no ) %]
1195 <input type="radio" id="no[% flagloo.name %]" name="[% flagloo.name %]" value="0" checked="checked"/>
1197 <input type="radio" id="no[% flagloo.name %]" name="[% flagloo.name %]" value="0" />
1200 [% IF flagloo.yes %]Yes[% ELSE %]No[% END %]
1209 <fieldset class="rows">
1210 <legend>Patron restrictions</legend>
1212 [% IF ( debarments.size < 1 ) %]
1213 <p>Patron is currently unrestricted.</p>
1221 [% IF CAN_user_borrowers && CAN_user_circulate_manage_restrictions %]
1228 [% FOREACH d IN debarments %]
1230 <td>[% d.type %]</td>
1231 <td>[% d.comment %]</td>
1232 <td>[% IF d.expiration %] [% d.expiration | $KohaDates %] [% ELSE %] <i>Indefinite</i> [% END %]</td>
1233 [% IF CAN_user_borrowers && CAN_user_circulate_manage_restrictions %]
1235 <input type="checkbox" id="debarment_[% d.borrower_debarment_id %]" name="remove_debarment" value="[% d.borrower_debarment_id %]" />
1243 [% IF CAN_user_borrowers && CAN_user_circulate_manage_restrictions %]
1244 <p><a href="#" id="add_manual_restriction">Add manual restriction</a></p>
1245 <fieldset id="manual_restriction_form">
1246 <input type="hidden" id="add_debarment" name="add_debarment" value="0" />
1247 <legend>Add manual restriction</legend>
1249 <li><label for="debarred_comment">Comment: </label><input type="text" id="debarred_comment" name="debarred_comment" onchange="$('#add_debarment').val(1);" /></li>
1250 <li><label for="debarred_expiration">Expiration: </label><input name="debarred_expiration" id="debarred_expiration" size="10" readonly="readonly" value="" class="datepicker" onchange="$('#add_debarment').val(1);" />
1251 <a href='javascript:void(0)' onclick="$('#debarred_expiration').val('');">Clear date</a></li>
1255 <a class="cancel" id="cancel_manual_restriction" href="#" onclick="">Cancel</a>
1264 [% IF ( step_4 ) %][% IF ( ExtendedPatronAttributes ) %][% UNLESS ( no_patron_attribute_types ) %]
1265 <fieldset class="rows" id="memberentry_patron_attributes">
1266 <legend>Additional attributes and identifiers</legend>
1267 <input type="hidden" name="setting_extended_patron_attributes" value="1" />
1268 [% FOREACH pa_loo IN patron_attributes %]
1269 [% IF pa_loo.class %]
1270 <fieldset id="aai_[% pa_loo.class %]">
1271 <legend>[% pa_loo.lib %]</legend>
1273 <ol class="attributes_table">
1274 [% FOREACH patron_attribute IN pa_loo.items %]
1275 <li data-category_code="[% patron_attribute.category_code %]">
1276 <label for="[% patron_attribute.form_id %]">[% patron_attribute.description %]: </label>
1277 <input type="hidden" id="[% patron_attribute.form_id %]_code" name="[% patron_attribute.form_id %]_code" value="[% patron_attribute.code |html %]" />
1278 [% IF ( patron_attribute.use_dropdown ) %]
1279 <select id="[% patron_attribute.form_id %]" name="[% patron_attribute.form_id %]">
1280 <option value=""></option>
1281 [% FOREACH auth_val_loo IN patron_attribute.auth_val_loop %]
1282 [% IF ( auth_val_loo.selected ) %]
1283 <option value="[% auth_val_loo.authorised_value %]" selected="selected">
1284 [% auth_val_loo.lib %]
1287 <option value="[% auth_val_loo.authorised_value %]" >
1288 [% auth_val_loo.lib %]
1294 <textarea rows="2" cols="30" id="[% patron_attribute.form_id %]" name="[% patron_attribute.form_id %]">[% patron_attribute.value %]</textarea>
1296 [% IF ( patron_attribute.password_allowed ) %]
1297 (<label class="yesno" for="[% patron_attribute.form_id %]_password">Password:</label> <input type="password" maxlength="64" value="[% patron_attribute.password %]"
1298 id="[% patron_attribute.form_id %]_password" name="[% patron_attribute.form_id %]_password" />)
1300 <a href="#" class="clear-field" onclick="clear_entry(this); return false;">Clear</a>
1301 [% IF ( patron_attribute.repeatable ) %]
1302 <a href="#" class="clone-field" onclick="clone_entry(this); return false;">New</a>
1307 [% IF pa_loo.class %]</fieldset>[% END %]
1310 [% END %][% END %][% END %]
1312 [% IF ( step_5 ) %][% IF ( EnhancedMessagingPreferences ) %]
1313 <fieldset class="rows" id="memberentry_messaging_prefs">
1314 <legend id="patron_messaging_prefs_lgd">Patron messaging preferences</legend>
1316 <!-- handle changing prefs if creating new patron and changing
1319 <script type="text/javascript">//<![CDATA[
1320 $(document).ready(function(){
1321 var message_prefs_dirty = false;
1322 $('#memberentry_messaging_prefs > *').change(function() {
1323 message_prefs_dirty = true;
1325 $('#categorycode').change(function() {
1326 var categorycode = $(this).val();
1327 if (message_prefs_dirty) {
1328 if (!confirm('Change messaging preferences to default for this category?')) {
1332 $.getJSON('/cgi-bin/koha/members/default_messageprefs.pl?categorycode=' + categorycode,
1334 $.each(data.messaging_preferences, function(i, item) {
1335 var attrid = item.message_attribute_id;
1336 var transports = ['email', 'rss', 'sms'];
1337 $.each(transports, function(j, transport) {
1338 if (item['transports_' + transport] == 1) {
1339 $('#' + transport + attrid).attr('checked', 'checked');
1341 $('#' + transport + attrid).removeAttr('checked');
1344 if (item.digest && item.digest != ' ') {
1345 $('#digest' + attrid).attr('checked', item.digest);
1347 $('#digest' + attrid).removeAttr('checked');
1349 if (item.takes_days == '1') {
1350 $('[name=' + attrid + '-DAYS]').val('' + item.days_in_advance);
1353 message_prefs_dirty = false;
1361 <input type="hidden" name="setting_messaging_prefs" value="1" />
1363 <p>If no preferences are selected, the default preferences for the category chosen will be applied on save, otherwise your selection here is saved</p>
1365 [% INCLUDE 'messaging-preference-form.inc' %]
1366 [% IF ( SMSSendDriver ) %]
1367 <p><label for="SMSnumber">SMS number:</label>
1368 <input type="text" id="SMSnumber" name="SMSnumber" value="[% SMSnumber %]" class="[% focusAction %]" />
1374 [% UNLESS ( check_member ) %]
1375 <fieldset class="action">
1376 <input type="submit" name="save" onclick="return check_form_borrowers();" value="Save" />
1378 <a class="cancel" href="/cgi-bin/koha/members/member.pl">Cancel</a>
1380 <a class="cancel" href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% borrowernumber %]">Cancel</a>
1389 [% UNLESS ( opadd ) %]<div class="yui-b">
1390 [% INCLUDE 'members-menu.inc' %]
1394 [% INCLUDE 'intranet-bottom.inc' %]