pedidos-salientes.component.ts
1.01 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
import { Component, OnInit } from '@angular/core';
import { ComandaService } from 'src/app/services/comanda/comanda.service';
@Component({
selector: 'app-pedidos-salientes',
templateUrl: './pedidos-salientes.component.html',
styleUrls: ['./pedidos-salientes.component.scss']
})
export class PedidosSalientesComponent implements OnInit {
pedidosPendientes = [];
cicloTime;
constructor(
private comandaServices: ComandaService
) { }
ngOnInit() {
this.buscarPedidosPendientes();
this.ciclo()
}
ngOnDestroy() {
clearTimeout(this.cicloTime);
}
buscarPedidosPendientes() {
this.comandaServices.getPendientesEntrega()
.subscribe((pedidos: []) => {
this.pedidosPendientes = pedidos
})
}
ciclo() {
this.cicloTime = setTimeout(() => {
this.buscarPedidosPendientes();
this.ciclo();
}, 5000)
}
rellenar(relleno, longitud) {
relleno = '' + relleno;
while (relleno.length < longitud) {
relleno = '0' + relleno;
}
return relleno;
}
}