23 lines
698 B
PHP
Executable File
23 lines
698 B
PHP
Executable File
<?php
|
|
$idPolice = $_SESSION['idPolice_C'];
|
|
|
|
$garant = $this->college_temp->getGarantPolice($idPolice);
|
|
$typeGarant = $this->college_temp->getTypeGarantPolice($idPolice);
|
|
|
|
|
|
$_SESSION['codeGcAssureur'] = $garant['codeGcAssureur'];
|
|
$_SESSION['codeTypeGarant'] = $typeGarant['codeTypeGarant'];
|
|
|
|
$user = $this->requete->getSession()->getAttribut('login');
|
|
|
|
$idCollegeTemp = $this->college_temp->initCollege($idPolice, $garant['codeGcAssureur'], $user);
|
|
|
|
$budgetDefini = "0";
|
|
|
|
|
|
$_SESSION['codeProduit'] = "C1";
|
|
$_SESSION['codeTypeTarifActe'] = "";
|
|
$_SESSION['codeLienParente_C'] = "A";
|
|
|
|
$this->rediriger("Creercollege");
|
|
?>
|