Add Exch (S) to BLA edit function

This commit is contained in:
phl0
2025-05-15 10:11:58 +02:00
parent 714e4b56a8
commit 52b5e45cb6
3 changed files with 4 additions and 2 deletions

View File

@@ -781,6 +781,7 @@ class Logbookadvanced_model extends CI_Model {
case "clublogreceived": $column = 'COL_CLUBLOG_QSO_DOWNLOAD_STATUS'; break;
case "region": $column = 'COL_REGION'; break;
case "distance": $column = 'COL_DISTANCE'; break;
case "stxstring": $column = 'COL_STX_STRING'; break;
default: return;
}

View File

@@ -34,6 +34,7 @@
<option value="clublogsent"><?= __("Clublog Sent"); ?></option>
<option value="clublogreceived"><?= __("Clublog Received"); ?></option>
<option value="distance"><?= __("Distance"); ?></option>
<option value="stxstring"><?= __("Exch (S)"); ?></option>
</select>
<div>&nbsp;</div>

View File

@@ -203,7 +203,7 @@ function saveBatchEditQsos(id_list) {
if (column == 'region') {
value = $("#editRegion").val();
}
if (column == 'sota' || column == 'pota' || column == 'wwff' || column == 'gridsquare' || column == 'comment' || column == 'operator' || column == 'qslvia' || column == 'qslmsg' || column == 'stationpower') {
if (column == 'sota' || column == 'pota' || column == 'wwff' || column == 'gridsquare' || column == 'comment' || column == 'operator' || column == 'qslvia' || column == 'qslmsg' || column == 'stationpower' || column == 'stxstring') {
value = $("#editTextInput").val();
}
if (column == 'distance') {
@@ -306,7 +306,7 @@ function changeEditType(type) {
$('#editEqsl').show();
} else if (type == "continent") {
$('#editContinent').show();
} else if (type == "gridsquare" || type == "sota" || type == "wwff" || type == "operator" || type == "pota" || type == "comment" || type == "qslvia" || type == "contest" || type == "qslmsg" || type == "stationpower") {
} else if (type == "gridsquare" || type == "sota" || type == "wwff" || type == "operator" || type == "pota" || type == "comment" || type == "qslvia" || type == "contest" || type == "qslmsg" || type == "stationpower" || type == 'stxstring') {
$('#editTextInput').show();
} else if (type == "region") {
$('#editRegion').show();