| 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 type="text/javascript" src="<?php echo $this->baseUrl('public/js/functions.js'); ?>"></script>
<div class="modal-header">
<?php if($this->key=="single") { ?>
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<?php } else { ?>
<button type="button" class="close" data-dismiss="modal" aria-hidden="true" onclick="showPoliciesPopup('<?php echo $this->InvnItemSysId; ?>','STANDARDPOLICIES');">×</button>
<?php } ?>
<h4 class="modal-title" id="myModalLabel">Manage Mark Ups (<?php echo $this->arrActivitiesInventoryList['0']['Title'];?>)</h4>
</div>
<div class="modal-body">
<div class="col-md-12 no-padding">
<div class="form-group form-group1">
<label class="inlinebl">Mark Up Setting : </label>
<label class="radio inlinebl standard" onclick="viewMarkupSetting('<?php echo $this->InvnItemSysId; ?>','STANDARD')">
<div class="iradio_flat" style="position: relative;">
<input type="radio" <?php if($this->popupType=="STANDARD") { echo "checked"; } ?> class="icheck-black" value="S" id="optionsRadios2" name="optMarkupSettings" style="position: absolute; top: -20%; left: -20%; display: block; width: 140%; height: 140%; margin: 0px; padding: 0px; background: rgb(255, 255, 255) none repeat scroll 0% 0%; border: 0px none; opacity: 0;"><ins class="iCheck-helper" style="position: absolute; top: -20%; left: -20%; display: block; width: 140%; height: 140%; margin: 0px; padding: 0px; background: rgb(255, 255, 255) none repeat scroll 0% 0%; border: 0px none; opacity: 0;"></ins></div>
Standard
</label>
<label class="radio inlinebl customize" onclick="viewMarkupSetting('<?php echo $this->InvnItemSysId; ?>','CUSTOMIZE')">
<div class="iradio_flat" style="position: relative;">
<input type="radio" <?php if($this->popupType=="CUSTOMIZE") { echo "checked"; } ?> class="icheck-black" value="C" id="optionsRadios2" name="optMarkupSettings" style="position: absolute; top: -20%; left: -20%; display: block; width: 140%; height: 140%; margin: 0px; padding: 0px; background: rgb(255, 255, 255) none repeat scroll 0% 0%; border: 0px none; opacity: 0;"><ins class="iCheck-helper" style="position: absolute; top: -20%; left: -20%; display: block; width: 140%; height: 140%; margin: 0px; padding: 0px; background: rgb(255, 255, 255) none repeat scroll 0% 0%; border: 0px none; opacity: 0;"></ins></div>
Customize
</label>
</div>
</div>
<div class="col-md-12 no-padding">
<div class="panel-body table-responsive no-padding no-border" id="markup-settings-grid-content">
</div>
</div>
<div class="clear"></div></div>
<div class="modal-footer">
<?php if($this->key=="single") { ?>
<button type="button" class="btn btn-default btn-round" data-dismiss="modal">Exit</button>
<?php } else { ?>
<button type="button" class="btn btn-default btn-round" data-dismiss="modal" onclick="showPoliciesPopup('<?php echo $this->InvnItemSysId; ?>','STANDARDPOLICIES');">Exit</button>
<?php } ?>
</div>
<script type="text/javascript">
$().ready(function() {
viewMarkupSettingGrid('<?php echo $this->InvnItemSysId; ?>','<?php echo $this->popupType; ?>');
});
function showPoliciesPopup(itemId, popupType)
{
$("#myModalPolicy").modal({
remote: '/activities/manage-policies/id/' + itemId + '/popupType/' + popupType
});
}
</script>
<!--Layout Script start -->
<script type="text/javascript">
$(".nativesStandard").click(function(){
$(".natives_Standard").show();
$(".foreigners_Standard").hide();
});
$(".foreignersStandard").click(function(){
$(".natives_Standard").hide();
$(".foreigners_Standard").show();
});
$(".nativesCustomize").click(function(){
$(".natives_Customize").show();
$(".foreigners_Customize").hide();
});
$(".foreignersCustomize").click(function(){
$(".natives_Customize").hide();
$(".foreigners_Customize").show();
});
</script>