Commit 16e3c0bca2136732545b133d1e99f468c4766671

Authored by Jose Pinto
1 parent 80c514dc5f
Exists in master and in 2 other branches develop, lab

botones con imagenes

Showing 1 changed file with 22 additions and 1 deletions   Show diff stats
... ... @@ -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 }]);