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 : 13.58.163.18
function callFeeReportLsys()
{
$("#page_main_div").load('html_modules/FeeReportLsys.html?v=28072017',function()
{
document.getElementById('display_module_name').innerHTML = 'Fee Report';
document.getElementById('module_name_for_save').value = 'Fee Report';
getDefaultHeadFooterLinks("Fee Report Lsys");
}
);
}
function GenerateFeeReportLsys()
{
var reportype = $("#reportype").val();
var date_from = $("#date_from").val();
var date_to = $("#date_to").val();
if(date_from == '')
{
alert('Please Enter From Date.');
document.getElementById('date_from').focus();
return false;
}
if(date_to == '')
{
alert('Please Enter To Date.');
document.getElementById('date_to').focus();
return false;
}
window.location.href = $host_url+"Generateansbookstatistics&reportype="+reportype+"&date_from="+date_from+"&date_to="+date_to;
}
|