25 lines
869 B
Smarty
Executable File
25 lines
869 B
Smarty
Executable File
|
|
<div align="center"><b>{$titulo}</b></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-item2.tpl"}
|
|
</td>
|
|
</tr>
|
|
{/if}
|
|
{/foreach}
|
|
</table> |