Primer commit del sistema avantika sin cambios
This commit is contained in:
24
templates/lists/enumProdVta.tpl
Executable file
24
templates/lists/enumProdVta.tpl
Executable file
@@ -0,0 +1,24 @@
|
||||
<table width="100%" cellpadding="0" cellspacing="0" border="1">
|
||||
<tr>
|
||||
<td width="80" align="center" height="30"><b>DISP.</b></td>
|
||||
<td width="100"align="center"><b>P. U.</td>
|
||||
<td width="" align="center"><b>DESCRIPCION</b></td>
|
||||
<td width="20"></td>
|
||||
</tr>
|
||||
{foreach from=$productos item=item key=key}
|
||||
<tr>
|
||||
<td align="center" height="30">{$item.disponible}</td>
|
||||
<td align="center">{$item.precioVentaIva}</td>
|
||||
<td align="left">{$item.nombre|upper}</td>
|
||||
<td align="center">
|
||||
<a href="javascript:void(0)" onclick="UpdateInfoProdB({$item.productoId})">
|
||||
<img src="{$WEB_ROOT}/images/icons/add.png" border="0" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
{foreachelse}
|
||||
<tr>
|
||||
<td colspan="4" height="30" align="center">Ningún registro encontrado.</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</table>
|
||||
Reference in New Issue
Block a user