diff --git a/src/js/service.js b/src/js/service.js index de20837..36419f9 100644 --- a/src/js/service.js +++ b/src/js/service.js @@ -56,7 +56,28 @@ angular.module('focaCrearHojaRuta') return $http.get(route + '/hoja-ruta/numero-siguiente'); }, getBotonera: function() { - return ['Transportista', 'Chofer', 'Vehiculo', 'Tarifario', 'Remitos']; + return [ + { + label: 'Transportista', + image: 'cliente.png' + }, + { + label: 'Chofer', + image: 'vendedor.png' + }, + { + label: 'Vehiculo', + image: 'flete.png' + }, + { + label: 'Tarifario', + image: 'precios-condiciones.png' + }, + { + label: 'Remitos', + image: 'precios-condiciones.png' + } + ]; } }; }]);