Commit 171af3cdfd2d647dea53beaf79f87933192b7301

Authored by Marcelo Puebla
Exists in develop

Merge branch 'master' into 'develop'

Master(benjamin)

See merge request !96
src/app/modules/info-formas-pago/info-formas-pago.component.html
... ... @@ -69,7 +69,7 @@
69 69 src="assets/img/icono-cajero.svg">
70 70 </div>
71 71 <div class="modal-body text-center h1 mt-2 mb-4">
72   - Por favor, hacé tu pedido en la caja.
  72 + haga su pedido<br>en caja.
73 73 </div>
74 74 </div>
75 75 </ng-template>
src/app/modules/mensaje-final/mensaje-final.component.html
... ... @@ -24,7 +24,7 @@
24 24 (contextmenu)="false"
25 25 class="img-in-top px-4 bg-white"
26 26 src="assets/img/ticket.svg">
27   - <p class="h6 mb-2"><small>PRESENTÁ EL TICKET EN CAJA Y AGUARDÁ TU PEDIDO</small></p>
  27 + <p class="h6 mb-2"><small>NO TE VAYAS SIN TU TICKET.<br>PRESENTALO AL RETIRAR TU PEDIDO.</small></p>
28 28 <p class="h2 text-primary">Número de pedido {{articuloService.idComanda}}</p>
29 29 </div>
30 30 </div>
src/app/modules/mensaje-final/mensaje-final.component.ts
... ... @@ -18,7 +18,7 @@ export class MensajeFinalComponent implements OnInit {
18 18 ngOnInit() {
19 19 this.timer = setTimeout(() => {
20 20 this.goToSplash();
21   - }, 10000);
  21 + }, 15000);
22 22 this.mediaPantalla();
23 23 }
24 24