Commit 5c90e004b11e91827d431c576686e5264f2739d9

Authored by Eric Fernandez
1 parent 30ece7f93b
Exists in master

muestro código de vehículo

Showing 1 changed file with 2 additions and 0 deletions   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>