[ Avaa Bypassed ]




Upload:

Command:

www-data@18.216.67.249: ~ $
<?php

if (!defined('BASEPATH'))
    exit('No direct script access allowed');

class Issue_Model extends MY_Model {

    function __construct() {
        parent::__construct();
    }

    public function get_issue_list($school_id = null) {

        if(!$school_id){
            $school_id = $this->session->userdata('school_id');
        }
        
        $this->db->select('I.*, C.name AS category, P.name AS product, R.name AS role_name, S.school_name');
        $this->db->from('item_issues AS I');
        $this->db->join('item_categories AS C', 'C.id = I.category_id', 'left');
        $this->db->join('item_products AS P', 'P.id = I.product_id', 'left');
        $this->db->join('classes AS CL', 'CL.id = I.class_id', 'left');
        $this->db->join('roles AS R', 'R.id = I.role_id', 'left');
        $this->db->join('users AS U', 'U.id = I.user_id', 'left');
        $this->db->join('schools AS S', 'S.id = I.school_id', 'left');

        $this->db->where('I.school_id', $school_id);

        $this->db->where('S.status', 1);
        $this->db->order_by('I.id', 'DESC');
        return $this->db->get()->result();
        
    }

    public function get_single_issue($id) {

        $this->db->select('I.*, C.name AS category, P.name AS product, R.name AS role_name, S.school_name');
        $this->db->from('item_issues AS I');
        $this->db->join('item_categories AS C', 'C.id = I.category_id', 'left');
        $this->db->join('item_products AS P', 'P.id = I.product_id', 'left');
        $this->db->join('classes AS CL', 'CL.id = I.class_id', 'left');
        $this->db->join('roles AS R', 'R.id = I.role_id', 'left');
        $this->db->join('users AS U', 'U.id = I.user_id', 'left');
        $this->db->join('schools AS S', 'S.id = I.school_id', 'left');
        $this->db->where('I.id', $id);
        return $this->db->get()->row();
    }

}

Filemanager

Name Type Size Permission Actions
Category_Model.php File 1.03 KB 0777
Issue_Model.php File 1.87 KB 0777
Product_Model.php File 1.77 KB 0777
Purchase_Model.php File 1.87 KB 0777
Sale_Model.php File 3.65 KB 0777
Supplier_Model.php File 1.3 KB 0777
Warehouse_Model.php File 1.36 KB 0777