diff --git a/application/controllers/Awards.php b/application/controllers/Awards.php index 876e9c02..1fb865c5 100644 --- a/application/controllers/Awards.php +++ b/application/controllers/Awards.php @@ -412,6 +412,7 @@ class Awards extends CI_Controller { $iotalist = $this->iota->fetchIota($postdata); $data['iota_array'] = $this->iota->get_iota_array($iotalist, $bands, $postdata); + $data['iota_summary'] = $this->iota->get_iota_summary($bands); // Render Page $data['page_title'] = "Awards - IOTA (Islands On The Air)"; diff --git a/application/models/Iota.php b/application/models/Iota.php index 12c5d539..a2f054b7 100644 --- a/application/models/Iota.php +++ b/application/models/Iota.php @@ -307,5 +307,62 @@ class IOTA extends CI_Model { } return $sql; } + + /* + * Function gets worked and confirmed summary on each band on the active stationprofile + */ + function get_iota_summary($bands) + { + $CI =& get_instance(); + $CI->load->model('Stations'); + $station_id = $CI->Stations->find_active(); + + foreach ($bands as $band) { + $worked = $this->getSummaryByBand($band, $station_id); + $confirmed = $this->getSummaryByBandConfirmed($band, $station_id); + $iotaSummary['worked'][$band] = $worked[0]->count; + $iotaSummary['confirmed'][$band] = $confirmed[0]->count; + } + + return $iotaSummary; + } + + function getSummaryByBand($band, $station_id) + { + $sql = "SELECT count(distinct thcv.col_iota) as count FROM " . $this->config->item('table_name') . " thcv"; + + $sql .= " where station_id = " . $station_id; + + if ($band == 'SAT') { + $sql .= " and thcv.col_prop_mode ='" . $band . "'"; + } else { + $sql .= " and thcv.col_prop_mode !='SAT'"; + $sql .= " and thcv.col_band ='" . $band . "'"; + + } + $query = $this->db->query($sql); + + return $query->result(); + } + + function getSummaryByBandConfirmed($band, $station_id) + { + $sql = "SELECT count(distinct thcv.col_iota) as count FROM " . $this->config->item('table_name') . " thcv"; + + $sql .= " where station_id = " . $station_id; + + if ($band == 'SAT') { + $sql .= " and thcv.col_prop_mode ='" . $band . "'"; + } else { + $sql .= " and thcv.col_prop_mode !='SAT'"; + $sql .= " and thcv.col_band ='" . $band . "'"; + } + + $sql .= " and (col_qsl_rcvd = 'Y' or col_lotw_qsl_rcvd = 'Y')"; + + $query = $this->db->query($sql); + + return $query->result(); + } } ?> \ No newline at end of file diff --git a/application/views/awards/iota/index.php b/application/views/awards/iota/index.php index 2eb46dc7..c3b63057 100644 --- a/application/views/awards/iota/index.php +++ b/application/views/awards/iota/index.php @@ -125,7 +125,38 @@ } echo ''; } - echo ''; + + echo ' +

Summary

+ + + + '; + + foreach($bands as $band) { + echo ''; + } + echo ''; + + echo ' + + + + '; + + foreach ($iota_summary['worked'] as $dxcc) { // Fills the table with the data + echo ''; + } + + echo ' + '; + foreach ($iota_summary['confirmed'] as $dxcc) { // Fills the table with the data + echo ''; + } + + echo ' +
' . $band . '
Total worked' . $dxcc . '
Total confirmed' . $dxcc . '
+ '; } else {