fix: quitar campo Tipo de servicio del portal enfermero
This commit is contained in:
@@ -812,21 +812,6 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||||||
</div>
|
</div>
|
||||||
</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 -->
|
<!-- Cobros -->
|
||||||
<div class="row g-2 mb-3">
|
<div class="row g-2 mb-3">
|
||||||
<div class="col-6">
|
<div class="col-6">
|
||||||
@@ -949,7 +934,6 @@ const agendaNueva = {
|
|||||||
document.getElementById('na-ciudad').value = '';
|
document.getElementById('na-ciudad').value = '';
|
||||||
document.getElementById('na-indicaciones').value = '';
|
document.getElementById('na-indicaciones').value = '';
|
||||||
document.getElementById('na-hora').value = '';
|
document.getElementById('na-hora').value = '';
|
||||||
document.getElementById('na-tipo').value = '';
|
|
||||||
document.getElementById('na-notas').value = '';
|
document.getElementById('na-notas').value = '';
|
||||||
document.getElementById('na-valor-dom').value = '';
|
document.getElementById('na-valor-dom').value = '';
|
||||||
document.getElementById('na-valor-cop').value = '';
|
document.getElementById('na-valor-cop').value = '';
|
||||||
@@ -1122,7 +1106,6 @@ const agendaNueva = {
|
|||||||
indicaciones_dir: document.getElementById('na-indicaciones').value.trim() || null,
|
indicaciones_dir: document.getElementById('na-indicaciones').value.trim() || null,
|
||||||
fecha_programada: fecha,
|
fecha_programada: fecha,
|
||||||
hora_programada: document.getElementById('na-hora').value || null,
|
hora_programada: document.getElementById('na-hora').value || null,
|
||||||
tipo_servicio: document.getElementById('na-tipo').value || null,
|
|
||||||
tipo_cliente: 'particular',
|
tipo_cliente: 'particular',
|
||||||
valor_domicilio: parseFloat(document.getElementById('na-valor-dom').value) || null,
|
valor_domicilio: parseFloat(document.getElementById('na-valor-dom').value) || null,
|
||||||
valor_copago: parseFloat(document.getElementById('na-valor-cop').value) || null,
|
valor_copago: parseFloat(document.getElementById('na-valor-cop').value) || null,
|
||||||
|
|||||||
Reference in New Issue
Block a user