reworked QSL-Indicators and print-functions to not only use "R" but also

look for "Q" (Queued)... this is logically better if you initiate QSL-sending
by your own... R is for requested by other station to send...

Now we are back to ADIF-Specs-logic :-)
This commit is contained in:
Kim Huebel
2020-05-25 23:05:21 +02:00
parent 0c11f4e9a7
commit 6813237c59
6 changed files with 22 additions and 4 deletions

View File

@@ -18,7 +18,7 @@ class Qslprint_model extends CI_Model {
'COL_QSL_SENT_VIA' => "B",
);
$this->db->where("COL_QSL_SENT", "R");
$this->db->where_in("COL_QSL_SENT", array("R","Q"));
$this->db->where("station_id", $station_id);
$this->db->update($this->config->item('table_name'), $data);
}