Primer commit del sistema avantika sin cambios

This commit is contained in:
2026-01-06 19:42:24 -06:00
commit 3ae4be5957
7127 changed files with 440072 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
<table width="100%" cellpadding="0" cellspacing="0" id="boxTblC" style="border-top:1px solid #CCCCCC">
<thead>
<tr>
<th width="" align="center">Descripci&oacute;n</th>
<th width="50" align="center" height="30">Cant.</th>
<th width="90" align="center">P. Unit.</th>
<th width="90" align="center">Total</th>
<th width="20" align="center">&nbsp;</th>
</tr>
</thead>
<tbody>
{foreach from=$productos item=item key=key}
<tr>
<td align="left" class="bordeTop">{$item.nombre}</td>
<td align="center" class="bordeTop">{$item.cantidad}</td>
<td align="center" class="bordeTop">{$item.precioUnitario|number_format:2:".":","}</td>
<td align="center" class="bordeTop">{$item.total|number_format:2:".":","}</td>
<td align="center" class="bordeTop"></td>
</tr>
<tr>
<td align="left">
<div style="float:left">
<select class="smallInput" name="tipoDesc_{$key}" id="tipoDesc_{$key}" onchange="UpdatePrecios({$key})">
<option value="">Sel. Descuento</option>
<option value="Dinero">En Dinero</option>
<option value="Porcentaje">En Porcentaje</option>
</select>
</div>
<div style="float:left">
<input type="text" class="smallInput" name="valDesc_{$key}" id="valDesc_{$key}" placeholder="Cantidad" onblur="UpdatePrecios({$key})" />
</div>
</td>
<td align="center"></td>
<td></td>
<td align="center"><div id="txtTotalProd_{$key}">0.00</div></td>
<td></td>
</tr>
{foreachelse}
<tr>
<td colspan="6" align="center">Ning&uacute;n producto encontrado.</td>
</tr>
{/foreach}
</tbody>
</table>