confirmacion-carrito.component.ts
2.32 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
import { Component, OnInit, OnDestroy } from '@angular/core';
import { appSettings } from 'src/etc/AppSettings';
import { Location } from '@angular/common';
import { ProductoService } from 'src/app/services/producto.service';
import { Producto } from 'src/app/wrappers/producto';
import { Router } from '@angular/router';
@Component({
selector: 'app-confirmacion-carrito',
templateUrl: './confirmacion-carrito.component.html',
styleUrls: ['./confirmacion-carrito.component.scss']
})
export class ConfirmacionCarritoComponent implements OnInit, OnDestroy {
private productos: Producto[] = [];
private total: number = 0;
private apiImagenes: string = appSettings.apiImagenes;
private timerReposo: any;
private compraConEfectivofinalizada: boolean = false;
private compraConQRfinalizada: boolean = false;
private verQR: boolean = false;
constructor(
private location: Location,
private productoService: ProductoService,
private router: Router
) { }
ngOnInit() {
this.timerReposo = setTimeout(() => {
this.router.navigate(['cancelar-compra']);
}, 90000)
this.productos = this.productoService.productos;
}
ngOnDestroy() {
clearTimeout(this.timerReposo);
}
volverPreviousPage() {
if (this.verQR) {
this.verQR = !this.verQR;
return;
}
this.location.back();
}
getTotal() {
var subTotal = 0;
this.productos.forEach(producto => {
subTotal = subTotal + (producto.PreVen * producto.cantidad);
});
return this.total = subTotal;
}
reiniciarTimer() {
clearTimeout(this.timerReposo);
this.timerReposo = setTimeout(() => {
this.router.navigate(['cancelar-compra']);
}, 90000)
}
//#region METODOS PARA LA FORMA DE PAGO
pagar(medioPago: string) {
if (medioPago == 'electronico') {
this.verQR = true;
}
this.productoService.pagar(medioPago)
.subscribe(() => {
clearTimeout(this.timerReposo);
if (medioPago == 'efectivo') {
this.compraConEfectivofinalizada = true;
} else if (medioPago == 'electronico') {
this.compraConQRfinalizada = true;
}
setTimeout(() => {
this.router.navigate(['mensaje-final']);
}, 15000);
}, err => {
console.log(err);
alert('algo salió mal');
})
}
//#endregion
}