fix: quitar campo Tipo de servicio del portal enfermero

This commit is contained in:
Lizandro Guarnizo
2026-03-13 13:12:00 -05:00
parent 4bcfd585cd
commit 7cc29fac1e
-17
View File
@@ -812,21 +812,6 @@ document.addEventListener('DOMContentLoaded', () => {
</div>
</div>
<!-- Tipo de servicio -->
<div class="mb-3">
<label class="form-label small">Tipo de servicio</label>
<select id="na-tipo" class="form-select form-select-sm">
<option value="">— Sin especificar —</option>
<option value="toma_muestras">🧪 Toma de muestras</option>
<option value="inyeccion">💉 Inyección</option>
<option value="cura">🩹 Cura / Curación</option>
<option value="nebulizacion">💨 Nebulización</option>
<option value="tension_arterial">🩺 Tensión arterial</option>
<option value="glucometria">🩸 Glucometría</option>
<option value="otro">📋 Otro</option>
</select>
</div>
<!-- Cobros -->
<div class="row g-2 mb-3">
<div class="col-6">
@@ -949,7 +934,6 @@ const agendaNueva = {
document.getElementById('na-ciudad').value = '';
document.getElementById('na-indicaciones').value = '';
document.getElementById('na-hora').value = '';
document.getElementById('na-tipo').value = '';
document.getElementById('na-notas').value = '';
document.getElementById('na-valor-dom').value = '';
document.getElementById('na-valor-cop').value = '';
@@ -1122,7 +1106,6 @@ const agendaNueva = {
indicaciones_dir: document.getElementById('na-indicaciones').value.trim() || null,
fecha_programada: fecha,
hora_programada: document.getElementById('na-hora').value || null,
tipo_servicio: document.getElementById('na-tipo').value || null,
tipo_cliente: 'particular',
valor_domicilio: parseFloat(document.getElementById('na-valor-dom').value) || null,
valor_copago: parseFloat(document.getElementById('na-valor-cop').value) || null,