Primer commit del sistema avantika sin cambios
This commit is contained in:
34
templates/lists/conceptos-cobrar.tpl
Executable file
34
templates/lists/conceptos-cobrar.tpl
Executable file
@@ -0,0 +1,34 @@
|
||||
<table width="100%" cellpadding="0" cellspacing="0" id="boxTblC" style="border-top:1px solid #CCCCCC">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="" align="center">Descripció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"> </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">
|
||||
Desc. {if $item.tipoDesc == "Dinero"}${/if} {$item.valDesc} {if $item.tipoDesc == "Porcentaje"}%{/if}
|
||||
</td>
|
||||
<td align="center" colspan="2"></td>
|
||||
<td align="center">{$item.totalDesc|number_format:2:".":","}</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
{foreachelse}
|
||||
<tr>
|
||||
<td colspan="6" align="center">Ningún producto encontrado.</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</tbody>
|
||||
</table>
|
||||
Reference in New Issue
Block a user