16 lines
820 B
PHP
16 lines
820 B
PHP
<?php
|
|
$idPolice = $_SESSION['idPolice_C'];
|
|
$idCollegeTemp = $_SESSION['idCollegeTemp'];
|
|
|
|
$collegeTemp = $this->college_temp->getCollegeTemp($idCollegeTemp);
|
|
$garantiesbase = $this->college_temp->getGarBaseCollege($idCollegeTemp);
|
|
$garoptionnelles = $this->college_temp->getGarOptCollege($idCollegeTemp);
|
|
$garoptacquises = $this->college_temp->getGarOptCollegeAcq($idCollegeTemp);
|
|
|
|
$tableau_prestations = $this->college_temp->getPrestation($idCollegeTemp);
|
|
|
|
$this->genererVue(array('collegeTemp' => $collegeTemp, 'produit' => $this->produit,
|
|
'garantiesbase' => $garantiesbase, 'garoptionnelles' => $garoptionnelles,
|
|
'garoptacquises' => $garoptacquises, 'rachattm' => $this->rachattm,
|
|
'tableau_prestations' => $tableau_prestations, 'ouinonimposerplafond' => $this->ouinonimposerplafond));
|
|
?>
|