0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 3.145.105.199


Current Path : /var/www/html/mcu/js/
Upload File :
Current File : /var/www/html/mcu/js/recociliaton.js

function callReconciliation()
{
    $("#page_main_div").load('html_modules/recociliaton.html',function()
	{ 
	document.getElementById('display_module_name').innerHTML = 'Exam Recociliaton';
	document.getElementById('module_name_for_save').value = 'Exam Recociliaton';	
	getDefaultHeadFooterLinks("Reconciliation Report"); 
	}
	);	
	 	
}

function genarateReconciliation()
{
	if(trim($("#degree_from").val()) == '')
	{
		alert('Please Enter From Degree');
		$("#degree_from").focus();
		return;
	}
	
	if(trim($("#degree_to").val()) == '')
	{
		alert('Please Enter To Degree');
		$("#degree_to").focus();
		return;
	}

	if(trim($("#app_from").val()) == '')
	{
		alert('Please Enter From Application Number');
		$("#app_from").focus();
		return;
	}
	
	if(trim($("#app_to").val()) == '')
	{
		alert('Please Enter To Application Number');
		$("#app_to").focus();
		return;
	}

	var paramerters = "&degree_from="+trim($("#degree_from").val())+"&degree_to="+trim($("#degree_to").val())+"&app_from="+trim($("#app_from").val())+"&app_to="+trim($("#app_to").val());


	window.location.href = $host_url+"genarateReconciliation.demo"+paramerters; 			
}