Commit 6bae36c250f8cc1082dfb1059dcea3b7e86baafa

Authored by Eric Fernandez
Exists in master

Merge branch 'master' into 'master'

agrego semi y cisternado en listado

See merge request !2
src/views/foca-abm-vehiculos-listado.html
... ... @@ -15,7 +15,9 @@
15 15 <th>Código</th>
16 16 <th>Transportista</th>
17 17 <th>Tractor</th>
  18 + <th>Semi</th>
18 19 <th>Capacidad</th>
  20 + <th>Cisternado</th>
19 21 <th class="text-center">
20 22 <button class="btn btn-default boton-accion" ng-click="editar(0)">
21 23 <i class="fa fa-plus"></i>
... ... @@ -28,7 +30,9 @@
28 30 <td ng-bind="vehiculo.id"></td>
29 31 <td ng-bind="vehiculo.transportista.NOM || 'No tiene'"></td>
30 32 <td ng-bind="vehiculo.tractor"></td>
  33 + <td ng-bind="vehiculo.semi"></td>
31 34 <td ng-bind="vehiculo.capacidad"></td>
  35 + <td ng-bind="vehiculo.cisternado"></td>
32 36 <td class="text-center">
33 37 <button
34 38 class="btn btn-default boton-accion"