/**
  * torna array contenente il dettaglio del comportamento dei gruppi
  * - Gruppo Misto
  *   - Favorevole  => N
  *   - Contrario   => N
  *   - Astenuto    => N
  *   - Assente     => N
  *   - In missione => N
  *
  * @return complex hash
  * @author Guglielmo Celata
  */
 public function getVotoGruppi($data)
 {
     if (is_null($data)) {
         $data = $this > getOppSeduta()->getData('Y-m-d');
     }
     return OppVotazioneHasCaricaPeer::doSelectGroupByGruppo($this->getId(), $data);
 }