Commit 1f97bd91d1f1613d7459e934b8f47fc769b762eb

Authored by Jose Pinto
1 parent 16e3c0bca2
Exists in master

envio a modal idTransportista, nuevas imgs botonera

Showing 2 changed files with 9 additions and 6 deletions   Show diff stats
src/js/controller.js
... ... @@ -241,7 +241,10 @@ angular.module('focaCrearHojaRuta') .controller('hojaRutaCtrl',
241 241 ariaLabelledBy: 'Busqueda de Vehiculo',
242 242 templateUrl: 'modal-vehiculo.html',
243 243 controller: 'focaModalVehiculoController',
244   - size: 'lg'
  244 + size: 'lg',
  245 + resolve:{
  246 + idTransportista: $scope.hojaRuta.transportista.codigo
  247 + }
245 248 }
246 249 );
247 250  
... ... @@ -59,23 +59,23 @@ angular.module('focaCrearHojaRuta')
59 59 return [
60 60 {
61 61 label: 'Transportista',
62   - image: 'cliente.png'
  62 + image: 'transportista.png'
63 63 },
64 64 {
65 65 label: 'Chofer',
66   - image: 'vendedor.png'
  66 + image: 'chofer.png'
67 67 },
68 68 {
69 69 label: 'Vehiculo',
70   - image: 'flete.png'
  70 + image: 'vehiculos.png'
71 71 },
72 72 {
73 73 label: 'Tarifario',
74   - image: 'precios-condiciones.png'
  74 + image: 'tarifario.png'
75 75 },
76 76 {
77 77 label: 'Remitos',
78   - image: 'precios-condiciones.png'
  78 + image: 'remito.png'
79 79 }
80 80 ];
81 81 }