More states of data in the table
这个提交包含在:
父节点
76107c72d4
当前提交
9ca408e888
共有 2 个文件被更改,包括 3 次插入 和 0 次删除
|
|
@ -34,6 +34,8 @@ class Clublog extends CI_Controller {
|
||||||
|
|
||||||
$data['qsos'] = $this->logbook_model->get_clublog_qsos();
|
$data['qsos'] = $this->logbook_model->get_clublog_qsos();
|
||||||
|
|
||||||
|
print_r($data['qsos'])
|
||||||
|
|
||||||
if($data['qsos']->num_rows()){
|
if($data['qsos']->num_rows()){
|
||||||
// Create ADIF File of contacts not uploaded to Clublog
|
// Create ADIF File of contacts not uploaded to Clublog
|
||||||
$string = $this->load->view('adif/data/clublog', $data, TRUE);
|
$string = $this->load->view('adif/data/clublog', $data, TRUE);
|
||||||
|
|
|
||||||
|
|
@ -444,6 +444,7 @@ class Logbook_model extends CI_Model {
|
||||||
|
|
||||||
function get_clublog_qsos(){
|
function get_clublog_qsos(){
|
||||||
$this->db->where("COL_CLUBLOG_QSO_UPLOAD_STATUS", null);
|
$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");
|
$this->db->or_where("COL_CLUBLOG_QSO_UPLOAD_STATUS", "N");
|
||||||
|
|
||||||
$query = $this->db->get($this->config->item('table_name'));
|
$query = $this->db->get($this->config->item('table_name'));
|
||||||
|
|
|
||||||
正在加载…
在新工单中引用