Commit e57c9aee2b82bc91f95b5f909a059a58f7b1d182
Exists in
master
Merge branch 'master' into 'master'
muestro código de vehículo See merge request modulos-npm/foca-modal-vehiculo!2
Showing
1 changed file
Show diff stats
src/views/modal-vehiculo.html
... | ... | @@ -29,6 +29,7 @@ |
29 | 29 | <table ng-show="primerBusqueda" class="table table-striped table-sm"> |
30 | 30 | <thead> |
31 | 31 | <tr> |
32 | + <th>Cod</th> | |
32 | 33 | <th>Tractor</th> |
33 | 34 | <th>Semi</th> |
34 | 35 | <th>Capacidad</th> |
... | ... | @@ -44,6 +45,7 @@ |
44 | 45 | <tr class="selectable" |
45 | 46 | ng-repeat="(key,vehiculo) in currentPageVehiculos" |
46 | 47 | ng-click="select(vehiculo)"> |
48 | + <td ng-bind="vehiculo.id"></td> | |
47 | 49 | <td ng-bind="vehiculo.tractor"></td> |
48 | 50 | <td ng-bind="vehiculo.semi"></td> |
49 | 51 | <td ng-bind="vehiculo.capacidad"></td> |