Files
ventas_php/templates/boxes/acciones-factura.tpl

49 lines
1.8 KiB
Smarty
Executable File

<div style="clear:both"></div>
<div id="accionList">
<table width="100%" cellpadding="0" cellspacing="0" id="box-table-a">
<thead>
<tr>
<th width="100" scope="col"><div align="center">Ver Factura</div></th>
<th width="100" scope="col"><div align="center">Descargar PDF</div></th>
{if $info.version == "v3" || $info.version == "2" || $info.version == "construc"}
<th width="100" scope="col"><div align="center">Enviar Correo</div></th>
<th width="100" scope="col"><div align="center">Descargar XML</div></th>
{/if}
</tr>
</thead>
<tbody>
<tr>
<td width="34" align="center">
<div align="center">
<a href="{$WEB_ROOT}/facturacion-pdf/ver/{$comprobanteId}" target="_blank">
<img src="{$WEB_ROOT}/images/icons/ver_factura.png" border="0" />
</a>
</div>
</td>
<td align="center">
<div align="center">
<a href="{$WEB_ROOT}/facturacion-pdf/descargar/{$comprobanteId}">
<img src="{$WEB_ROOT}/images/icons/descargar.png" border="0" />
</a>
</div>
</td>
{if $info.version == "v3" || $info.version == "2" || $info.version == "construc"}
<td align="center">
<div align="center">
<a href="javascript:void(0)">
<img src="{$WEB_ROOT}/images/icons/email.png" border="0" class="spanSend" id="{$comprobanteId}" />
</a>
</div>
</td>
<td align="center">
<div align="center">
<a href="{$WEB_ROOT}/facturacion/descargar-xml/{$comprobanteId}">
<img src="{$WEB_ROOT}/images/icons/descargar.png" border="0" />
</a>
</div>
</td>
{/if}
</tr>
</tbody>
</table>
</div>