1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
| public function setUp()
{
parent::setUp();
$this->hasOne('INADEQUATIONENTREPRISE', array(
'local' => 'entreprise_id',
'foreign' => 'id'));
$this->hasOne('INADEQUATIONADRESSE as adresse_offre', array(
'local' => 'adresse_id',
'foreign' => 'id'));
$this->hasOne('INADEQUATIONHABILETE', array(
'local' => 'habilete_id1',
'foreign' => 'id'));
$this->hasOne('INADEQUATIONHABILETE as INADEQUATIONHABILETE_4', array(
'local' => 'habilete_id2',
'foreign' => 'id'));
$this->hasOne('INADEQUATIONHABILETE as INADEQUATIONHABILETE_5', array(
'local' => 'habilete_id3',
'foreign' => 'id'));
$this->hasMany('INADEQUATIONQUESTION', array(
'local' => 'id',
'foreign' => 'offre_id'));
$this->hasMany('INADEQUATIONPOSTULER as postu', array(
'local' => 'id',
'foreign' => 'offre_id'));
$this->hasMany('INADEQUATIONREPONDRE as rep', array(
'local' => 'id',
'foreign' => 'offre_id'));
$this->hasMany('INADEQUATIONCANDIDAT as RendezVous', array(
'refClass' => 'INADEQUATIONRENDEZVOUS',
'local' => 'offre_id',
'foreign' => 'candidat_id'));
} |
Partager