service.js
3.05 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
angular.module('focaModalFormaPago')
.factory('focaModalFormaPagoService', ['$http', 'API_ENDPOINT', function ($http, API_ENDPOINT) {
return {
getBotonera: function () {
return [
{
label: 'Efectivo',
image: 'efectivo.png',
disabled: true
},
{
label: 'Tarjetas',
image: 'tarjeta.png',
disabled: false
},
{
label: 'Cheque',
image: 'cheque.png',
disabled: true
},
{
label: 'Vales',
image: 'vale.png',
disabled: true
},
{
label: 'Pago Electronico',
image: 'qr.png',
disabled: true
}
];
}
};
}])
.factory('focaModalTarjetasService', ['$http', 'API_ENDPOINT', function ($http, API_ENDPOINT) {
return {
getTarjetas: function () {
return $http.get(API_ENDPOINT.URL + '/tarjetas');
// 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,
// },
// ];
}
};
}]);