Ver Mensaje Individual
  #1 (permalink)  
Antiguo 01/02/2012, 12:27
kkuertt
 
Fecha de Ingreso: diciembre-2011
Ubicación: Amposta
Mensajes: 31
Antigüedad: 13 años
Puntos: 2
POO Doctrine me da error al obtener datos de una relacion 1:n

Hola buenas,

Tengo el siguiente schema.yml:

Oferta:
columns:
titol: { type: string(50), notnull: true }
sub_titol: { type: text }
data_inici: { type: date }
data_fi: { type: date }

Opcions:
columns:
oferta_id: { type: integer, notnull: true }
descripco: { type: string(150), notnull: true }
preu: { type: string(20), notnull: flase }
relations:
Oferta: {onDelete: CASCADE, local: oferta_id, foreign: id, foreignAlias: Opcions_FK}

Con esta consulta obtengo las ofertas entre dos fechas:

$q = Doctrine_Core::getTable('Oferta')->createQuery('c')->where('curdate() >= c.data_inici')->andWhere('curdate()<=c.data_fi');

$this->ofertes = $q->execute();

Esta consulta funciona bien.

Despues hago:

Código PHP:
<?php foreach ($ofertes as $oferta) { 
    
    
     echo 
$oferta->getTitol();
    
$opcions = new Opcions(); 
     
$opcions $oferta->getOpcionsFK(); //esto me da error


 
?>
El error que me saca symfony es:

public function filterGet(Doctrine_Record $record, $name)

{

throw new Doctrine_Record_UnknownPropertyException(sprintf(' Unknown record property / related component "%s" on "%s"', $name, get_class($record)));

}

Alguien sabe que estoy haciendo mal?

Muchas gracias

Saludos!