Commit 1d2893a94a597aff1cfa356943f0e50aa729da26

Authored by Luigi
1 parent 810b738a6a
Exists in master

Codigo de identificacion

Showing 1 changed file with 2 additions and 0 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" max="6" 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>Código</th>
18 <th>Nombre</th> 19 <th>Nombre</th>
19 <th>Documento</th> 20 <th>Documento</th>
20 <th>Teléfono</th> 21 <th>Teléfono</th>
21 <th class="text-center"> 22 <th class="text-center">
22 <button 23 <button
23 ng-disabled="!idTransportista" 24 ng-disabled="!idTransportista"
24 title="Agregar" 25 title="Agregar"
25 class="btn btn-outline-debo boton-accion" 26 class="btn btn-outline-debo boton-accion"
26 ng-click="editar(0)"> 27 ng-click="editar(0)">
27 <i class="fa fa-plus"></i> 28 <i class="fa fa-plus"></i>
28 </button> 29 </button>
29 </th> 30 </th>
30 </tr> 31 </tr>
31 </thead> 32 </thead>
32 <tbody> 33 <tbody>
33 <tr ng-repeat="chofer in choferes | filter:filters"> 34 <tr ng-repeat="chofer in choferes | filter:filters">
35 <td ng-bind="chofer.id"></td>
34 <td ng-bind="chofer.nombre"></td> 36 <td ng-bind="chofer.nombre"></td>
35 <td ng-bind="chofer.dni"></td> 37 <td ng-bind="chofer.dni"></td>
36 <td ng-bind="chofer.telefono"></td> 38 <td ng-bind="chofer.telefono"></td>
37 <td class="text-center"> 39 <td class="text-center">
38 <button 40 <button
39 class="btn btn-outline-dark boton-accion" 41 class="btn btn-outline-dark boton-accion"
40 title="Editar" 42 title="Editar"
41 ng-click="editar(chofer.id)" 43 ng-click="editar(chofer.id)"
42 > 44 >
43 <i class="fa fa-pencil"></i> 45 <i class="fa fa-pencil"></i>
44 </button> 46 </button>
45 <button 47 <button
46 class="btn btn-outline-dark boton-accion" 48 class="btn btn-outline-dark boton-accion"
47 title="Eliminar" 49 title="Eliminar"
48 ng-click="solicitarConfirmacion(chofer)" 50 ng-click="solicitarConfirmacion(chofer)"
49 > 51 >
50 <i class="fa fa-trash"></i> 52 <i class="fa fa-trash"></i>
51 </button> 53 </button>
52 </td> 54 </td>
53 </tr> 55 </tr>
54 </body> 56 </body>
55 </table> 57 </table>
56 </div> 58 </div>
57 </div> 59 </div>
58 60