Fix detailed QSO listing
这个提交包含在:
父节点
f234ae5bbb
当前提交
6432c7a6e6
共有 1 个文件被更改,包括 4 次插入 和 2 次删除
|
|
@ -271,7 +271,7 @@ class Logbook_model extends CI_Model {
|
||||||
$this->db->where("(COL_GRIDSQUARE like '%" . $searchphrase . "%' OR COL_VUCC_GRIDS like'%" . $searchphrase ."%')");
|
$this->db->where("(COL_GRIDSQUARE like '%" . $searchphrase . "%' OR COL_VUCC_GRIDS like'%" . $searchphrase ."%')");
|
||||||
break;
|
break;
|
||||||
case 'GridActivator':
|
case 'GridActivator':
|
||||||
$this->db->where("(COL_MY_GRIDSQUARE like '%" . $searchphrase . "%')");
|
$this->db->where("(COL_MY_GRIDSQUARE like '%" . $searchphrase . "%' OR COL_MY_VUCC_GRIDS like'%" . $searchphrase ."%')");
|
||||||
break;
|
break;
|
||||||
case 'CQZone':
|
case 'CQZone':
|
||||||
$this->db->where('COL_CQZ', $searchphrase);
|
$this->db->where('COL_CQZ', $searchphrase);
|
||||||
|
|
@ -289,7 +289,9 @@ class Logbook_model extends CI_Model {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->db->where_in('station_id', $logbooks_locations_array);
|
if ($type != 'GridActivator') {
|
||||||
|
$this->db->where_in('station_id', $logbooks_locations_array);
|
||||||
|
}
|
||||||
|
|
||||||
if ($band != 'All') {
|
if ($band != 'All') {
|
||||||
if($band != "SAT") {
|
if($band != "SAT") {
|
||||||
|
|
|
||||||
正在加载…
在新工单中引用