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.144.105.101
var $host_url="https://"+window.location.host+"/"+window.location.pathname.split('/')[1]+"/app.php?a=";
function qpIndent(){
$('#loadtab').load('html_modules/qpIndent.html?v='+version, () =>
loadUnivs('univname'),
getdeggrp() );
}
function getReport(){
var univcode = $("#univname").val();
var deggrp = $("#deggrp").val();
var reportType = $("#reportType").val();
// console.log("univcodedeggrpreportType",univcode,deggrp,reportType);
if(univcode == null || deggrp == null || reportType == null){
alert("Please select all options to get reports");
}
else{
if ($('#ResetData').is(":checked")) {
console.log("checked");
window.location.href=$host_url+"getqpIndentReport&univcode="+univcode+"&dgp="+deggrp+"&rt="+reportType+"&rd=resetdata";
} else {
console.log("notchecked");
window.location.href=$host_url+"getqpIndentReport&univcode="+univcode+"&dgp="+deggrp+"&rt="+reportType;
}
}
}
|