kopia lustrzana https://github.com/magicbug/Cloudlog
Added missing model. DXAtlas v2 user_id fix
rodzic
0bd1b87060
commit
ec189c4e75
|
@ -98,17 +98,19 @@ class Dxatlas_model extends CI_Model
|
|||
|
||||
if ($column == 'single') {
|
||||
$sql .= "select distinct upper(substring(col_gridsquare, 1, 4)) gridsquare
|
||||
from " . $this->config->item('table_name') .
|
||||
from " . $this->config->item('table_name') .
|
||||
' join station_profile on station_profile.station_id = ' . $this->config->item('table_name').'.station_id' .
|
||||
" where col_gridsquare <> ''";
|
||||
}
|
||||
else if ($column == 'multi') {
|
||||
$sql .= "select col_vucc_grids
|
||||
from " . $this->config->item('table_name') .
|
||||
' join station_profile on station_profile.station_id = ' . $this->config->item('table_name').'.station_id' .
|
||||
" where col_vucc_grids <> '' ";
|
||||
}
|
||||
|
||||
if ($station_id != "All") {
|
||||
$sql .= ' and station_id = ' . $station_id;
|
||||
$sql .= ' and ' . $this->config->item('table_name'). '.station_id = ' . $station_id;
|
||||
}
|
||||
|
||||
if ($confirmationMethod == 'both') {
|
||||
|
@ -158,6 +160,8 @@ class Dxatlas_model extends CI_Model
|
|||
$sql .= " and date(COL_TIME_ON) <='" . $to . "'";
|
||||
}
|
||||
|
||||
$sql .= ' and station_profile.user_id = ' . $this->session->userdata('user_id');
|
||||
|
||||
$query = $this->db->query($sql);
|
||||
|
||||
return $query->result_array();
|
||||
|
|
Ładowanie…
Reference in New Issue