-
Notifications
You must be signed in to change notification settings - Fork 1
/
common.js
59 lines (50 loc) · 1.58 KB
/
common.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
const STATUS_FILE = 'status.txt';
const ORG_DIR = 'org/';
// determines that 'val' is a number value
function isNumber(val, len, str) {
if (val == "") {
alert("Поле '" + str + "' должно быть заполнено.");
return false;
}
if ( !(/^[0-9]+$/.test(val)) ) {
alert("Поле '" + str + "' должно содержать только цифры.");
return false;
}
// if len=0 - the length is not to be controlled
if ((len != 0) && (val.length != len) ) {
alert("Поле '" + str + "' должно содержать " + len + " символов.");
return false;
}
return true;
}
// status string updater
function loadStatusOnce() {
var xhr = new XMLHttpRequest();
xhr.open('GET', STATUS_FILE, true); // asynchronous request
xhr.send();
xhr.onreadystatechange = function() {
if (xhr.readyState != 4)
return;
if (xhr.status == 200)
footer.innerHTML = xhr.responseText;
}
}
function loadStatus() {
loadStatusOnce();
setInterval(function() {
loadStatusOnce();
}, 1000);
}
// checks if the 'inn' already exists in 'org' directory
function validateNewOrg(inn) {
var xhr = new XMLHttpRequest();
xhr.open('GET', ORG_DIR + inn + '.xml', false); // synchronous request
xhr.send();
if (xhr.status == 200) { // OK
return confirm('Организация с указанным ИНН уже существует.\n' +
'Вы действительно хотите перезапросить данные?');
} else if (xhr.status == 404) { // not found
return true;
}
return false;
}