Commit b5b1856a52082acf9ad06e8637f4098a7c699bf1

Authored by Luigi
1 parent 432f6c3b04
Exists in master

Columna de ID para cada unidad

Showing 1 changed file with 2 additions and 0 deletions   Show diff stats
src/views/foca-abm-vehiculos-listado.html
... ... @@ -24,6 +24,7 @@
24 24 <table class="table table-default table-hover table-sm table-abm table-striped mb-0">
25 25 <thead>
26 26 <tr>
  27 + <th>ID</th>
27 28 <th class="text-center">Unidad</th>
28 29 <th>Dominio Tractor</th>
29 30 <th>Dominio Semi</th>
... ... @@ -41,6 +42,7 @@
41 42 </thead>
42 43 <tbody>
43 44 <tr ng-repeat="vehiculo in vehiculos | filter:filtros">
  45 + <td ng-bind="vehiculo.id"></td>
44 46 <td ng-bind="vehiculo.codigo" class="text-center"></td>
45 47 <td ng-bind="vehiculo.tractor"></td>
46 48 <td ng-bind="vehiculo.semi"></td>