Return the station list sorted by call and name

这个提交包含在:
Peter Goodhall 2024-09-30 18:49:09 +01:00 提交者 GitHub
当前提交 023c319808
找不到此签名对应的密钥
GPG 密钥 ID: B5690EEEBB952194

查看文件

@ -30,6 +30,8 @@ class Stations extends CI_Model {
$this->db->select('station_profile.*, dxcc_entities.name as station_country, dxcc_entities.end as dxcc_end');
$this->db->where('user_id', $userid);
$this->db->join('dxcc_entities','station_profile.station_dxcc = dxcc_entities.adif','left outer');
$this->db->order_by('station_profile.station_callsign');
$this->db->order_by('station_profile.station_profile_name');
return $this->db->get('station_profile');
}