Commit e645ea12f0354b44717e2742f50db314e602f398
Exists in
master
Merge branch 'master' into 'master'
botones con imagenes See merge request !28
Showing
1 changed file
Show diff stats
src/js/service.js
... | ... | @@ -14,7 +14,28 @@ angular.module('focaCrearCobranza') |
14 | 14 | return $http.post(API_ENDPOINT.URL + '/recibo/guardar', cobranza); |
15 | 15 | }, |
16 | 16 | getBotonera: function() { |
17 | - return ['Cliente', 'Cobrador', 'Comprobantes', 'Cobros', 'Moneda']; | |
17 | + return [ | |
18 | + { | |
19 | + label: 'Cliente', | |
20 | + image: 'cliente.png' | |
21 | + }, | |
22 | + { | |
23 | + label: 'Cobrador', | |
24 | + image: 'vendedor.png' | |
25 | + }, | |
26 | + { | |
27 | + label: 'Comprobantes', | |
28 | + image: 'precios-condiciones.png' | |
29 | + }, | |
30 | + { | |
31 | + label: 'Cobros', | |
32 | + image: 'precios-condiciones.png' | |
33 | + }, | |
34 | + { | |
35 | + label: 'Moneda', | |
36 | + image: 'moneda.png' | |
37 | + } | |
38 | + ]; | |
18 | 39 | } |
19 | 40 | }; |
20 | 41 | }]); |