Commit 5162b47e46e1c7fc9cd2573592aebb1e8f89ed00
1 parent
645aeb5552
Exists in
master
max=6 botonera-facturador
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/views/foca-abm-choferes-listado.html
1 | <div class="row"> | 1 | <div class="row"> |
2 | <foca-cabecera-facturador | 2 | <foca-cabecera-facturador |
3 | titulo="'Choferes'" | 3 | titulo="'Choferes'" |
4 | fecha="now" | 4 | fecha="now" |
5 | class="mb-0 col-lg-12" | 5 | class="mb-0 col-lg-12" |
6 | ></foca-cabecera-facturador> | 6 | ></foca-cabecera-facturador> |
7 | </div> | 7 | </div> |
8 | <div class="row"> | 8 | <div class="row"> |
9 | <div class="col-12 col-md-10 p-0 mt-4 border border-white rounded"> | 9 | <div class="col-12 col-md-10 p-0 mt-4 border border-white rounded"> |
10 | <div class="row px-5 py-2 botonera-secundaria"> | 10 | <div class="row px-5 py-2 botonera-secundaria"> |
11 | <div class="col-12"> | 11 | <div class="col-12"> |
12 | <foca-botonera-facturador botones="botonera" extra="5" class="row"></foca-botonera-facturador> | 12 | <foca-botonera-facturador botones="botonera" max="6" class="row"></foca-botonera-facturador> |
13 | </div> | 13 | </div> |
14 | </div> | 14 | </div> |
15 | <table class="table table-default table-hover table-sm table-abm table-striped mb-0"> | 15 | <table class="table table-default table-hover table-sm table-abm table-striped mb-0"> |
16 | <thead> | 16 | <thead> |
17 | <tr> | 17 | <tr> |
18 | <th>Nombre</th> | 18 | <th>Nombre</th> |
19 | <th>DNI</th> | 19 | <th>DNI</th> |
20 | <th>Teléfono</th> | 20 | <th>Teléfono</th> |
21 | <th class="text-center"> | 21 | <th class="text-center"> |
22 | <button | 22 | <button |
23 | ng-disabled="!idTransportista" | 23 | ng-disabled="!idTransportista" |
24 | title="Agregar" | 24 | title="Agregar" |
25 | class="btn btn-outline-debo boton-accion" | 25 | class="btn btn-outline-debo boton-accion" |
26 | ng-click="editar(0)"> | 26 | ng-click="editar(0)"> |
27 | <i class="fa fa-plus"></i> | 27 | <i class="fa fa-plus"></i> |
28 | </button> | 28 | </button> |
29 | </th> | 29 | </th> |
30 | </tr> | 30 | </tr> |
31 | </thead> | 31 | </thead> |
32 | <tbody> | 32 | <tbody> |
33 | <tr ng-repeat="chofer in choferes | filter:filters"> | 33 | <tr ng-repeat="chofer in choferes | filter:filters"> |
34 | <td ng-bind="chofer.nombre"></td> | 34 | <td ng-bind="chofer.nombre"></td> |
35 | <td ng-bind="chofer.dni"></td> | 35 | <td ng-bind="chofer.dni"></td> |
36 | <td ng-bind="chofer.telefono"></td> | 36 | <td ng-bind="chofer.telefono"></td> |
37 | <td class="text-center"> | 37 | <td class="text-center"> |
38 | <button | 38 | <button |
39 | class="btn btn-outline-dark boton-accion" | 39 | class="btn btn-outline-dark boton-accion" |
40 | title="Editar" | 40 | title="Editar" |
41 | ng-click="editar(chofer.id)" | 41 | ng-click="editar(chofer.id)" |
42 | > | 42 | > |
43 | <i class="fa fa-pencil"></i> | 43 | <i class="fa fa-pencil"></i> |
44 | </button> | 44 | </button> |
45 | <button | 45 | <button |
46 | class="btn btn-outline-dark boton-accion" | 46 | class="btn btn-outline-dark boton-accion" |
47 | title="Eliminar" | 47 | title="Eliminar" |
48 | ng-click="solicitarConfirmacion(chofer)" | 48 | ng-click="solicitarConfirmacion(chofer)" |
49 | > | 49 | > |
50 | <i class="fa fa-trash"></i> | 50 | <i class="fa fa-trash"></i> |
51 | </button> | 51 | </button> |
52 | </td> | 52 | </td> |
53 | </tr> | 53 | </tr> |
54 | </body> | 54 | </body> |
55 | </table> | 55 | </table> |
56 | </div> | 56 | </div> |
57 | </div> | 57 | </div> |
58 | 58 |