mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Add Exch (S) to BLA edit function
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -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> </div>
|
||||
|
||||
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user