[QSO] adjustments to the DXCC Stats box

pull/2009/head
Peter Goodhall 2023-02-20 15:20:16 +00:00
rodzic 2808423170
commit d675f05e4c
3 zmienionych plików z 18 dodań i 2 usunięć

Wyświetl plik

@ -21,7 +21,7 @@ $config['migration_enabled'] = TRUE;
| be upgraded / downgraded to. | be upgraded / downgraded to.
| |
*/ */
$config['migration_version'] = 113; $config['migration_version'] = 114;
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------

Wyświetl plik

@ -0,0 +1,15 @@
<?php
// Create migration that makes the submode column in the logbook table an index
class Migration_Create_index_for_colsubmode extends CI_Migration {
public function up() {
$this->db->query("ALTER TABLE `".$this->config->item('table_name')."` ADD INDEX (`COL_SUBMODE`)");
}
public function down() {
$this->db->query("ALTER TABLE `".$this->config->item('table_name')."` DROP INDEX (`COL_SUBMODE`)");
}
}
?>

Wyświetl plik

@ -408,7 +408,6 @@ $("#callsign").focusout(function() {
if(result.dxcc.entity != undefined) { if(result.dxcc.entity != undefined) {
$('#country').val(convert_case(result.dxcc.entity)); $('#country').val(convert_case(result.dxcc.entity));
$('#callsign_info').text(convert_case(result.dxcc.entity)); $('#callsign_info').text(convert_case(result.dxcc.entity));
getDxccResult(result.dxcc.adif, convert_case(result.dxcc.entity));
if($("#sat_name" ).val() != "") { if($("#sat_name" ).val() != "") {
//logbook/jsonlookupgrid/io77/SAT/0/0 //logbook/jsonlookupgrid/io77/SAT/0/0
@ -452,6 +451,8 @@ $("#callsign").focusout(function() {
} }
changebadge(result.dxcc.entity); changebadge(result.dxcc.entity);
getDxccResult(result.dxcc.adif, convert_case(result.dxcc.entity));
} }
if(result.lotw_member == "active") { if(result.lotw_member == "active") {