Editar - Insertar info. faltante

This commit is contained in:
2025-05-21 10:41:17 -06:00
parent ef34962a8a
commit d10d68f607
4 changed files with 162 additions and 30 deletions

View File

@@ -183,20 +183,28 @@
<td><input name="partidas[0][cantidad_comercial]" type="number" step="0.0001" class="form-control w-100"></td>
<td><input name="partidas[0][cantidad_tarifa]" type="number" step="0.0001" class="form-control w-100"></td>
<td>
<select name="partidas[0][unidad_comercial_id]" class="form-select searchable w-100">
<option value="">-- Unidad --</option>
<?php foreach($unidades_medida as $um): ?>
<option value="<?= htmlspecialchars($um['id']) ?>"><?= htmlspecialchars($um['descripcion']) ?></option>
<?php endforeach; ?>
</select>
<div class="mb-3">
<select name="partidas[0][unidad_comercial_id]" class="form-select searchable">
<option value="">-- Unidad --</option>
<?php foreach($unidades_medida as $um): ?>
<option value="<?= htmlspecialchars($um['id']) ?>"><?= htmlspecialchars($um['descripcion']) ?></option>
<?php endforeach; ?>
</select>
</div>
</td>
<td><input name="partidas[0][valor_factura]" type="number" step="0.01" class="form-control valor-partida w-100"></td>
<td><input name="partidas[0][peso_bruto]" type="number" step="0.0001" class="form-control w-100"></td>
<td>
<select name="partidas[0][tasa_preferencial]" class="form-select searchable w-100">
<option value="">-- Selecciona --</option>
<option>General</option><option>TLC</option><option>PROSEC</option><option>ALADI</option><option>COMERCIALIZADORA</option><option></option>
</select>
<div class="mb-3">
<select name="partidas[0][tasa_preferencial]" class="form-select searchable">
<option value="">-- Selecciona --</option>
<option>General</option>
<option>TLC</option>
<option>PROSEC</option>
<option>ALADI</option>
<option>COMERCIALIZADORA</option>
</select>
</div>
</td>
<td class="hide"><input name="partidas[0][precio_unitario]" type="number" class="form-control w-100"></td>
<td class="hide"><input name="partidas[0][oma_factura]" class="form-control w-100"></td>