load->model('purchaseorder_model'); $this->load->library('session'); $this->load->library('form_validation'); $this->isLoggedIn(); } /** * This function used to load the first screen of the user */ function requisition() { $this->global['pageTitle'] = 'Siddharth : Raise Requisition'; $data['RequestType'] = $this->purchaseorder_model->getConfigValue('C004'); $data['EmpList'] = $this->purchaseorder_model->getAllEmployees(); $data['MaterialList'] = $this->purchaseorder_model->getRawMaterialList(); $data['CostCenter'] = $this->purchaseorder_model->getCostCenter(); $this->loadViews("requisitionform", $this->global, $data,null); } function pageNotFound() { $this->global['pageTitle'] = 'CodeInsect : 404 - Page Not Found'; $this->loadViews("404", $this->global, NULL, NULL); } } ?>