Files
ventas_php/templates/items/proveedores-base.tpl
nickpons666 57d1d41e1f Fix undefined array key 'telefono' in proveedores list template
Changed $item.telefono to $item.telefonoVtas to match database schema.
The proveedor table has telefonoVtas, telefonoPagos, and telefonoEnt fields,
not a single 'telefono' field.
2026-01-07 22:01:04 -06:00

11 lines
567 B
Smarty
Executable File

<tr>
<td align="center">{$item.noProv}</td>
<td align="center">{$item.rfc}</td>
<td>{$item.nombre}</td>
<td align="center">{$item.telefonoVtas}</td>
<td align="center">
<img src="{$WEB_ROOT}/images/icons/details.png" class="spanView" id="{$item.proveedorId}" title="Ver Detalles"/>
<img src="{$WEB_ROOT}/images/icons/edit.gif" class="spanEdit" id="{$item.proveedorId}" title="Editar"/>
<img src="{$WEB_ROOT}/images/icons/delete.gif" class="spanDelete" id="{$item.proveedorId}" title="Eliminar"/>
</td>
</tr>