Primer commit del sistema avantika sin cambios
This commit is contained in:
30
templates/lists/reportes-devcedis-prods.tpl
Executable file
30
templates/lists/reportes-devcedis-prods.tpl
Executable file
@@ -0,0 +1,30 @@
|
||||
<table width="100%" cellpadding="0" cellspacing="0" id="box-table-a">
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="70" style="background-color:#99CCFF"><div align="center">Sucursal</div></th>
|
||||
<th width="" style="background-color:#99CCFF"><div align="center">Proveedor</div></th>
|
||||
<th width="60" style="background-color:#99CCFF"><div align="center">Código Barra</div></th>
|
||||
<th width="200" style="background-color:#99CCFF"><div align="center">Producto</div></th>
|
||||
<th width="60" style="background-color:#99CCFF"><div align="center">Cantidad</div></th>
|
||||
<th width="60" style="background-color:#99CCFF"><div align="center">Costo</div></th>
|
||||
<th width="60" style="background-color:#99CCFF"><div align="center">Total</div></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{foreach from=$item.productos item=itP key=kP}
|
||||
<tr>
|
||||
<td align="center">{$itP.sucursal|urldecode}</td>
|
||||
<td align="center">{$itP.proveedor}</td>
|
||||
<td align="center">{$itP.codigoBarra}</td>
|
||||
<td align="center">{$itP.producto}</td>
|
||||
<td align="center">{$itP.cantidad}</td>
|
||||
<td align="center">${$itP.costo|number_format:2:'.':','}</td>
|
||||
<td align="center">${$itP.total|number_format:2:'.':','}</td>
|
||||
</tr>
|
||||
{foreachelse}
|
||||
<tr>
|
||||
<td colspan="6" align="center">Ningún registro encontrado.</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</tbody>
|
||||
</table>
|
||||
Reference in New Issue
Block a user