changes
This commit is contained in:
@ -17,7 +17,15 @@ class Units extends CI_Controller
|
||||
switch ($alias) {
|
||||
case 'add':
|
||||
if (isset($_POST['submit'])) {
|
||||
$TableData = array(
|
||||
$title = filter_var($_POST['title']);
|
||||
$description = filter_var($_POST['description']);
|
||||
$this->db->where('title',$title);
|
||||
$this->db->or_where('description',$description);
|
||||
$query = $this->db->get('tbl_units');
|
||||
if($query->num_rows() > 0){
|
||||
echo "Title or code already exists.";die;
|
||||
}else{
|
||||
$TableData = array(
|
||||
'title' => filter_var($_POST['title']),
|
||||
'alias' => filter_var($_POST['alias']),
|
||||
'description' => filter_var($_POST['description']),
|
||||
@ -26,33 +34,48 @@ class Units extends CI_Controller
|
||||
'remarks' => filter_var($_POST['remarks']),
|
||||
'created_on' => date('Y-m-d H:i:s'),
|
||||
'created_by' => 'admin',
|
||||
);
|
||||
$this->db->insert('tbl_units', $TableData);
|
||||
redirect("inventory/units/list");
|
||||
);
|
||||
$this->db->insert('tbl_units', $TableData);
|
||||
redirect("inventory/units/list");
|
||||
}
|
||||
|
||||
}
|
||||
loadView("inventory/units/add", $data);
|
||||
break;
|
||||
case 'edit':
|
||||
if (isset($_POST['submit'])) {
|
||||
$id = $this->uri->segment(4);
|
||||
$TableData = array(
|
||||
'title' => filter_var($_POST['title']),
|
||||
'alias' => filter_var($_POST['alias']),
|
||||
'description' => filter_var($_POST['description']),
|
||||
'display_order' => filter_var($_POST['display_order']),
|
||||
'status' => 1,
|
||||
'remarks' => filter_var($_POST['remarks']),
|
||||
'created_on' => date('Y-m-d H:i:s'),
|
||||
'created_by' => 'admin',
|
||||
);
|
||||
$this->db->where('unit_id', $id);
|
||||
$this->db->update('tbl_units', $TableData);
|
||||
redirect("inventory/units/list");
|
||||
|
||||
$title = filter_var($_POST['title']);
|
||||
$description = filter_var($_POST['description']);
|
||||
$this->db->where('status',1);
|
||||
$this->db->where('unit_id !=', $id);
|
||||
$this->db->where('title',$title);
|
||||
$this->db->or_where('description',$description);
|
||||
|
||||
$query = $this->db->get('tbl_units');
|
||||
if($query->num_rows() > 0){
|
||||
echo "Title or description already exists.";die;
|
||||
}else{
|
||||
$TableData = array(
|
||||
'title' => filter_var($_POST['title']),
|
||||
'alias' => filter_var($_POST['alias']),
|
||||
'description' => filter_var($_POST['description']),
|
||||
'display_order' => filter_var($_POST['display_order']),
|
||||
'status' => 1,
|
||||
'remarks' => filter_var($_POST['remarks']),
|
||||
'created_on' => date('Y-m-d H:i:s'),
|
||||
'created_by' => 'admin',
|
||||
);
|
||||
$this->db->where('unit_id', $id);
|
||||
$this->db->update('tbl_units', $TableData);
|
||||
redirect("inventory/units/list");
|
||||
}
|
||||
}
|
||||
$id = $this->uri->segment(4);
|
||||
$this->db->where('unit_id', $id);
|
||||
$data['unit'] = $this->db->get("tbl_units")->row();
|
||||
loadView("inventory/units/add", $data);
|
||||
loadView("inventory/units/list", $data);
|
||||
break;
|
||||
case 'delete':
|
||||
$id = $this->uri->segment(4);
|
||||
|
Reference in New Issue
Block a user