-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
223 lines (205 loc) · 5.79 KB
/
script.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
function calcola() {
// ho deciso di usare un array per il codice fiscale
let codice = [];
let y = 0;
// Popolazione variabili
let surname = document.datiAnagrafici.cognome.value;
let name = document.datiAnagrafici.name.value;
let meseNascita = document.datiAnagrafici.elencoMesi.value;
let annoNascita = document.datiAnagrafici.elencoAnno.value;
let giornoNascita = document.datiAnagrafici.elencoGiorni.value;
let statoNascita = document.datiAnagrafici.elencoStati.value;
let comuneNascita = document.datiAnagrafici.elencoComune.value;
// Popolazione delle variabili del sesso
let sessoMaschio = false;
let sessoFemmina = false;
if (document.getElementById("sessoMASCHIO").checked)
{
sessoMaschio = true;
}
if (document.getElementById("sessoFEMMINA").checked)
{
sessoFemmina = true;
}
// formattazione delle variabili stringhe
name = name.toUpperCase();
name = name.replaceAll(' ', '');
surname = surname.toUpperCase();
surname = surname.replaceAll(' ', '');
// Verifica della presenza dei dati
// Molti di questi allert sono resi inutili dalla proprietà 'required' nei form HTML
if (surname == "") {
alert("Campo 'cognome' vuoto");
return;
}
if (name == "") {
alert("Campo 'name' vuoto");
return;
}
if (sessoMaschio == false && sessoFemmina == false)
{
alert("Selezionare un sesso");
return;
}
if (meseNascita == "0")
{
alert("Selezionare un mese di nascita");
return;
}
if (annoNascita == "0")
{
alert("Selezionare un anno di nascita");
return;
}
if (giornoNascita == "0")
{
alert("Selezionare un giorno di nascita");
return;
}
if (comuneNascita == "0" && statoNascita == "0")
{
alert("Selezionare un comune di nascita");
return;
}
if (statoNascita == "0")
{
alert("Selezionare uno stato di nascita");
return;
}
// pos. 0-2 cognome
let cognomeSize = surname.length;
for (let i = 0; i < cognomeSize && y < 3; i++)
{
if (y == 2 && i == cognomeSize - 1)
{
codice[2] = "X";
}
if (surname[i] != "A" && surname[i] != "E" && surname[i] != "I" && surname[i] != "O" && surname[i] != "U")
{
codice[y] = surname[i];
y++;
}
}
// pos 3-5 name
let consonantiName = [];
let z = 0;
for (let i = 0; i < name.length; i++)
{
if (name[i] != "A" && name[i] != "E" && name[i] != "I" && name[i] != "O" && name[i] != "U")
{
consonantiName[z] = name[i];
z++;
}
}
if (consonantiName.length == 3)
{
for (let i = 0; i < 4; i++)
{
codice[y] = consonantiName[i];
y++;
}
}
if (consonantiName.length > 3)
{
codice[3] = consonantiName[0];
codice[4] = consonantiName[2];
codice[5] = consonantiName[3];
y += 3;
}
if (consonantiName.length < 3)
{
codice[3] = consonantiName[0];
codice[4] = consonantiName[1];
for (let i = 0; i < name.length; i++)
{
if (name[i] == "A" || name[i] == "E" || name[i] == "I" || name[i] == "O" || name[i] == "U")
{
codice[5] = name[i];
break;
}
}
y +=3;
}
// pos. 6-8 anno e mese di nascita
codice[6] = annoNascita[2];
codice[7] = annoNascita[3];
codice[8] = meseNascita;
y += 3;
// pos. 9-10 giorno di nascita e sesso
sezioneSesso = giornoNascita;
if (sessoFemmina == true)
{
sezioneSesso += 40;
}
if (sezioneSesso.length == 1)
{
codice[9] = "0";
codice[10] = sezioneSesso;
}
else
{
codice[9] = sezioneSesso[0];
codice[10] = sezioneSesso[1];
}
y += 2;
// pos. 11-14 luogo di nascita
if (statoNascita == "Z000")
{
codice[11] = comuneNascita[0];
codice[12] = comuneNascita[1];
codice[13] = comuneNascita[2];
codice[14] = comuneNascita[3];
}
else
{
codice[11] = statoNascita[0];
codice[12] = statoNascita[1];
codice[13] = statoNascita[2];
codice[14] = statoNascita[3];
}
y += 4;
// pos. 15 carattere di controllo
let caratteri = ["0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"];
let valoredis = [1,0,5,7,9,13,15,17,19,21,1,0,5,7,9,13,15,17,19,21,2,4,18,20,11,3,6,8,12,14,16,10,22,25,24,23];
let valorepari = [0,1,2,3,4,5,6,7,8,9,0,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];
let j, somma = 0;
for(i = 0; i < y; i++)
{
for(j = 0; j < caratteri.length; j++)
{
if(codice[i] == caratteri[j])
{
if(i % 2 == 0)
{
console.log(valoredis[j])
somma += valoredis[j];
}
else
{
console.log(valorepari[j])
somma += valorepari[j];
}
break;
}
}
}
codice[15] = caratteri[parseInt(somma%26)+10];
y++;
// FINE
alert(codice.join(""));
return;
}
function aggiornaElenchi()
{
let elencoComune = document.datiAnagrafici.elencoComune;
if (document.datiAnagrafici.elencoStati.value == "Z000")
{
elencoComune.removeAttribute("hidden");
elencoComune.setAttribute("required");
}
else
{
elencoComune.setAttribute("hidden");
elencoComune.removeAttribute("required");
}
}