Que tal
Copia, que error te muestra ?, envolve el save en un try && catch y comproba que Exception te lanza, algo asi:
Código PHP:
Ver original...
$this->idarribos = $arriboid;
$this->idemptransporte = $idempTransport;
$this->direccion = $direcArribo;
$this->numvuelo = $numVuelo;
$this->horallegada = $horaArribo;
$this->numpersonas = $numPersonas;
...
try {
$this->save();
} catch(Doctrine_Exception $e) {
}
y te dejo una referencia a los
hydrators.
Saludos.