service.js
2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
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,
},
];
}
};
}]);