Updating requested-counter to include queued QSLs also

As if we extended the coloring of outgoing QSL cards to include queued cards also to get yellow and include them also to the list of "to be printed" cards, we have to count them also in the summary.
这个提交包含在:
Kim - DG9VH 2020-06-11 08:18:19 +02:00 提交者 GitHub
父节点 0e15b79f4e
当前提交 78f0126412
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23

查看文件

@ -1156,14 +1156,14 @@ class Logbook_model extends CI_Model {
} }
} }
/* Return total number of QSL Cards requested */ /* Return total number of QSL Cards requested for printing - that means "requested" or "queued" */
function total_qsl_requested() { function total_qsl_requested() {
$CI =& get_instance(); $CI =& get_instance();
$CI->load->model('Stations'); $CI->load->model('Stations');
$station_id = $CI->Stations->find_active(); $station_id = $CI->Stations->find_active();
$query = $this->db->query('SELECT DISTINCT (COL_QSL_SENT) AS band, count(COL_QSL_SENT) AS count FROM '.$this->config->item('table_name').' WHERE station_id = '.$station_id.' AND COL_QSL_SENT = "R" GROUP BY band'); $query = $this->db->query('SELECT DISTINCT (COL_QSL_SENT) AS band, count(COL_QSL_SENT) AS count FROM '.$this->config->item('table_name').' WHERE station_id = '.$station_id.' AND COL_QSL_SENT in ("Q", "R") GROUP BY band');
$row = $query->row(); $row = $query->row();