Bug 16242 - Move staff client JavaScript out of language directory
[koha.git] / koha-tmpl / intranet-tmpl / prog / js / members.js
1 // this function checks id date is like DD/MM/YYYY
2 function CheckDate(field) {
3 var d = field.value;
4 if (d!=="") {
5       var amin = 1900;
6       var amax = 2100;
7       var date = d.split("/");
8       var ok=1;
9       var msg;
10       if ( (date.length < 2) && (ok==1) ) {
11         msg = MSG_SEPARATOR.format(field.name);
12         alert(msg); ok=0; field.focus();
13         return;
14       }
15       var dd   = date[0];
16       var mm   = date[1];
17       var yyyy = date[2];
18       // checking days
19       if ( ((isNaN(dd))||(dd<1)||(dd>31)) && (ok==1) ) {
20         msg = MSG_INCORRECT_DAY.format(field.name);
21         alert(msg); ok=0; field.focus();
22         return false;
23       }
24       // checking months
25       if ( ((isNaN(mm))||(mm<1)||(mm>12)) && (ok==1) ) {
26         msg = MSG_INCORRECT_MONTH.format(field.name);
27         alert(msg); ok=0; field.focus();
28         return false;
29       }
30       // checking years
31       if ( ((isNaN(yyyy))||(yyyy<amin)||(yyyy>amax)) && (ok==1) ) {
32         msg = MSG_INCORRECT_YEAR.format(field.name);
33         alert(msg); ok=0; field.focus();
34         return false;
35       }
36    }
37 }
38
39 //function test if member is unique and if it's right the member is registred
40 function unique() {
41 var msg1;
42 var msg2;
43 if (  document.form.check_member.value==1){
44     if (document.form.categorycode.value != "I"){
45
46         msg1 += MSG_DUPLICATE_PATRON;
47         alert(msg1);
48     check_form_borrowers(0);
49     document.form.submit();
50
51     }else{
52         msg2 += MSG_DUPLICATE_ORGANIZATION;
53         alert(msg2);
54     check_form_borrowers(0);
55     }
56 }
57 else
58 {
59     document.form.submit();
60 }
61
62 }
63 //end function
64 //function test if date enrooled < date expiry
65 // WARNING: format-specific test.
66 function check_manip_date(status) {
67 if (status=='verify'){
68 // this part of function('verify') is used to check if dateenrolled<date expiry
69 if (document.form.dateenrolled !== '' && document.form.dateexpiry.value !=='') {
70 var myDate1=document.form.dateenrolled.value.split ('/');
71 var myDate2=document.form.dateexpiry.value.split ('/');
72     if ((myDate1[2]>myDate2[2])||(myDate1[2]==myDate2[2] && myDate1[1]>myDate2[1])||(myDate1[2]==myDate2[2] && myDate1[1]>=myDate2[1] && myDate1[0]>=myDate2[0]))
73
74         {
75         document.form.dateenrolled.focus();
76         var msg = MSG_LATE_EXPIRY;
77         alert(msg);
78         }
79     }
80     }
81 }
82 //end function
83
84 function check_password( password ) {
85     if ( password.match(/^\s/) || password.match(/\s$/)) {
86         return false;
87     }
88     return true;
89 }
90
91 // function to test all fields in forms and nav in different forms(1 ,2 or 3)
92 function check_form_borrowers(nav){
93     var statut=0;
94     var message = "";
95     var message_champ="";
96     if (document.form.check_member.value == 1 )
97     {
98         if (document.form.answernodouble) {
99             if( (!(document.form.answernodouble.checked))){
100                 document.form.nodouble.value=0;
101             } else {
102                 document.form.nodouble.value=1;
103             }
104         }
105     }
106
107     if ( document.form.password.value != document.form.password2.value ){
108             if ( message_champ !== '' ){
109                 message_champ += "\n";
110             }
111             message_champ+= MSG_PASSWORD_MISMATCH;
112             statut=1;
113     }
114
115     if ( ! check_password( document.form.password.value ) ) {
116         message_champ += MSG_PASSWORD_CONTAINS_TRAILING_SPACES;
117         statut = 1;
118     }
119
120     //patrons form to test if you checked no to the question of double
121     if (statut!=1 && document.form.check_member.value > 0 ) {
122         if (!(document.form.answernodouble.checked)){
123             message_champ+= MSG_DUPLICATE_SUSPICION;
124             statut=1;
125             document.form.nodouble.value=0;
126         } else {
127             document.form.nodouble.value=1;
128         }
129     }
130
131     if (statut==1){
132         //alert if at least 1 error
133         alert(message+"\n"+message_champ);
134         return false;
135     } else {
136         return true;
137     }
138 }
139
140 function Dopop(link) {
141 // //   var searchstring=document.form.value[i].value;
142     var newin=window.open(link,'popup','width=600,height=400,resizable=no,toolbar=false,scrollbars=no,top');
143 }
144
145 function Dopopguarantor(link) {
146     var newin=window.open(link,'popup','width=600,height=400,resizable=no,toolbar=false,scrollbars=yes,top');
147 }
148
149 function clear_entry(node) {
150     var original = $(node).parent();
151     $("textarea", original).attr('value', '');
152     $("select", original).attr('value', '');
153 }
154
155 function clone_entry(node) {
156     var original = $(node).parent();
157     var clone = original.clone();
158
159     var newId = 50 + parseInt(Math.random() * 100000);
160     $("input,select,textarea", clone).attr('id', function() {
161         return this.id.replace(/patron_attr_\d+/, 'patron_attr_' + newId);
162     });
163     $("input,select,textarea", clone).attr('name', function() {
164         return this.name.replace(/patron_attr_\d+/, 'patron_attr_' + newId);
165     });
166     $("label", clone).attr('for', function() {
167         return $(this).attr("for").replace(/patron_attr_\d+/, 'patron_attr_' + newId);
168     });
169     $("input#patron_attr_" + newId, clone).attr('value','');
170     $("select#patron_attr_" + newId, clone).attr('value','');
171     $(original).after(clone);
172     return false;
173 }
174
175 function update_category_code(category_code) {
176     if ( $(category_code).is("select") ) {
177         category_code = $("#categorycode_entry").find("option:selected").val();
178     }
179     var mytables = $(".attributes_table");
180     $(mytables).find("li").hide();
181     $(mytables).find(" li[data-category_code='"+category_code+"']").show();
182     $(mytables).find(" li[data-category_code='']").show();
183 }
184
185 function select_user(borrowernumber, borrower) {
186     var form = $('#entryform').get(0);
187     if (form.guarantorid.value) {
188         $("#contact-details").find('a').remove();
189         $("#contactname, #contactfirstname").parent().find('span').remove();
190     }
191
192     var id = borrower.borrowernumber;
193     form.guarantorid.value = id;
194     $('#contact-details')
195         .show()
196         .find('span')
197         .after('<a target="blank" href="/cgi-bin/koha/members/moremember.pl?borrowernumber=' + id + '">' + id + '</a>');
198
199     $(form.contactname)
200         .val(borrower.surname)
201         .before('<span>' + borrower.surname + '</span>').get(0).type = 'hidden';
202     $(form.contactfirstname)
203         .val(borrower.firstname)
204         .before('<span>' + borrower.firstname + '</span>').get(0).type = 'hidden';
205
206     form.streetnumber.value = borrower.streetnumber;
207     form.address.value = borrower.address;
208     form.address2.value = borrower.address2;
209     form.city.value = borrower.city;
210     form.state.value = borrower.state;
211     form.zipcode.value = borrower.zipcode;
212     form.country.value = borrower.country;
213     form.branchcode.value = borrower.branchcode;
214
215     form.guarantorsearch.value = LABEL_CHANGE;
216
217     return 0;
218 }
219
220 function CalculateAge(dateofbirth) {
221     var today = new Date();
222     var dob = Date_from_syspref(dateofbirth)
223     var age = new Object();
224
225     age.year = today.getFullYear() - dob.getFullYear();
226     age.month = today.getMonth() - dob.getMonth();
227     var day = today.getDate() - dob.getDate();
228
229     if(day < 0) {
230         age.month = parseInt(age.month) -1;
231     }
232
233     if(age.month < 0) {
234         age.year = parseInt(age.year) -1;
235         age.month = 12 + age.month;
236     }
237
238     return age;
239 }
240
241 $(document).ready(function(){
242     if($("#yesdebarred").is(":checked")){
243         $("#debarreduntil").show();
244     } else {
245         $("#debarreduntil").hide();
246     }
247     $("#yesdebarred,#nodebarred").change(function(){
248         if($("#yesdebarred").is(":checked")){
249             $("#debarreduntil").show();
250             $("#datedebarred").focus();
251         } else {
252             $("#debarreduntil").hide();
253         }
254     });
255     var mandatory_fields = $("input[name='BorrowerMandatoryField']").val().split ('|');
256     $(mandatory_fields).each(function(){
257         $("[name='"+this+"']").attr('required', 'required');
258     });
259
260     $("fieldset.rows input, fieldset.rows select").addClass("noEnterSubmit");
261
262     $("#guarantordelete").click(function() {
263         $("#contact-details").hide().find('a').remove();
264         $("#guarantorid, #contactname, #contactfirstname").each(function () { this.value = ""; });
265         $("#contactname, #contactfirstname")
266             .each(function () { this.type = 'text'; })
267             .parent().find('span').remove();
268         $("#guarantorsearch").val(LABEL_SET_TO_PATRON);
269     });
270
271     $("#select_city").change(function(){
272         var myRegEx=new RegExp(/(.*)\|(.*)\|(.*)\|(.*)/);
273         document.form.select_city.value.match(myRegEx);
274         document.form.zipcode.value=RegExp.$1;
275         document.form.city.value=RegExp.$2;
276         document.form.state.value=RegExp.$3;
277         document.form.country.value=RegExp.$4;
278     });
279
280     $("#dateofbirth").datepicker({ maxDate: "-1D", yearRange: "c-120:" });
281
282     $("#entryform").validate({
283         rules: {
284             email: {
285                 email: true
286             },
287             emailpro: {
288                 email: true
289             },
290             B_email: {
291                 email: true
292             }
293         },
294         submitHandler: function(form) {
295             $("body, form input[type='submit'], form button[type='submit'], form a").addClass('waiting');
296             if (form.beenSubmitted)
297                 return false;
298             else
299                 form.beenSubmitted = true;
300                 form.submit();
301             }
302     });
303
304     var mrform = $("#manual_restriction_form");
305     var mrlink = $("#add_manual_restriction");
306     mrform.hide();
307     mrlink.on("click",function(e){
308         $(this).hide();
309         mrform.show();
310         e.preventDefault();
311     });
312
313     $("#cancel_manual_restriction").on("click",function(e){
314         $('#debarred_expiration').val('');
315         $('#add_debarment').val(0);
316         $('#debarred_comment').val('');
317         mrlink.show();
318         mrform.hide();
319         e.preventDefault();
320     });
321
322 });