Commit c9a912645d520fe853fbb63e35ddc68d6749d5cd
1 parent
efeead2401
Exists in
master
and in
1 other branch
agrego semi y cisternado en listado
Showing
1 changed file
with
4 additions
and
0 deletions
Show diff stats
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" |