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

38
templates/lists/conceptos.tpl Executable file
View File

@@ -0,0 +1,38 @@
<table width="100%" cellpadding="0" cellspacing="0" id="boxTblC" style="border-top:1px solid #CCCCCC">
<thead>
<tr>
<th width="90" align="center" height="30">Desc.</th>
<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=$conceptos item=item key=key}
<tr>
<td align="center">{$item.descuento}</td>
<td align="left">
{$item.name}
{if $item.promocionId}
<br />
Promoci&oacute;n: {$item.promocion}
{/if}
</td>
<td align="center">{$item.cantidad}</td>
<td align="center">{$item.precio|number_format:2:".":","}</td>
<td align="center">{$item.total|number_format:2:".":","}</td>
<td align="center">
<a href="javascript:void(0)" onclick="DeleteProduct({$item.productoId})">
<img src="{$WEB_ROOT}/images/icons/delete.gif" border="0" />
</a>
</td>
</tr>
{foreachelse}
<tr>
<td colspan="6" align="center">Ning&uacute;n producto encontrado.</td>
</tr>
{/foreach}
</tbody>
</table>