Merge pull request #1159 from AndreasK79/sota_station_logbooks

[SOTA Award] Updated code to support station logbooks
这个提交包含在:
Peter Goodhall 2021-09-09 21:52:22 +01:00 提交者 GitHub
当前提交 d130940d48
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23

查看文件

@ -6,18 +6,18 @@ class Sota extends CI_Model {
{
parent::__construct();
}
function get_all() {
$CI =& get_instance();
$CI->load->model('Stations');
$station_id = $CI->Stations->find_active();
$CI->load->model('logbooks_model');
$logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
$this->db->where("station_id", $station_id);
$this->db->order_by("COL_SOTA_REF", "ASC");
$this->db->where_in("station_id", $logbooks_locations_array);
$this->db->order_by("COL_SOTA_REF", "ASC");
$this->db->where('COL_SOTA_REF !=', '');
return $this->db->get($this->config->item('table_name'));
}
}
?>
?>