| 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/b2bzend/application/views/scripts/hotel/ |
Upload File : |
<form name="frmMarkupGrid" id="frmMarkupGrid" method="POST">
<div class="table-responsivenew">
<table class="table table-bordered no-margin">
<thead>
<tr class="alert alert-success">
<th><strong>Market Place</strong></th>
<th><strong>Permission</strong></th>
<th><strong>Markup Type</strong></th>
<th colspan="5" class="text-center"><strong>Offer Price</strong></th>
<th><strong>T & C</strong></th>
</tr>
<tr class="alert alert-info">
<td colspan="3"> </td>
<td class="text-center small"><strong>Double occupancy</strong></td>
<td class="text-center small"><strong>Single occupancy</strong></td>
<td class="text-center small"><strong>Extra with bed</strong></td>
<td class="text-center small"><strong>Extra W/O bed</strong></td>
<td class="text-center small"><strong>Tax (%)</strong></td>
<td> </td>
</tr>
<tr class="alert alert-warning">
<td colspan="3" class="text-center"><strong>Rack Rate<i class="fa fa-long-arrow-right"></i></strong></td>
<td class="text-center small"><strong><?php echo $this->arrMPInventoryAccomList['CurrencySymbol']?> : <?php echo $this->DOccupCost; ?></strong></td>
<td class="text-center small"><strong><?php echo $this->arrMPInventoryAccomList['CurrencySymbol']?> : <?php echo $this->SOccupCost; ?></strong></td>
<td class="text-center small"><strong><?php echo $this->arrMPInventoryAccomList['CurrencySymbol']?> : <?php echo $this->ExtraBedCost; ?></strong></td>
<td class="text-center small"><strong><?php echo $this->arrMPInventoryAccomList['CurrencySymbol']?> : <?php echo $this->ExtraWOBedCost; ?></strong></td>
<td class="text-center small"><strong><?php echo $this->Tax; ?></strong></td>
<td> </td>
</tr>
<tr class="alert alert-warning">
<td colspan="3" class="text-center"><strong>Net Rate<i class="fa fa-long-arrow-right"></i></strong></td>
<td class="text-center small"><strong><?php echo $this->arrMPInventoryAccomList['CurrencySymbol']?> : <?php echo $this->NetDOccupCost; ?></strong></td>
<td class="text-center small"><strong><?php echo $this->arrMPInventoryAccomList['CurrencySymbol']?> : <?php echo $this->NetSOccupCost; ?></strong></td>
<td class="text-center small"><strong><?php echo $this->arrMPInventoryAccomList['CurrencySymbol']?> : <?php echo $this->NetExtraBedCost; ?></strong></td>
<td class="text-center small"><strong><?php echo $this->arrMPInventoryAccomList['CurrencySymbol']?> : <?php echo $this->NetExtraWOBedCost; ?></strong></td>
<td class="text-center small"><strong><?php echo $this->NetTax; ?></strong></td>
<td> </td>
</tr>
</thead>
<tbody>
<?php
$arrPermissions = Zend_Controller_Action_HelperBroker::getStaticHelper('B2B')->getPermissions();
if(!empty($this->arrMarkupList) ) {
foreach($this->arrMarkupList as $markups) {
?>
<tr>
<td><?php echo $markups['MPType']; ?></td>
<td><?php echo $arrPermissions[$markups['IsActive']] ?></td>
<td><?php echo ($markups['MarkUpType']==1)?'Fixed':'Percentage';?></td>
<td class="text-center"><?php echo $markups['DOccupMarkUp']; ?></td>
<td class="text-center"><?php echo $markups['SOccupMarkUp']; ?></td>
<td class="text-center"><?php echo $markups['ExtraBedMarkUp']; ?></td>
<td class="text-center"><?php echo $markups['ExtraWOBedMarkUp']; ?></td>
<td class="text-center"><?php echo $markups['Tax']; ?></td>
<td style="position:relative;">
<a href="javascript:void(0);" class="viewtxt" onclick="viewTermsAndConditions('<?php echo $markups['InvnItemSysId']; ?>','<?php echo $markups['MPType_id']; ?>')">View</a>
<div class="viewBoxContainer" id="viewBoxContainer-<?php echo $markups['InvnItemSysId']; ?>-<?php echo $markups['MPType_id']; ?>" style="display:none;">
<div class="form-group form-group1 viewBoxContainercontent">
<?php echo $markups['Details']; ?>
</div>
<div class="col-md-12 no-padding text-right">
<a href="javascript:void(0);" class="btn btn-default btn-round btn-sm closetxt" onclick="closeTermsAndConditions('<?php echo $markups['InvnItemSysId']; ?>','<?php echo $markups['MPType_id']; ?>')">Close</a>
</div>
</div>
</td>
</tr>
<?php }
} else { ?>
<tr><td colspan="10" class="red">No record found.</td>
<?php } ?>
<tr><td colspan="10" align="right"><a href="/hotel" class="btn btn-warning btn-sm"> Finish & Manage Inventory</a></td></tr>
</tbody>
</table>
</div>
</form>