Added button to show qso list in state

This commit is contained in:
Andreas Kristiansen
2025-12-07 22:38:51 +01:00
parent 0fad755ce6
commit 46fad667bc
5 changed files with 92 additions and 5 deletions

View File

@@ -920,4 +920,18 @@ class Logbookadvanced extends CI_Controller {
header("Content-Type: application/json");
echo json_encode($result);
}
public function openStateList() {
if(!clubaccess_check(9)) return;
$this->load->model('logbook_model');
$this->load->model('logbookadvanced_model');
$data['dxcc'] = $this->input->post('dxcc', true);
// Process for batch QSO state fix
$data['qsos'] = $this->logbookadvanced_model->getStateListQsos($data['dxcc']);
$this->load->view('logbookadvanced/showStateQsos', $data);
}
}