Add sig/sig_info to function reassign in Stations model

pull/690/head
Daniel Clerc 2020-11-08 21:46:57 +01:00
rodzic 27418ea0a5
commit 59af8dd7f1
1 zmienionych plików z 8 dodań i 0 usunięć

Wyświetl plik

@ -176,6 +176,14 @@ class Stations extends CI_Model {
$this->db->where('COL_MY_SOTA_REF', $row->station_sota);
}
if($row->station_sig != "") {
$this->db->where('COL_MY_SIG', $row->station_sig);
}
if($row->station_sig_info != "") {
$this->db->where('COL_MY_SIG_INFO', $row->station_sig_info);
}
$this->db->where('COL_MY_COUNTRY', $row->station_country);
if( strpos($row->station_gridsquare, ',') !== false ) {