kopia lustrzana https://github.com/magicbug/Cloudlog
Added ability to track iota reference numbers in the logging interfaces
rodzic
225b7da43d
commit
3484f5fed7
|
@ -45,6 +45,7 @@ class Logbook_model extends CI_Model {
|
||||||
'COL_QSL_RCVD_VIA' => $this->input->post('qsl_recv_method'),
|
'COL_QSL_RCVD_VIA' => $this->input->post('qsl_recv_method'),
|
||||||
'COL_OPERATOR' => $this->session->userdata('user_callsign'),
|
'COL_OPERATOR' => $this->session->userdata('user_callsign'),
|
||||||
'COL_PROP_MODE' => $prop_mode,
|
'COL_PROP_MODE' => $prop_mode,
|
||||||
|
'COL_IOTA' => $this->input->post('iota_ref'),
|
||||||
);
|
);
|
||||||
|
|
||||||
// Add QSO to database
|
// Add QSO to database
|
||||||
|
@ -74,6 +75,7 @@ class Logbook_model extends CI_Model {
|
||||||
'COL_QSL_RCVD' => $this->input->post('qsl_recv'),
|
'COL_QSL_RCVD' => $this->input->post('qsl_recv'),
|
||||||
'COL_QSL_SENT_VIA' => $this->input->post('qsl_sent_method'),
|
'COL_QSL_SENT_VIA' => $this->input->post('qsl_sent_method'),
|
||||||
'COL_QSL_RCVD_VIA' => $this->input->post('qsl_recv_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'));
|
$this->db->where('COL_PRIMARY_KEY', $this->input->post('id'));
|
||||||
|
|
|
@ -73,6 +73,11 @@
|
||||||
<td><input type="text" name="sat_mode" value="<?php echo $COL_SAT_MODE; ?>" /></td>
|
<td><input type="text" name="sat_mode" value="<?php echo $COL_SAT_MODE; ?>" /></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>IOTA</td>
|
||||||
|
<td><input type="text" name="iota_ref" value="<?php echo $COL_IOTA; ?>" /></td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<h3>QSLing</h3>
|
<h3>QSLing</h3>
|
||||||
|
|
|
@ -261,7 +261,7 @@ function settime () {
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<td>IOTA</td>
|
<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>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue