Added col_comment to csv-export for printing,

also made comments in cloudlog.php (cosmetics)
This commit is contained in:
Kim Huebel
2019-10-06 19:52:18 +02:00
parent 1f53fceb26
commit 2f489f9ee8
3 changed files with 15 additions and 0 deletions

View File

@@ -75,4 +75,16 @@ $config['cat_timeout_interval'] = 300;
$config['public_search'] = FALSE;
/*
|--------------------------------------------------------------------------
| Callsign Tags
|--------------------------------------------------------------------------
|
| Setting this to TRUE switches on the visibility of the callsign-labels
| within the log-table
|
| Default is: TRUE
|
*/
$config['callsign_tags'] = TRUE;

View File

@@ -65,6 +65,7 @@ class QSLPrint extends CI_Controller {
"COL_SAT_NAME",
"COL_SAT_MODE",
"COL_QSL_RCVD",
"COL_COMMENT",
"COL_ROUTING",
"ADIF",
"ENTITY");
@@ -84,6 +85,7 @@ class QSLPrint extends CI_Controller {
$qso->COL_SAT_NAME,
$qso->COL_SAT_MODE,
$qso->COL_QSL_RCVD =='Y'?'TNX QSL':'PSE QSL',
$qso->COL_COMMENT,
$qso->COL_ROUTING,
$qso->ADIF,
$qso->ENTITY));

View File

@@ -429,6 +429,7 @@ class Logbook_model extends CI_Model {
COL_SAT_NAME,
COL_SAT_MODE,
COL_QSL_RCVD,
COL_COMMENT,
(CASE WHEN COL_QSL_VIA != \'\' THEN COL_QSL_VIA ELSE COL_CALL END) AS COL_ROUTING,
ADIF,
ENTITY