Commit c81b204709bd1f384aa89eae3fe81bbaf06c924b
Exists in
master
Merge branch 'master' into 'master'
botones con imagenes See merge request !8
Showing
1 changed file
Show diff stats
src/js/service.js
... | ... | @@ -56,7 +56,28 @@ angular.module('focaCrearHojaRuta') |
56 | 56 | return $http.get(route + '/hoja-ruta/numero-siguiente'); |
57 | 57 | }, |
58 | 58 | getBotonera: function() { |
59 | - return ['Transportista', 'Chofer', 'Vehiculo', 'Tarifario', 'Remitos']; | |
59 | + return [ | |
60 | + { | |
61 | + label: 'Transportista', | |
62 | + image: 'cliente.png' | |
63 | + }, | |
64 | + { | |
65 | + label: 'Chofer', | |
66 | + image: 'vendedor.png' | |
67 | + }, | |
68 | + { | |
69 | + label: 'Vehiculo', | |
70 | + image: 'flete.png' | |
71 | + }, | |
72 | + { | |
73 | + label: 'Tarifario', | |
74 | + image: 'precios-condiciones.png' | |
75 | + }, | |
76 | + { | |
77 | + label: 'Remitos', | |
78 | + image: 'precios-condiciones.png' | |
79 | + } | |
80 | + ]; | |
60 | 81 | } |
61 | 82 | }; |
62 | 83 | }]); |