Commit d9248794c51b06cd0b17b1cbbfdd15f1bb48cfe4
1 parent
8461a54d2d
Exists in
master
and in
1 other branch
botones con imagenes
Showing
1 changed file
with
34 additions
and
2 deletions
Show diff stats
src/js/service.js
| ... | ... | @@ -57,8 +57,40 @@ angular.module('focaCrearRemito') |
| 57 | 57 | return $http.get(route + '/remito/numero-siguiente'); |
| 58 | 58 | }, |
| 59 | 59 | getBotonera: function() { |
| 60 | - return ['Nota pedido', 'Vendedor', 'Cliente', 'Proveedor', | |
| 61 | - 'Moneda', 'Precios y condiciones', 'Flete', 'Productos']; | |
| 60 | + return [ | |
| 61 | + { | |
| 62 | + label: 'Nota pedido', | |
| 63 | + image: 'precios-condiciones.png' | |
| 64 | + }, | |
| 65 | + { | |
| 66 | + label: 'Vendedor', | |
| 67 | + image: 'vendedor.png' | |
| 68 | + }, | |
| 69 | + { | |
| 70 | + label: 'Cliente', | |
| 71 | + image: 'cliente.png' | |
| 72 | + }, | |
| 73 | + { | |
| 74 | + label: 'Proveedor', | |
| 75 | + image: 'proveedor.png' | |
| 76 | + }, | |
| 77 | + { | |
| 78 | + label: 'Moneda', | |
| 79 | + image: 'moneda.png' | |
| 80 | + }, | |
| 81 | + { | |
| 82 | + label: 'Precios y condiciones', | |
| 83 | + image: 'precios-condiciones.png' | |
| 84 | + }, | |
| 85 | + { | |
| 86 | + label: 'Flete', | |
| 87 | + image: 'flete.png' | |
| 88 | + }, | |
| 89 | + { | |
| 90 | + label: 'Productos', | |
| 91 | + image: 'productos.png' | |
| 92 | + } | |
| 93 | + ]; | |
| 62 | 94 | } |
| 63 | 95 | }; |
| 64 | 96 | }]); |