nota-pedido-lista.html 758 Bytes
<table class="table table-sm table-hover table-nonfluid">
    <thead>
        <tr>
            <th>Código</th>
            <th>Vendedor</th>
            <th>Cliente</th>
            <th>Petrolera</th>
            <th></th>
        </tr>
    </thead>
    <tbody>
        <tr ng-repeat="item in notaPedidos">
            <td ng-bind="item.id"></td>
            <td ng-bind="item.vendedor"></td>
            <td ng-bind="item.cliente"></td>
            <td ng-bind="item.petrolera"></td>
            <td>
                <button ng-click="editar(item)"><i class="glyphicon glyphicon-pencil"></i></button>
                <button ng-click="borrar(item.id)"><i class="glyphicon glyphicon-trash"></i></button>
            </td>
        </tr>
    </tbody>
</table>