| 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/activities/ |
Upload File : |
<script src="<?php echo $this->baseUrl('public/js/activities/activities.js'); ?>"></script>
<form name="frm-customize-group-amount" id="frm-customize-group-amount" method="post">
<table class="table table-bordered no-margin">
<thead>
<tr class="alert alert-success">
<th><strong>Pax</strong></th>
<th colspan="2" class="text-center"><strong>Cost for Natives (INR)</strong></th>
<th colspan="2" class="text-center"><strong>Cost for Foreigners (INR)</strong></th>
<th><strong>Action</strong></th>
</tr>
<tr class="alert alert-info">
<td> </td>
<td class="text-center">Adult</td>
<td class="text-center">Kids</td>
<td class="text-center">Adult</td>
<td class="text-center">Kids</td>
<td></td>
</tr>
<tr>
<td><input type="text" id="PaxCount" name="PaxCount" maxlength="3" class="form-control ratetxtwidth42 whbg numberonly"></td>
<td class="text-center"><input type="text" id="TotalCostNativeAdult" name="TotalCostNativeAdult" maxlength="8" class="form-control whbg priceonly"></td>
<td class="text-center"><input type="text" id="TotalCostNativeChild" name="TotalCostNativeChild" maxlength="8" class="form-control whbg priceonly"></td>
<td class="text-center"><input type="text" id="TotalCostForeignerChild" name="TotalCostForeignerChild" maxlength="8" class="form-control whbg priceonly"></td>
<td class="text-center"><input type="text" id="TotalCostForeignerAdult" name="TotalCostForeignerAdult" maxlength="8" class="form-control whbg priceonly"></td>
<td><button type="button" data-original-title="Add" class="btn btn-xs btn-success tooltipLink" data-toggle="tooltip" data-placement="top" title="" onclick="addCustomizedGroup('<?php echo $this->InvnItemSysId; ?>')"><i class="fa fa-fw fa-arrows"></i></button></td>
</tr>
</thead>
<tbody>
<?php
$arrCustomizedGroupList = $this->arrCustomizedGroupList;
if(count($arrCustomizedGroupList)>0){
foreach($arrCustomizedGroupList as $arrCustomizedGroup)
{
?>
<tr>
<td><?php echo $arrCustomizedGroup['PaxCount'];?></td>
<td class="text-center"><?php echo $arrCustomizedGroup['TotalCostNativeAdult'];?></td>
<td class="text-center"><?php echo $arrCustomizedGroup['TotalCostNativeChild'];?></td>
<td class="text-center"><?php echo $arrCustomizedGroup['TotalCostForeignerAdult'];?></td>
<td class="text-center"><?php echo $arrCustomizedGroup['TotalCostForeignerChild'];?></td>
<td><button type="button" data-original-title="Delete" class="btn btn-xs btn-danger tooltipLink" data-toggle="tooltip" data-placement="top" title="" onclick="deleteGroupSettings('<?php echo $arrCustomizedGroup['InvnItemSysId']; ?>','GROUP','<?php echo $arrCustomizedGroup['PaxCount']; ?>')"><i class="fa fa-trash-o"></i></button></td>
</tr>
<?php } } else { ?>
<tr><td colspan="6" class="red">No record found.</td> </tr>
<?php } ?>
</tbody>
</table>
</form>