Finish stock location refactoring

Modules are inaccessible if permissions not configured correctly
This commit is contained in:
jekkos-t520
2014-10-07 21:47:07 +02:00
parent aee5f3d27e
commit bb9ab9bd9c
9 changed files with 14 additions and 21 deletions

View File

@@ -63,12 +63,5 @@ class Module extends CI_Model
return $this->db->get();
}
function get_employee_grants($person_id)
{
$this->db->from('grants');
$this->db->where('person_id',$person_id);
return $this->db->get();
}
}
?>