[ Avaa Bypassed ]




Upload:

Command:

www-data@18.216.67.249: ~ $
<?php

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

class Product_Model extends MY_Model {

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

    public function get_product_list($school_id = null) {

        if(!$school_id){
            $school_id = $this->session->userdata('school_id');
        }
        
        $this->db->select('P.*, C.name AS category_name, W.name AS warehouse_name, S.school_name');
        $this->db->from('item_products AS P');
        $this->db->join('item_categories AS C', 'C.id = P.category_id', 'left');
        $this->db->join('item_warehouses AS W', 'W.id = P.warehouse_id', 'left');
        $this->db->join('schools AS S', 'S.id = P.school_id', 'left');
        
        $this->db->where('W.school_id', $school_id);        

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

    public function get_single_product($id) {

        $this->db->select('P.*, C.name AS category_name, W.name AS warehouse_name, S.school_name');
        $this->db->from('item_products AS P');
        $this->db->join('item_categories AS C', 'C.id = P.category_id', 'left');
        $this->db->join('item_warehouses AS W', 'W.id = P.warehouse_id', 'left');
        $this->db->join('schools AS S', 'S.id = P.school_id', 'left');
        $this->db->where('P.id', $id);
        return $this->db->get()->row();
    }

    function duplicate_check($school_id, $name, $id = null) {

        if ($id) {
            $this->db->where_not_in('id', $id);
        }

        $this->db->where('school_id', $school_id);
        $this->db->where('name', $name);
        return $this->db->get('item_products')->num_rows();
    }

}

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