foca-abm-precios-condiciones-listado.html 834 Bytes
<table class="table table-sm table-hover table-nonfluid">
    <tr>
        <th>Código</th>
        <th>Nombre</th>
        <th colspan="2" class="text-center">
            <button class="btn btn-default" ng-click="editar(0)">
                <i class="fa fa-plus"></i>
            </button>
        </th>
    </tr>
    <tr ng-repeat="precioCondicion in preciosCondiciones">
        <td ng-bind="precioCondicion.codigo"></td>
        <td ng-bind="precioCondicion.nombre"></td>
        <td>
            <button class="btn btn-default" ng-click="editar(precioCondicion.id)">
                <i class="fa fa-pencil"></i>
            </button>
            <button class="btn btn-default" ng-click="solicitarConfirmacion(precioCondicion)">
                <i class="fa fa-trash"></i>
            </button>
        </td>
    </tr>
</table>