Commit fd4384d16be6577580e40b96d59511b87e70957b

Authored by Luigi
1 parent 1d2893a94a
Exists in master

Arreglo

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