Added ability to track iota reference numbers in the logging interfaces

This commit is contained in:
Peter Goodhall
2011-09-27 11:33:47 +01:00
parent 225b7da43d
commit 3484f5fed7
3 changed files with 8 additions and 1 deletions

View File

@@ -45,6 +45,7 @@ class Logbook_model extends CI_Model {
'COL_QSL_RCVD_VIA' => $this->input->post('qsl_recv_method'),
'COL_OPERATOR' => $this->session->userdata('user_callsign'),
'COL_PROP_MODE' => $prop_mode,
'COL_IOTA' => $this->input->post('iota_ref'),
);
// Add QSO to database
@@ -74,6 +75,7 @@ class Logbook_model extends CI_Model {
'COL_QSL_RCVD' => $this->input->post('qsl_recv'),
'COL_QSL_SENT_VIA' => $this->input->post('qsl_sent_method'),
'COL_QSL_RCVD_VIA' => $this->input->post('qsl_recv_method'),
'COL_IOTA' => $this->input->post('iota_ref'),
);
$this->db->where('COL_PRIMARY_KEY', $this->input->post('id'));

View File

@@ -73,6 +73,11 @@
<td><input type="text" name="sat_mode" value="<?php echo $COL_SAT_MODE; ?>" /></td>
</tr>
<tr>
<td>IOTA</td>
<td><input type="text" name="iota_ref" value="<?php echo $COL_IOTA; ?>" /></td>
</tr>
</table>
<h3>QSLing</h3>

View File

@@ -261,7 +261,7 @@ function settime () {
<table>
<tr>
<td>IOTA</td>
<td><input type="text" name="iota_ref" value="" /></td>
<td><input type="text" name="iota_ref" value="" /> e.g: EU-005</td>
</tr>
</table>