You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
information-system/application/third_party/order/views/vc/mailtext.php

92 lines
5.0 KiB
PHP

<p>
China Highlights n'est pas responsable des coûts ou conséquences résultant du défaut de fournir des informations
correctes. Par exemple, les noms mal orthographiés peuvent entraîner l'annulation des billets d'avion ; un numéro
de
vol incorrect peut empêcher la réception du service.
<br />
</p>
<h4 class="text-red"
style="box-sizing:border-box;font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-weight:500;line-height:1.1;color:#AA2E2D;margin-top:10px;margin-bottom:15px;font-size:24px;padding:12px 0 12px 0;border-bottom:1px solid #dddddd;border-top:1px solid #dddddd;white-space:normal;background-color:#FFFFFF;">
Informations du passager
</h4>
<?php foreach ($postdata['sur_name'] as $key => $sur) { ?>
<?php
if (!isset($postdata['given_name'][$key]) || $postdata['given_name'][$key] == 'None')
$postdata['given_name'][$key] = '';
if (!isset($postdata['passport'][$key]) || $postdata['passport'][$key] == 'None')
$postdata['passport'][$key] = '';
if (!isset($postdata['passport_expiration_date'][$key]) || $postdata['passport_expiration_date'][$key] == 'None')
$postdata['passport_expiration_date'][$key] = '';
if (!isset($postdata['birthday'][$key]) || $postdata['birthday'][$key] == 'None')
$postdata['birthday'][$key] = '';
?>
<h3>Passager <?php echo $key + 1; ?></h3>
<p style="margin:0;">Nom de famille/Prénom et deuxième nom :<?php echo $sur . '/' . $postdata['given_name'][$key]; ?>
</p>
<p style="margin:0;">Numéro de passeport :<?php echo $postdata['passport'][$key]; ?></p>
<p style="margin:0;">Date d'expiration du passeport :<?php echo $postdata['passport_expiration_date'][$key]; ?></p>
<p style="margin:0;">Date de naissance :<?php echo $postdata['birthday'][$key]; ?></p>
<?php } ?>
<h3>Informations de contact</h3>
<p style="margin:0;">Indicatif du pays :<?php if (isset($postdata['landline']))
echo $postdata['landline']; ?></p>
<p style="margin:0;">Numéro de téléphone :<?php if (isset($postdata['mobile']))
echo $postdata['mobile']; ?></p>
<h4 class="text-red"
style="box-sizing:border-box;font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-weight:500;line-height:1.1;color:#AA2E2D;margin-top:10px;margin-bottom:15px;font-size:24px;padding:12px 0 12px 0;border-bottom:1px solid #dddddd;border-top:1px solid #dddddd;white-space:normal;background-color:#FFFFFF;">
Informations de vol
</h4>
<p style="margin:0;">Numéro du vol d'arrivée :<?php if (isset($postdata['MEI_ArrivalFlightNo']))
echo $postdata['MEI_ArrivalFlightNo']; ?></p>
<p style="margin:0;">
Heure d'arrivée :<?php if (isset($postdata['MEI_ArrivalTime']))
echo $postdata['MEI_ArrivalTime']; ?>
</p>
<p style="margin:0;">
Numéro du vol de départ :<?php if (isset($postdata['MEI_DepartureFlightNo']))
echo $postdata['MEI_DepartureFlightNo']; ?>
</p>
<p style="margin:0;">
Heure de départ :<?php if (isset($postdata['MEI_DepartureTime']))
echo $postdata['MEI_DepartureTime']; ?>
</p>
<h4 class="text-red"
style="box-sizing:border-box;font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-weight:500;line-height:1.1;color:#AA2E2D;margin-top:10px;margin-bottom:15px;font-size:24px;padding:12px 0 12px 0;border-bottom:1px solid #dddddd;border-top:1px solid #dddddd;white-space:normal;background-color:#FFFFFF;">
Demande spéciale
</h4>
<p style="margin:0;">
<?php if (isset($postdata['special_request']))
echo $postdata['special_request']; ?>
<br />
</p>
<h4 class="text-red"
style="box-sizing:border-box;font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-weight:500;line-height:1.1;color:#AA2E2D;margin-top:10px;margin-bottom:15px;font-size:24px;padding:12px 0 12px 0;border-bottom:1px solid #dddddd;border-top:1px solid #dddddd;white-space:normal;background-color:#FFFFFF;">
Informations sur l'assurance
</h4>
<p style="margin:0;">
<?php if (isset($postdata['insurance_information']))
echo $postdata['insurance_information']; ?>
<br />
</p>
<h4 class="text-red"
style="box-sizing:border-box;font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-weight:500;line-height:1.1;color:#AA2E2D;margin-top:10px;margin-bottom:15px;font-size:24px;padding:12px 0 12px 0;border-bottom:1px solid #dddddd;border-top:1px solid #dddddd;white-space:normal;background-color:#FFFFFF;">
Informations de contact d'urgence
</h4>
<p style="margin:0;">
Nom du contact :<?php if (isset($postdata['emergency_person_name']))
echo $postdata['emergency_person_name']; ?>
</p>
<p style="margin:0;">
Relation avec le/la :<?php if (isset($postdata['emergency_relationship']))
echo $postdata['emergency_relationship']; ?>
</p>
<p style="margin:0;">
Adresse e-mail :<?php if (isset($postdata['emergency_email']))
echo $postdata['emergency_email']; ?>
</p>
<p style="margin:0;">
Téléphone :<?php if (isset($postdata['emergency_telephone']))
echo $postdata['emergency_telephone']; ?>
</p>