Added a function to assign all QSOs to station profile number 1 and added table field into station profile for eqsl nickname

This commit is contained in:
Peter Goodhall
2019-10-03 12:56:25 +01:00
parent 6736777d05
commit 2a8f7f9272
7 changed files with 55 additions and 3 deletions

View File

@@ -78,6 +78,13 @@ class Station extends CI_Controller {
redirect('station');
}
function assign_all() {
$this->load->model('Logbook_model');
$this->Logbook_model->update_all_station_ids();
redirect('station');
}
public function delete($id) {
$this->load->model('stations');
$this->stations->delete($id);