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.133.155.253
function LoadRevaluationReport()
{
$("#page_main_div").load('html_modules/revaluation_report.html',function()
{
$geditinternalcode=0;
window.enable_proper_module="enableLoadRevaluationReport";
document.getElementById('display_module_name').innerHTML = 'Revaluation Report';
document.getElementById('module_name_for_save').value = 'SaveRevaluationReport';
getDefaultHeadFooterLinks("Revaluation Report");
});
}
function GenerateRevalutionReport()
{
var str="&reval_degree_code="+trim(($("#report_revaluation_degree_code").val()));
str+="&reval_from_Exam_no="+ ($("#revaluation_from_Exam_no").val());
str+="&reval_to_Exam_no="+($("#revaluation_to_Exam_no").val())
str+="&reval_from_reg_no="+($("#revalution_from_reg_no").val())
str+="&reval_to_reg_no="+trim($("#revalution_to_reg_no").val());
str+="&revalution_from_date="+date_format($("#revalution_from_date").val());
str+="&revalution_to_date="+date_format($("#revalution_to_date").val());
//alert(str);
window.location.href = $host_url+"GenerateRevalutionReport.demo"+str;
}
|