Files
ventas_php/templates/lists/reportes-prod-prov.tpl

48 lines
1.7 KiB
Smarty
Executable File

<div align="center"><b>{$titulo}</b></div>
<br />
<div align="center">
<span style="color:#FF0000">Los datos no son generados en tiempo real.</span>
<br />
Ult. Act. del Reporte: {$fechaRep}
</div>
<br />
<table width="{$width+410}" cellpadding="0" cellspacing="0" border="1">
{foreach from=$sucursales item=suc key=kS}
{if $suc.productos|count > 0}
<tr>
<td align="left" height="25" style="background-color:#CCCCCC; border:1px solid #000000">
<b>{$suc.nombre|urldecode}</b>
</td>
<td width="80" align="center" style="background-color:#CCCCCC; border:1px solid #000000">
<a href="javascript:void(0)" onclick="ShowProdProv({$suc.sucursalId})">
<div id="showHide_{$suc.sucursalId}">[+]</div>
</a>
</td>
</tr>
<tr>
<td colspan="2" style="display:none" id="sucPP_{$suc.sucursalId}">
{include file="{$DOC_ROOT}/templates/lists/reportes-prod-prov-item.tpl"}
</td>
</tr>
{/if}
{/foreach}
</table>
<table width="{$width+410}" cellpadding="0" cellspacing="0" border="1">
<tr>
<td align="left" height="25" style="background-color:#CCCCCC; border:1px solid #000000">
<b>Totales Generales</b>
</td>
<td width="80" align="center" style="background-color:#CCCCCC; border:1px solid #000000">
<a href="javascript:void(0)" onclick="ShowProdProv('Totales')">
<div id="showHide_Totales">[+]</div>
</a>
</td>
</tr>
<tr>
<td colspan="2" style="display:none" id="sucPP_Totales">
{include file="{$DOC_ROOT}/templates/lists/reportes-prod-prov-totales.tpl"}
</td>
</tr>
</table>