Added ability to track iota reference numbers in the logging interfaces

pull/106/merge
Peter Goodhall 2011-09-27 11:33:47 +01:00
rodzic 225b7da43d
commit 3484f5fed7
3 zmienionych plików z 8 dodań i 1 usunięć

Wyświetl plik

@ -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'));

Wyświetl plik

@ -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>

Wyświetl plik

@ -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>