|
|
|
@ -66,7 +66,10 @@ class Reservation {
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
this.reservationDetail = {
|
|
|
|
|
referenceNumber: json.PlanDetail[0].GRI_Name, tourGuide: json.Guide[0].TGI2_Name, arrivalDate: json.PlanDetail[0].eoi_getdate
|
|
|
|
|
referenceNumber: json.PlanDetail[0].GRI_Name, tourGuide: json.PlanDetail[0].Guide, arrivalDate: json.PlanDetail[0].eoi_getdate
|
|
|
|
|
};
|
|
|
|
|
this.meetAndGreet = {
|
|
|
|
|
customerNames: json.JJPInfo[0].CustomerName, referenceNumber: json.JJPInfo[0].GroupName, pax: json.JJPInfo[0].Str_PersonNum
|
|
|
|
|
};
|
|
|
|
|
this.customerNames = json.CusAndRequest[0].GCI_CustomerList;
|
|
|
|
|
} else {
|
|
|
|
@ -82,31 +85,35 @@ class Reservation {
|
|
|
|
|
referenceNumber: '', arrivalDate: '', tourGuide: ''
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
meetAndGreet = {
|
|
|
|
|
referenceNumber: '', customerNames: '', pax: ''
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
itineraryList = [
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
customerList = [
|
|
|
|
|
{
|
|
|
|
|
title: 'Crane / Gemma Chelse',
|
|
|
|
|
description: 'Gender: Male Nationality: United States Passport: 655844449 Expiration Date: 2030-09-07 Birth Date: 1979-12-23',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'McCracken / Ryan Lee',
|
|
|
|
|
description: 'Gender: Female Nationality: United States Passport: 655844450 Expiration Date: 2030-09-07 Birth Date: 1983-05-17',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Ramlakhan / Darryl',
|
|
|
|
|
description: 'Gender: Female Nationality: United States Passport: 661810034 Expiration Date: 2026-03-16 Birth Date: 2006-07-12',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Ramlakhan / Reanne',
|
|
|
|
|
description: 'Gender: Male Nationality: United States Passport: 593422145 Expiration Date: 2023-04-25 Birth Date: 2012-03-26',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Alexander Daich',
|
|
|
|
|
description: 'Gender: Male Nationality: United States Passport: 593422145 Expiration Date: 2023-04-25 Birth Date: 2012-03-26s',
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
customerList = [];
|
|
|
|
|
// {
|
|
|
|
|
// title: 'Crane / Gemma Chelse',
|
|
|
|
|
// description: 'Gender: Male Nationality: United States Passport: 655844449 Expiration Date: 2030-09-07 Birth Date: 1979-12-23',
|
|
|
|
|
// },
|
|
|
|
|
// {
|
|
|
|
|
// title: 'McCracken / Ryan Lee',
|
|
|
|
|
// description: 'Gender: Female Nationality: United States Passport: 655844450 Expiration Date: 2030-09-07 Birth Date: 1983-05-17',
|
|
|
|
|
// },
|
|
|
|
|
// {
|
|
|
|
|
// title: 'Ramlakhan / Darryl',
|
|
|
|
|
// description: 'Gender: Female Nationality: United States Passport: 661810034 Expiration Date: 2026-03-16 Birth Date: 2006-07-12',
|
|
|
|
|
// },
|
|
|
|
|
// {
|
|
|
|
|
// title: 'Ramlakhan / Reanne',
|
|
|
|
|
// description: 'Gender: Male Nationality: United States Passport: 593422145 Expiration Date: 2023-04-25 Birth Date: 2012-03-26',
|
|
|
|
|
// },
|
|
|
|
|
// {
|
|
|
|
|
// title: 'Alexander Daich',
|
|
|
|
|
// description: 'Gender: Male Nationality: United States Passport: 593422145 Expiration Date: 2023-04-25 Birth Date: 2012-03-26s',
|
|
|
|
|
// },
|
|
|
|
|
// ];
|
|
|
|
|
customerNames = '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|