| Server IP : 103.234.187.230 / Your IP : 216.73.216.216 Web Server : Apache System : Linux lserver42043-ind.megavelocity.net 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/b2c.hellogtx.com/application/views/scripts/flight/ |
Upload File : |
<?php
$CurrencyRate = $this->CurrencyRate;
$CurrencyTitle = $this->CurrencyTitle;
$FairRules = $this->FairRules;
$Data = $FlightBookingData = $this->Data;
// echo"<pre>";print_r($Data);echo"</pre>";
$DataInbound = $this->DataInbound;
$BaggageInb = $DataInbound['Segments'][0];
$arrFlightClass = Zend_Controller_Action_HelperBroker::getStaticHelper('Flight')->getFlightClasses();
$intOtherCharges = $Data['FairRules']['OtherCharges'];
$intOtherChargesInb = isset($DataInbound['FairRules']['OtherCharges']) ? $DataInbound['FairRules']['OtherCharges'] : 0;
$intBaseFare = $Data['FairRules']['BaseFare'];
$intTax = $Data['FairRules']['Tax'];
$intAdditionalTxnFeePub = $Data['FairRules']['AdditionalTxnFeePub'];
$intServiceFee = $Data['FairRules']['ServiceFee'];
$intServiceFeeInb = isset($DataInbound['FairRules']['ServiceFee']) ? $DataInbound['FairRules']['ServiceFee'] : 0;
$intPublishedFare = $Data['FairRules']['PublishedFare'];
$intPublishedFareInb = isset($DataInbound['FairRules']['PublishedFare']) ? $DataInbound['FairRules']['PublishedFare'] : 0;
$intFarePerHeadPublish = $intBaseFare + $intTax + $intOtherCharges;
$intNetPublishedFare = 0;
$AdditionalTxnFeePub = 0;
$TotalBaseFare = 0;
$AdditionalTxnFeePubR = 0;
$TotalTaxsandFees = 0;
?>
<table class="table table-bordered" style="font-size: 14px;">
<tr>
<th width="12% !important">Sector</th>
<th>Checkin</th>
<th>Cabin</th>
</tr>
<?php
if ($FairRules['tripbinfo']) {
foreach ($FairRules['tripbinfo'] as $key => $val) {
ksort($val);
?>
<tr ng-repeat="value in tripbaggageinfoKeys track by $index">
<td><?=$key?></td>
<td>
<?php foreach($val as $paxtypes=>$value){ ?>
<span style="padding: 4px; line-height: 18px;"> <b><?=$paxtypes?></b>: <?=$value['checkin']?></span>
<?php } ?>
</td>
<td>
<?php foreach($val as $paxtypes=>$value){ ?>
<span style="padding: 4px; line-height: 18px;"> <b><?=$paxtypes?></b>: <?=$value['cabin']?></span>
<?php } ?>
</td>
</tr>
<?php
}
}
?>
</table>