reserva, activa el codigo y devuelve el descuento (error: cualquier codigo da descuento)
This commit is contained in:
parent
e31ded9eb9
commit
376417165d
|
@ -5,5 +5,8 @@
|
|||
</ion-header>
|
||||
|
||||
<ion-content>
|
||||
¡Reserva realizada!
|
||||
Tu código de reserva:
|
||||
{{codigoReserva}}
|
||||
Descuento del {{descuento}} %
|
||||
</ion-content>
|
||||
|
|
|
@ -9,10 +9,12 @@ import { NavParams } from '@ionic/angular';
|
|||
export class ReservamodalPage implements OnInit {
|
||||
|
||||
codigoReserva: string;
|
||||
descuento: number;
|
||||
constructor(private navParams: NavParams) { }
|
||||
|
||||
ngOnInit() {
|
||||
this.codigoReserva = this.navParams.get('codigo');
|
||||
this.descuento = this.navParams.get('descuento');
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -64,7 +64,8 @@ export class ViewEventoClientePage implements OnInit {
|
|||
this.modalController.create({
|
||||
component: ReservamodalPage,
|
||||
componentProps : {
|
||||
codigo: this.reserva.codigoUnico
|
||||
codigo: this.reserva.codigoUnico,
|
||||
descuento: this.reserva.descuentoPorciento
|
||||
}
|
||||
|
||||
}).then(modal => modal.present());
|
||||
|
|
Loading…
Reference in New Issue