diff --git a/src/js/service.js b/src/js/service.js index 4d752d7..a823e09 100644 --- a/src/js/service.js +++ b/src/js/service.js @@ -14,7 +14,28 @@ angular.module('focaCrearCobranza') return $http.post(API_ENDPOINT.URL + '/recibo/guardar', cobranza); }, getBotonera: function() { - return ['Cliente', 'Cobrador', 'Comprobantes', 'Cobros', 'Moneda']; + return [ + { + label: 'Cliente', + image: 'cliente.png' + }, + { + label: 'Cobrador', + image: 'vendedor.png' + }, + { + label: 'Comprobantes', + image: 'precios-condiciones.png' + }, + { + label: 'Cobros', + image: 'precios-condiciones.png' + }, + { + label: 'Moneda', + image: 'moneda.png' + } + ]; } }; }]);