Commit 8fa463e44aef728ba51990e31a0004d8b1991f54
1 parent
b5b1856a52
Exists in
master
Eliminacion de ID
Showing
1 changed file
with
0 additions
and
2 deletions
Show diff stats
src/views/foca-abm-vehiculos-listado.html
1 | <div class="row"> | 1 | <div class="row"> |
2 | <foca-cabecera-facturador | 2 | <foca-cabecera-facturador |
3 | titulo="'Vehículos'" | 3 | titulo="'Vehículos'" |
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 | <!-- <div class="col-6 form-group"> | 15 | <!-- <div class="col-6 form-group"> |
16 | <input seleccionarTransportista() | 16 | <input seleccionarTransportista() |
17 | type="text" | 17 | type="text" |
18 | teclado-virtual | 18 | teclado-virtual |
19 | class="form-control form-control-sm" | 19 | class="form-control form-control-sm" |
20 | placeholder="Búsqueda" | 20 | placeholder="Búsqueda" |
21 | ng-model="filtros" | 21 | ng-model="filtros" |
22 | /> | 22 | /> |
23 | </div> --> | 23 | </div> --> |
24 | <table class="table table-default table-hover table-sm table-abm table-striped mb-0"> | 24 | <table class="table table-default table-hover table-sm table-abm table-striped mb-0"> |
25 | <thead> | 25 | <thead> |
26 | <tr> | 26 | <tr> |
27 | <th>ID</th> | ||
28 | <th class="text-center">Unidad</th> | 27 | <th class="text-center">Unidad</th> |
29 | <th>Dominio Tractor</th> | 28 | <th>Dominio Tractor</th> |
30 | <th>Dominio Semi</th> | 29 | <th>Dominio Semi</th> |
31 | <th class="text-right">Capacidad</th> | 30 | <th class="text-right">Capacidad</th> |
32 | <th class="text-center"> | 31 | <th class="text-center"> |
33 | <button | 32 | <button |
34 | ng-disabled="!idTransportista" | 33 | ng-disabled="!idTransportista" |
35 | class="btn btn-outline-debo boton-accion" | 34 | class="btn btn-outline-debo boton-accion" |
36 | title="Agregar" | 35 | title="Agregar" |
37 | ng-click="editar(0)" | 36 | ng-click="editar(0)" |
38 | ><i class="fa fa-plus"></i> | 37 | ><i class="fa fa-plus"></i> |
39 | </button> | 38 | </button> |
40 | </th> | 39 | </th> |
41 | </tr> | 40 | </tr> |
42 | </thead> | 41 | </thead> |
43 | <tbody> | 42 | <tbody> |
44 | <tr ng-repeat="vehiculo in vehiculos | filter:filtros"> | 43 | <tr ng-repeat="vehiculo in vehiculos | filter:filtros"> |
45 | <td ng-bind="vehiculo.id"></td> | ||
46 | <td ng-bind="vehiculo.codigo" class="text-center"></td> | 44 | <td ng-bind="vehiculo.codigo" class="text-center"></td> |
47 | <td ng-bind="vehiculo.tractor"></td> | 45 | <td ng-bind="vehiculo.tractor"></td> |
48 | <td ng-bind="vehiculo.semi"></td> | 46 | <td ng-bind="vehiculo.semi"></td> |
49 | <td ng-bind="vehiculo.capacidad" class="text-right"></td> | 47 | <td ng-bind="vehiculo.capacidad" class="text-right"></td> |
50 | <td class="text-center"> | 48 | <td class="text-center"> |
51 | <button | 49 | <button |
52 | class="btn btn-outline-dark boton-accion" | 50 | class="btn btn-outline-dark boton-accion" |
53 | title="Editar" | 51 | title="Editar" |
54 | ng-click="editar(vehiculo.id)" | 52 | ng-click="editar(vehiculo.id)" |
55 | > | 53 | > |
56 | <i class="fa fa-pencil"></i> | 54 | <i class="fa fa-pencil"></i> |
57 | </button> | 55 | </button> |
58 | <button | 56 | <button |
59 | class="btn btn-outline-dark boton-accion" | 57 | class="btn btn-outline-dark boton-accion" |
60 | title="Eliminar" | 58 | title="Eliminar" |
61 | ng-click="solicitarConfirmacion(vehiculo)" | 59 | ng-click="solicitarConfirmacion(vehiculo)" |
62 | > | 60 | > |
63 | <i class="fa fa-trash"></i> | 61 | <i class="fa fa-trash"></i> |
64 | </button> | 62 | </button> |
65 | </td> | 63 | </td> |
66 | </tr> | 64 | </tr> |
67 | </body> | 65 | </body> |
68 | </table> | 66 | </table> |
69 | </div> | 67 | </div> |
70 | </div> | 68 | </div> |
71 | 69 |