angular.module('focaModalFormaPago') .factory('focaModalFormaPagoService', ['$http', 'API_ENDPOINT', function ($http, API_ENDPOINT) { return { getFormasPago: function () { //TODO: pasar filtro return $http.get(API_ENDPOINT.URL + '/forma-pago'); }, getBotonera: function () { return [ { label: 'tarjeta', image: 'visa.svg', active: false, }, { label: 'tarjeta', image: 'mastercard.svg', active: false, }, { label: 'tarjeta', image: 'maestro.svg', active: false, }, { label: 'tarjeta', image: 'americanExpress.svg', active: false, }, { label: 'tarjeta', image: 'naranja.png', active: false, }, { label: 'tarjeta', image: 'cabal.svg', active: false, }, { label: 'tarjeta', image: 'argencard.svg', active: false, }, { label: 'tarjeta', image: 'nativa.png', active: false, }, { label: 'tarjeta', image: 'cencosud.png', active: false, }, ]; } }; }]);