More states of data in the table

这个提交包含在:
Peter Goodhall 2019-06-20 15:26:36 +01:00
父节点 76107c72d4
当前提交 9ca408e888
共有 2 个文件被更改,包括 3 次插入0 次删除

查看文件

@ -34,6 +34,8 @@ class Clublog extends CI_Controller {
$data['qsos'] = $this->logbook_model->get_clublog_qsos();
print_r($data['qsos'])
if($data['qsos']->num_rows()){
// Create ADIF File of contacts not uploaded to Clublog
$string = $this->load->view('adif/data/clublog', $data, TRUE);

查看文件

@ -444,6 +444,7 @@ class Logbook_model extends CI_Model {
function get_clublog_qsos(){
$this->db->where("COL_CLUBLOG_QSO_UPLOAD_STATUS", null);
$this->db->or_where("COL_CLUBLOG_QSO_UPLOAD_STATUS", "");
$this->db->or_where("COL_CLUBLOG_QSO_UPLOAD_STATUS", "N");
$query = $this->db->get($this->config->item('table_name'));