21 lines
839 B
Smarty
Executable File
21 lines
839 B
Smarty
Executable File
<form name="frmReport" id="frmReport">
|
|
<input type="hidden" name="type" id="type" value="sendReportParcial" />
|
|
<input type="hidden" name="repInvParcialId" id="repInvParcialId" value="{$infR.repInvParcialId}" />
|
|
|
|
{include file="{$DOC_ROOT}/templates/items/inventario-reporte-header.tpl" clase="Off"}
|
|
|
|
{if count($productos.items)}
|
|
{foreach from=$productos.items item=item key=key}
|
|
{if $key%2 == 0}
|
|
{include file="{$DOC_ROOT}/templates/items/inventario-reporte-base.tpl" clase="Off"}
|
|
{else}
|
|
{include file="{$DOC_ROOT}/templates/items/inventario-reporte-base.tpl" clase="On"}
|
|
{/if}
|
|
{/foreach}
|
|
{else}
|
|
<tr><td colspan="8" align="center">Ningún registro encontrado.</td></tr>
|
|
{/if}
|
|
|
|
{include file="{$DOC_ROOT}/templates/lists/pages_new.tpl" pages=$productos.pages colspan=8}
|
|
|
|
</form> |