-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConve2.html
245 lines (213 loc) · 10.3 KB
/
Conve2.html
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ConvenioFarmacia</title>
<style>
body {
font-family: Arial, sans-serif;
background-image: url("https://3.bp.blogspot.com/-wJxc6Aw3osk/WHdrkZF29JI/AAAAAAAAARE/bOCIm62uM00ahDRZoRjVtJNbQRRTCh6wACLcB/s1600/Farmacia.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
background: rgba(255, 255, 255, 0.9);
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
max-width: 500px;
width: 100%;
}
h1 {
font-size: 24px;
margin-bottom: 20px;
color: #2c3e50;
}
label, select, input {
width: 100%;
margin-bottom: 10px;
font-size: 16px;
}
select, input {
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
button {
padding: 10px 20px;
font-size: 16px;
color: white;
background-color: #2980b9;
border: none;
border-radius: 5px;
cursor: pointer;
width: 100%;
}
button:hover {
background-color: #3498db;
}
#resultados {
margin-top: 20px;
font-size: 18px;
color: #16a085;
}
strong {
color: #e74c3c;
}
@media (max-width: 600px) {
.container {
padding: 15px;
font-size: 14px;
}
h1 {
font-size: 20px;
}
label, select, input {
font-size: 14px;
}
button {
font-size: 14px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Calculadora de Salario</h1>
<label for="profesion">Selecciona tu profesión:</label>
<select id="profesion">
<option value="1">Farmacéutico</option>
<option value="2">Técnico</option>
<option value="3">Auxiliar</option>
</select>
<label for="anio">Selecciona el año:</label>
<select id="anio">
<option value="0">2022</option>
<option value="1">2023</option>
<option value="2">2024</option>
<option value="3" selected>2025</option>
</select>
<label for="porcentaje">Introduce el porcentaje de jornada que estás contratado (1-100):</label>
<input type="number" id="porcentaje" value="100">
<label for="numHoras">Introduce las horas nocturnas trabajadas este mes:</label>
<input type="number" id="numHoras" value="0">
<label for="porcentajeIRPF">Porcentaje de IRPF:</label>
<input type="number" id="porcentajeIRPF" value="16.92">
<label for="cotizacionContComu">Cotización Cont. Comu (%):</label>
<input type="number" id="cotizacionContComu" value="4.80">
<label for="cotizacionFormacion">Cotización Formación (%):</label>
<input type="number" id="cotizacionFormacion" value="0.10">
<label for="cotizacionDesempleo">Cotización Desempleo (%):</label>
<input type="number" id="cotizacionDesempleo" value="1.55">
<button onclick="calcularSalario()">Calcular</button>
<div id="resultados"></div>
</div>
<script>
function calcularSalario() {
var profesion = document.getElementById("profesion").value;
var anio = document.getElementById("anio").value;
var porcentaje = parseFloat(document.getElementById("porcentaje").value);
var numHoras = parseFloat(document.getElementById("numHoras").value);
var porcentajeIRPF = parseFloat(document.getElementById("porcentajeIRPF").value);
var cotizacionContComu = parseFloat(document.getElementById("cotizacionContComu").value);
var cotizacionFormacion = parseFloat(document.getElementById("cotizacionFormacion").value);
var cotizacionDesempleo = parseFloat(document.getElementById("cotizacionDesempleo").value);
var salario = 0;
var salarioAnual = 0;
switch (profesion) {
case "1":
switch (anio) {
case "0":
salario = 1985.35 * (porcentaje / 100) / 12 * 2 + numHoras * 2.48 + 81.70 + 1985.35 * (porcentaje / 100);
salarioAnual = 1985.35 * (porcentaje / 100) * 14 + 81.70 * 12;
break;
case "1":
salario = 2064.76 * (porcentaje / 100) / 12 * 2 + numHoras * 2.48 + 84.97 + 2064.76 * (porcentaje / 100);
salarioAnual = 2064.76 * (porcentaje / 100) * 14 + 84.97 * 12;
break;
case "2":
salario = 2137.03 * (porcentaje / 100) / 12 * 2 + numHoras * 2.56 + 87.94 + 2137.03 * (porcentaje / 100);
salarioAnual = 2137.03 * (porcentaje / 100) * 14 + 87.94 * 12;
break;
case "3": // Año 2025 (2% más que 2024)
salario = 2180.77 * (porcentaje / 100) / 12 * 2 + numHoras * 2.61 + 89.70 + 2180.77 * (porcentaje / 100);
salarioAnual = 2180.77 * (porcentaje / 100) * 14 + 89.70 * 12;
break;
}
break;
case "2":
switch (anio) {
case "0":
salario = 1345.92 * (porcentaje / 100) / 12 * 2 + numHoras * 1.62 + 1345.92 * (porcentaje / 100);
salarioAnual = 1345.92 * (porcentaje / 100) * 14;
break;
case "1":
salario = 1399.75 * (porcentaje / 100) / 12 * 2 + numHoras * 1.69 + 1399.75 * (porcentaje / 100);
salarioAnual = 1399.75 * (porcentaje / 100) * 14;
break;
case "2":
salario = 1448.74 * (porcentaje / 100) / 12 * 2 + numHoras * 1.75 + 1448.74 * (porcentaje / 100);
salarioAnual = 1448.74 * (porcentaje / 100) * 14;
break;
case "3": // Año 2025 (2% más que 2024)
salario = 1477.71 * (porcentaje / 100) / 12 * 2 + numHoras * 1.79 + 1477.71 * (porcentaje / 100);
salarioAnual = 1477.71 * (porcentaje / 100) * 14;
break;
}
break;
case "3":
switch (anio) {
case "0":
salario = 1223.91 * (porcentaje / 100) / 12 * 2 + numHoras * 1.61 + 1223.91 * (porcentaje / 100);
salarioAnual = 1223.91 * (porcentaje / 100) * 14;
break;
case "1":
salario = 1272.87 * (porcentaje / 100) / 12 * 2 + numHoras * 1.68 + 1272.87 * (porcentaje / 100);
salarioAnual = 1272.87 * (porcentaje / 100) * 14;
break;
case "2":
salario = 1316.58 * (porcentaje / 100) / 12 * 2 + numHoras * 1.73 + 1316.58 * (porcentaje / 100);
salarioAnual = 1316.58 * (porcentaje / 100) * 14;
break;
case "3": // Año 2025 (2% más que 2024)
salario = 1342.91 * (porcentaje / 100) / 12 * 2 + numHoras * 1.76 + 1342.91 * (porcentaje / 100);
salarioAnual = 1342.91 * (porcentaje / 100) * 14;
break;
}
break;
}
var cotizacionContComuAmount = salario * (cotizacionContComu / 100);
var cotizacionFormacionAmount = salario * (cotizacionFormacion / 100);
var cotizacionDesempleoAmount = salario * (cotizacionDesempleo / 100);
var irpfAmount = salario * (porcentajeIRPF / 100);
var salarioNeto = salario - cotizacionContComuAmount - cotizacionFormacionAmount - cotizacionDesempleoAmount - irpfAmount;
var salarioNetoAnual = salarioAnual - cotizacionContComuAmount * 14 - cotizacionFormacionAmount * 14 - cotizacionDesempleoAmount * 14 - irpfAmount * 14;
var diferencia = salario - salarioNeto;
var resultados = document.getElementById("resultados");
resultados.innerHTML =
"Salario Bruto: " + salario.toFixed(2) + "€<br>" +
"<strong>Salario Neto: " + salarioNeto.toFixed(2) + "€</strong><br>" +
"<br/>" +
"Salario Bruto Anual: " + salarioAnual.toFixed(2) + "€<br>" +
"<strong>Salario Neto Anual: " + salarioNetoAnual.toFixed(2) + "€</strong><br>" +
"<br/>" +
"Cotización Cont. Comu: " + cotizacionContComuAmount.toFixed(2) + "€<br>" +
"Cotización Formación: " + cotizacionFormacionAmount.toFixed(2) + "€<br>" +
"Cotización Desempleo: " + cotizacionDesempleoAmount.toFixed(2) + "€<br>" +
"<br/>" +
"IRPF: " + irpfAmount.toFixed(2) + "€<br>" +
"<br/>" +
"<br/>" +
"<strong>La diferencia entre el salario bruto y el neto no es magia, son tus impuestos:</strong> " + "<strong>" + diferencia.toFixed(2) + "€" + "</strong>";
}
</script>
</body>
</html>