mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Added button to show qso list in state
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user