File: /home/jairicem/alfijiri.com/app/controllers/admin/Suppliers.php
<?php
defined('BASEPATH') or exit('No direct script access allowed');
class Suppliers extends MY_Controller
{
public function __construct()
{
parent::__construct();
if (!$this->loggedIn) {
$this->session->set_userdata('requested_page', $this->uri->uri_string());
$this->sma->md('login');
}
if ($this->Customer || $this->Supplier) {
$this->session->set_flashdata('warning', lang('access_denied'));
redirect($_SERVER['HTTP_REFERER']);
}
$this->lang->admin_load('suppliers', $this->Settings->user_language);
$this->load->library('form_validation');
$this->load->admin_model('companies_model');
}
public function add()
{
$this->sma->checkPermissions(false, true);
$this->form_validation->set_rules('email', $this->lang->line('email_address'), 'is_unique[companies.email]');
if ($this->form_validation->run('companies/add') == true) {
$data = [
'name' => $this->input->post('name'),
'email' => $this->input->post('email'),
'group_id' => '4',
'group_name' => 'supplier',
'company' => $this->input->post('company'),
'address' => $this->input->post('address'),
'vat_no' => $this->input->post('vat_no'),
'city' => $this->input->post('city'),
'state' => $this->input->post('state'),
'postal_code' => $this->input->post('postal_code'),
'country' => $this->input->post('country'),
'phone' => $this->input->post('phone'),
'cf1' => $this->input->post('cf1'),
'cf2' => $this->input->post('cf2'),
'cf3' => $this->input->post('cf3'),
'cf4' => $this->input->post('cf4'),
'cf5' => $this->input->post('cf5'),
'cf6' => $this->input->post('cf6'),
'gst_no' => $this->input->post('gst_no'),
];
} elseif ($this->input->post('add_supplier')) {
$this->session->set_flashdata('error', validation_errors());
admin_redirect('suppliers');
}
if ($this->form_validation->run() == true && $sid = $this->companies_model->addCompany($data)) {
$this->session->set_flashdata('message', $this->lang->line('supplier_added'));
$ref = isset($_SERVER['HTTP_REFERER']) ? explode('?', $_SERVER['HTTP_REFERER']) : null;
admin_redirect($ref[0] . '?supplier=' . $sid);
} else {
$this->data['error'] = (validation_errors() ? validation_errors() : $this->session->flashdata('error'));
$this->data['modal_js'] = $this->site->modal_js();
$this->load->view($this->theme . 'suppliers/add', $this->data);
}
}
public function add_user($company_id = null)
{
$this->sma->checkPermissions(false, true);
if ($this->input->get('id')) {
$company_id = $this->input->get('id');
}
$company = $this->companies_model->getCompanyByID($company_id);
$this->form_validation->set_rules('email', $this->lang->line('email_address'), 'is_unique[users.email]');
$this->form_validation->set_rules('password', $this->lang->line('password'), 'required|min_length[8]|max_length[20]|matches[password_confirm]');
$this->form_validation->set_rules('password_confirm', $this->lang->line('confirm_password'), 'required');
if ($this->form_validation->run('companies/add_user') == true) {
$active = $this->input->post('status');
$notify = $this->input->post('notify');
list($username, $domain) = explode('@', $this->input->post('email'));
$email = strtolower($this->input->post('email'));
$password = $this->input->post('password');
$additional_data = [
'first_name' => $this->input->post('first_name'),
'last_name' => $this->input->post('last_name'),
'phone' => $this->input->post('phone'),
'gender' => $this->input->post('gender'),
'company_id' => $company->id,
'company' => $company->company,
'group_id' => 3,
];
$this->load->library('ion_auth');
} elseif ($this->input->post('add_user')) {
$this->session->set_flashdata('error', validation_errors());
admin_redirect('suppliers');
}
if ($this->form_validation->run() == true && $this->ion_auth->register($username, $password, $email, $additional_data, $active, $notify)) {
$this->session->set_flashdata('message', $this->lang->line('user_added'));
admin_redirect('suppliers');
} else {
$this->data['error'] = (validation_errors() ? validation_errors() : $this->session->flashdata('error'));
$this->data['modal_js'] = $this->site->modal_js();
$this->data['company'] = $company;
$this->load->view($this->theme . 'suppliers/add_user', $this->data);
}
}
public function delete($id = null)
{
$this->sma->checkPermissions(null, true);
if ($this->input->get('id')) {
$id = $this->input->get('id');
}
if (!$id) {
$this->sma->send_json(['error' => 1, 'msg' => lang('id_not_found')]);
}
if ($this->companies_model->deleteSupplier($id)) {
$this->sma->send_json(['error' => 0, 'msg' => lang('supplier_deleted')]);
} else {
$this->sma->send_json(['error' => 1, 'msg' => lang('supplier_x_deleted_have_purchases')]);
}
}
public function edit($id = null)
{
$this->sma->checkPermissions(false, true);
if ($this->input->get('id')) {
$id = $this->input->get('id');
}
$company_details = $this->companies_model->getCompanyByID($id);
if ($this->input->post('email') != $company_details->email) {
$this->form_validation->set_rules('code', lang('email_address'), 'is_unique[companies.email]');
}
if ($this->form_validation->run('companies/add') == true) {
$data = [
'name' => $this->input->post('name'),
'email' => $this->input->post('email'),
'group_id' => '4',
'group_name' => 'supplier',
'company' => $this->input->post('company'),
'address' => $this->input->post('address'),
'vat_no' => $this->input->post('vat_no'),
'city' => $this->input->post('city'),
'state' => $this->input->post('state'),
'postal_code' => $this->input->post('postal_code'),
'country' => $this->input->post('country'),
'phone' => $this->input->post('phone'),
'cf1' => $this->input->post('cf1'),
'cf2' => $this->input->post('cf2'),
'cf3' => $this->input->post('cf3'),
'cf4' => $this->input->post('cf4'),
'cf5' => $this->input->post('cf5'),
'cf6' => $this->input->post('cf6'),
'gst_no' => $this->input->post('gst_no'),
];
} elseif ($this->input->post('edit_supplier')) {
$this->session->set_flashdata('error', validation_errors());
redirect($_SERVER['HTTP_REFERER']);
}
if ($this->form_validation->run() == true && $this->companies_model->updateCompany($id, $data)) {
$this->session->set_flashdata('message', $this->lang->line('supplier_updated'));
redirect($_SERVER['HTTP_REFERER']);
} else {
$this->data['supplier'] = $company_details;
$this->data['error'] = (validation_errors() ? validation_errors() : $this->session->flashdata('error'));
$this->data['modal_js'] = $this->site->modal_js();
$this->load->view($this->theme . 'suppliers/edit', $this->data);
}
}
public function getSupplier($id = null)
{
// $this->sma->checkPermissions('index');
$row = $this->companies_model->getCompanyByID($id);
$this->sma->send_json([['id' => $row->id, 'text' => $row->company]]);
}
public function getSuppliers()
{
$this->sma->checkPermissions('index');
$this->load->library('datatables');
$this->datatables
->select('id, company, name, email, phone, city, country, vat_no, gst_no')
->from('companies')
->where('group_name', 'supplier')
->add_column('Actions', "<div class=\"text-center\"><a class=\"tip\" title='" . $this->lang->line('list_products') . "' href='" . admin_url('products?supplier=$1') . "'><i class=\"fa fa-list\"></i></a> <a class=\"tip\" title='" . $this->lang->line('list_users') . "' href='" . admin_url('suppliers/users/$1') . "' data-toggle='modal' data-target='#myModal'><i class=\"fa fa-users\"></i></a> <a class=\"tip\" title='" . $this->lang->line('add_user') . "' href='" . admin_url('suppliers/add_user/$1') . "' data-toggle='modal' data-target='#myModal'><i class=\"fa fa-plus-circle\"></i></a> <a class=\"tip\" title='" . $this->lang->line('edit_supplier') . "' href='" . admin_url('suppliers/edit/$1') . "' data-toggle='modal' data-target='#myModal'><i class=\"fa fa-edit\"></i></a> <a href='#' class='tip po' title='<b>" . $this->lang->line('delete_supplier') . "</b>' data-content=\"<p>" . lang('r_u_sure') . "</p><a class='btn btn-danger po-delete' href='" . admin_url('suppliers/delete/$1') . "'>" . lang('i_m_sure') . "</a> <button class='btn po-close'>" . lang('no') . "</button>\" rel='popover'><i class=\"fa fa-trash-o\"></i></a></div>", 'id');
//->unset_column('id');
echo $this->datatables->generate();
}
public function import_csv()
{
$this->sma->checkPermissions('add', true);
$this->load->helper('security');
$this->form_validation->set_rules('csv_file', $this->lang->line('upload_file'), 'xss_clean');
if ($this->form_validation->run() == true) {
if (DEMO) {
$this->session->set_flashdata('warning', $this->lang->line('disabled_in_demo'));
redirect($_SERVER['HTTP_REFERER']);
}
if (isset($_FILES['csv_file'])) {
$this->load->library('upload');
$config['upload_path'] = 'files/';
$config['allowed_types'] = 'csv';
$config['max_size'] = '2000';
$config['overwrite'] = false;
$config['encrypt_name'] = true;
$this->upload->initialize($config);
if (!$this->upload->do_upload('csv_file')) {
$error = $this->upload->display_errors();
$this->session->set_flashdata('error', $error);
admin_redirect('suppliers');
}
$csv = $this->upload->file_name;
$arrResult = [];
$handle = fopen('files/' . $csv, 'r');
if ($handle) {
while (($row = fgetcsv($handle, 5001, ',')) !== false) {
$arrResult[] = $row;
}
fclose($handle);
}
$titles = array_shift($arrResult);
$rw = 2;
$updated = '';
$data = [];
foreach ($arrResult as $key => $value) {
$supplier = [
'company' => isset($value[0]) ? trim($value[0]) : '',
'name' => isset($value[1]) ? trim($value[1]) : '',
'email' => isset($value[2]) ? trim($value[2]) : '',
'phone' => isset($value[3]) ? trim($value[3]) : '',
'address' => isset($value[4]) ? trim($value[4]) : '',
'city' => isset($value[5]) ? trim($value[5]) : '',
'state' => isset($value[6]) ? trim($value[6]) : '',
'postal_code' => isset($value[7]) ? trim($value[7]) : '',
'country' => isset($value[8]) ? trim($value[8]) : '',
'vat_no' => isset($value[9]) ? trim($value[9]) : '',
'gst_no' => isset($value[10]) ? trim($value[10]) : '',
'cf1' => isset($value[11]) ? trim($value[11]) : '',
'cf2' => isset($value[12]) ? trim($value[12]) : '',
'cf3' => isset($value[13]) ? trim($value[13]) : '',
'cf4' => isset($value[14]) ? trim($value[14]) : '',
'cf5' => isset($value[15]) ? trim($value[15]) : '',
'cf6' => isset($value[16]) ? trim($value[16]) : '',
'group_id' => 4,
'group_name' => 'supplier',
];
if (empty($supplier['company']) || empty($supplier['name']) || empty($supplier['email'])) {
$this->session->set_flashdata('error', lang('company') . ', ' . lang('name') . ', ' . lang('email') . ' ' . lang('are_required') . ' (' . lang('line_no') . ' ' . $rw . ')');
admin_redirect('suppliers');
} else {
if ($this->Settings->indian_gst && empty($supplier['state'])) {
$this->session->set_flashdata('error', lang('state') . ' ' . lang('is_required') . ' (' . lang('line_no') . ' ' . $rw . ')');
admin_redirect('suppliers');
}
if ($supplier_details = $this->companies_model->getCompanyByEmail($supplier['email'])) {
if ($supplier_details->group_id == 4) {
$updated .= '<p>' . lang('supplier_updated') . ' (' . $supplier['email'] . ')</p>';
$this->companies_model->updateCompany($supplier_details->id, $supplier);
}
} else {
$data[] = $supplier;
}
$rw++;
}
}
// $this->sma->print_arrays($data, $updated);
}
} elseif ($this->input->post('import')) {
$this->session->set_flashdata('error', validation_errors());
admin_redirect('suppliers');
}
if ($this->form_validation->run() == true && !empty($data)) {
if ($this->companies_model->addCompanies($data)) {
$this->session->set_flashdata('message', $this->lang->line('suppliers_added') . $updated);
admin_redirect('suppliers');
}
} else {
if (isset($data) && empty($data)) {
if ($updated) {
$this->session->set_flashdata('message', $updated);
} else {
$this->session->set_flashdata('warning', lang('data_x_suppliers'));
}
admin_redirect('suppliers');
}
$this->data['error'] = (validation_errors() ? validation_errors() : $this->session->flashdata('error'));
$this->data['modal_js'] = $this->site->modal_js();
$this->load->view($this->theme . 'suppliers/import', $this->data);
}
}
public function index($action = null)
{
$this->sma->checkPermissions();
$this->data['error'] = (validation_errors()) ? validation_errors() : $this->session->flashdata('error');
$this->data['action'] = $action;
$bc = [['link' => base_url(), 'page' => lang('home')], ['link' => '#', 'page' => lang('suppliers')]];
$meta = ['page_title' => lang('suppliers'), 'bc' => $bc];
$this->page_construct('suppliers/index', $meta, $this->data);
}
public function suggestions($term = null, $limit = null)
{
// $this->sma->checkPermissions('index');
if ($this->input->get('term')) {
$term = $this->input->get('term', true);
}
$term = addslashes($term);
$limit = $this->input->get('limit', true);
$rows['results'] = $this->companies_model->getSupplierSuggestions($term, $limit);
$this->sma->send_json($rows);
}
public function supplier_actions()
{
if (!$this->Owner && !$this->GP['bulk_actions']) {
$this->session->set_flashdata('warning', lang('access_denied'));
redirect($_SERVER['HTTP_REFERER']);
}
$this->form_validation->set_rules('form_action', lang('form_action'), 'required');
if ($this->form_validation->run() == true) {
if (!empty($_POST['val'])) {
if ($this->input->post('form_action') == 'delete') {
$this->sma->checkPermissions('delete');
$error = false;
foreach ($_POST['val'] as $id) {
if (!$this->companies_model->deleteSupplier($id)) {
$error = true;
}
}
if ($error) {
$this->session->set_flashdata('warning', lang('suppliers_x_deleted_have_purchases'));
} else {
$this->session->set_flashdata('message', $this->lang->line('suppliers_deleted'));
}
redirect($_SERVER['HTTP_REFERER']);
}
if ($this->input->post('form_action') == 'export_excel') {
$this->load->library('excel');
$this->excel->setActiveSheetIndex(0);
$this->excel->getActiveSheet()->setTitle(lang('customer'));
$this->excel->getActiveSheet()->SetCellValue('A1', lang('company'));
$this->excel->getActiveSheet()->SetCellValue('B1', lang('name'));
$this->excel->getActiveSheet()->SetCellValue('C1', lang('email'));
$this->excel->getActiveSheet()->SetCellValue('D1', lang('phone'));
$this->excel->getActiveSheet()->SetCellValue('E1', lang('address'));
$this->excel->getActiveSheet()->SetCellValue('F1', lang('city'));
$this->excel->getActiveSheet()->SetCellValue('G1', lang('state'));
$this->excel->getActiveSheet()->SetCellValue('H1', lang('postal_code'));
$this->excel->getActiveSheet()->SetCellValue('I1', lang('country'));
$this->excel->getActiveSheet()->SetCellValue('J1', lang('vat_no'));
$this->excel->getActiveSheet()->SetCellValue('K1', lang('gst_no'));
$this->excel->getActiveSheet()->SetCellValue('L1', lang('scf1'));
$this->excel->getActiveSheet()->SetCellValue('M1', lang('scf2'));
$this->excel->getActiveSheet()->SetCellValue('N1', lang('scf3'));
$this->excel->getActiveSheet()->SetCellValue('O1', lang('scf4'));
$this->excel->getActiveSheet()->SetCellValue('P1', lang('scf5'));
$this->excel->getActiveSheet()->SetCellValue('Q1', lang('scf6'));
$row = 2;
foreach ($_POST['val'] as $id) {
$customer = $this->site->getCompanyByID($id);
$this->excel->getActiveSheet()->SetCellValue('A' . $row, $customer->company);
$this->excel->getActiveSheet()->SetCellValue('B' . $row, $customer->name);
$this->excel->getActiveSheet()->SetCellValue('C' . $row, $customer->email);
$this->excel->getActiveSheet()->SetCellValue('D' . $row, $customer->phone);
$this->excel->getActiveSheet()->SetCellValue('E' . $row, $customer->address);
$this->excel->getActiveSheet()->SetCellValue('F' . $row, $customer->city);
$this->excel->getActiveSheet()->SetCellValue('G' . $row, $customer->state);
$this->excel->getActiveSheet()->SetCellValue('H' . $row, $customer->postal_code);
$this->excel->getActiveSheet()->SetCellValue('I' . $row, $customer->country);
$this->excel->getActiveSheet()->SetCellValue('J' . $row, $customer->vat_no);
$this->excel->getActiveSheet()->SetCellValue('K' . $row, $customer->gst_no);
$this->excel->getActiveSheet()->SetCellValue('L' . $row, $customer->cf1);
$this->excel->getActiveSheet()->SetCellValue('M' . $row, $customer->cf2);
$this->excel->getActiveSheet()->SetCellValue('N' . $row, $customer->cf3);
$this->excel->getActiveSheet()->SetCellValue('O' . $row, $customer->cf4);
$this->excel->getActiveSheet()->SetCellValue('P' . $row, $customer->cf5);
$this->excel->getActiveSheet()->SetCellValue('Q' . $row, $customer->cf6);
$row++;
}
$this->excel->getActiveSheet()->getColumnDimension('A')->setWidth(20);
$this->excel->getActiveSheet()->getColumnDimension('B')->setWidth(20);
$this->excel->getActiveSheet()->getColumnDimension('C')->setWidth(20);
$this->excel->getDefaultStyle()->getAlignment()->setVertical('center');
$filename = 'suppliers_' . date('Y_m_d_H_i_s');
$this->load->helper('excel');
create_excel($this->excel, $filename);
}
} else {
$this->session->set_flashdata('error', $this->lang->line('no_supplier_selected'));
redirect($_SERVER['HTTP_REFERER']);
}
} else {
$this->session->set_flashdata('error', validation_errors());
redirect($_SERVER['HTTP_REFERER']);
}
}
public function users($company_id = null)
{
$this->sma->checkPermissions(false, true);
if ($this->input->get('id')) {
$company_id = $this->input->get('id');
}
$this->data['error'] = (validation_errors() ? validation_errors() : $this->session->flashdata('error'));
$this->data['modal_js'] = $this->site->modal_js();
$this->data['company'] = $this->companies_model->getCompanyByID($company_id);
$this->data['users'] = $this->companies_model->getCompanyUsers($company_id);
$this->load->view($this->theme . 'suppliers/users', $this->data);
}
public function view($id = null)
{
$this->sma->checkPermissions('index', true);
$this->data['error'] = (validation_errors()) ? validation_errors() : $this->session->flashdata('error');
$this->data['supplier'] = $this->companies_model->getCompanyByID($id);
$this->load->view($this->theme . 'suppliers/view', $this->data);
}
}