modal-vendedores.html 1.39 KB
<div class="modal-header">
    <h3 class="modal-title">Búsqueda de vendedores</h3>
</div>
<div class="modal-body" id="modal-body">
    <div class="input-group mb-3">
            <input 
            type="text" 
            class="form-control" 
            placeholder="Busqueda" 
            ng-model="filters" 
            ng-change="search()" 
            ng-keypress="enter($event.keyCode)"
        >
        <table class="table table-striped table-sm">
            <thead>
                <tr>
                    <th>
                        Código
                    </th>
                    <th>
                        Nombre
                    </th>
                    <th></th>
                </tr>
            </thead>
            <tbody>
                <tr ng-repeat="vendedor in filteredVendedores">
                    <td ng-bind="vendedor.CodVen"></td>
                    <td ng-bind="vendedor.NomVen"></td>
                    <td>
                        <button type="button" class="btn btn-secondary p-5 float-right mr-1" ng-click="select(producto)">
                            <i class="fa fa-check" aria-hidden="true"></i>
                        </button>
                    </td>
                </tr>
            </tbody>
        </table>
    </div>
</div>
<div class="modal-footer">
        <button class="btn btn-secondary" type="button" ng-click="cancel()">Cancelar</button>
</div>