18 lines
931 B
PHP
18 lines
931 B
PHP
<?php
|
|
$idPolice = $_SESSION['idPolice_d_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);
|
|
|
|
$optionstarif = $this->college_temp->getoptionstarif($idPolice);
|
|
|
|
$this->genererVue(array('collegeTemp' => $collegeTemp, 'produit' => $this->produit,
|
|
'garantiesbase' => $garantiesbase, 'garoptionnelles' => $garoptionnelles,
|
|
'garoptacquises' => $garoptacquises, 'rachattm' => $this->rachattm, 'optionstarif' => $optionstarif,
|
|
'tableau_prestations' => $tableau_prestations, 'ouinonimposerplafond' => $this->ouinonimposerplafond));
|
|
?>
|