a
This commit is contained in:
parent
f4aede28c8
commit
e0125b3efb
|
|
@ -16,6 +16,8 @@ class ControleurAjaxlisterprospects extends Controleur
|
|||
$nom = $this->requete->getParametreFormulaire("nom");
|
||||
|
||||
$numeroClient = $this->requete->getParametreFormulaire("numeroClient");
|
||||
|
||||
$_SESSION['souscripteurAcreer'] = $nom;
|
||||
|
||||
$clients = $this->client->getListerProspects($typeClient, $nom, $numeroClient);
|
||||
|
||||
|
|
|
|||
|
|
@ -88460,7 +88460,7 @@ function actualisercollege_temp_d(){
|
|||
{
|
||||
$('#div_majcollege').empty();
|
||||
$('#div_majcollege').html(data);
|
||||
$('.selectpicker').selectpicker();
|
||||
$('#codeProduit').selectpicker();
|
||||
},
|
||||
complete: function(data)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,3 +1,16 @@
|
|||
<?php
|
||||
$controlPlafondAdherent = $_SESSION['controlPlafondAdherent'];
|
||||
$controlPlafondBeneficiaire = $_SESSION['controlPlafondBeneficiaire'];
|
||||
|
||||
$_SESSION['imposerPlafond'] = "1";
|
||||
|
||||
$garant = $_SESSION['codeGcAssureur_C'];
|
||||
|
||||
$idCollegeTemp = $this->nettoyer($collegeTemp['idCollegeTemp']);
|
||||
|
||||
$idCollege = $this->nettoyer($collegeTemp['idCollege']);
|
||||
?>
|
||||
|
||||
<INPUT class="sr-only" TYPE="text" id="idPolice" name="idPolice" value="<?= $_SESSION['idPolice_d_C'] ?>">
|
||||
<INPUT class="sr-only" TYPE="text" id="idCollegeTemp" name="idCollegeTemp" value="<?= $this->nettoyer($collegeTemp['idCollegeTemp']); ?>">
|
||||
<INPUT class="sr-only" TYPE="text" id="nomForm" name="nomForm" value="creercolleged">
|
||||
|
|
@ -7,11 +20,6 @@
|
|||
<INPUT class="sr-only" TYPE="text" id="codeLienParente" name="codeLienParente" value="A">
|
||||
<input class="sr-only" id="btn_enreg" name="btn_enreg" class = "form-control btn btn-primary" type="submit" value=<?= _("Enregistrer") ?> />
|
||||
|
||||
<?php
|
||||
$idCollege = $this->nettoyer($collegeTemp['idCollege']);
|
||||
|
||||
?>
|
||||
|
||||
<table class="table table-responsive table-condensed" style='font-size:9pt;'>
|
||||
<tbody>
|
||||
<?php if($idCollege > "0"):?>
|
||||
|
|
|
|||
|
|
@ -1,9 +1,6 @@
|
|||
<?php
|
||||
|
||||
$nbreCli = count($clients);
|
||||
|
||||
|
||||
$nbreTotal = count($clients);
|
||||
$nbreCli = count($clients);
|
||||
$nbreTotal = count($clients);
|
||||
|
||||
if($nbreTotal < 10){
|
||||
$nbreTotal = '0'.$nbreTotal;
|
||||
|
|
@ -12,17 +9,19 @@
|
|||
}
|
||||
?>
|
||||
|
||||
<?php if($nbreCli == "0"):?>
|
||||
|
||||
<?php if($nbreCli == "0"):
|
||||
?>
|
||||
<h4 >
|
||||
<div class="col-12 alert alert-danger">
|
||||
<?= _("Le prospect rechercher n'existe pas, pour le créer, veuillez cliquer sur le bouton ci-dessous.") ?>
|
||||
<?= _("Le prospect recherché n'existe pas, pour le créer, veuillez cliquer sur le bouton ci-dessous.") ?>
|
||||
</div>
|
||||
</h4>
|
||||
<div>
|
||||
<input style="font-size:12pt; height:40px;" type="button" class="form-control btn btn-primary" value="<?= _("Ajouter un nouveau prospect")."..." ?>" onClick="javascript:creer_prospect();" title=<?= _("Ajouter un nouveau Prospect")?>> </td>
|
||||
</div>
|
||||
<?php else:?>
|
||||
<?php else:
|
||||
$_SESSION['souscripteurAcreer'] = "";
|
||||
?>
|
||||
<table style="margin: auto" class="table-responsive">
|
||||
<tbody>
|
||||
<tr>
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@
|
|||
|
||||
<tr>
|
||||
<td class="required"> <?= _("Nom") ?> </td>
|
||||
<td><INPUT class="form-control" TYPE="text" id="nom" NAME="nom" required AUTOCOMPLETE="OFF" style="text-transform: uppercase;"></td>
|
||||
<td><INPUT class="form-control" TYPE="text" id="nom" NAME="nom" required style="text-transform: uppercase;" value="<?= $_SESSION['souscripteurAcreer'] ?>"></td>
|
||||
|
||||
<td align="center"> <?= _("Prénoms") ?> </td>
|
||||
<td><INPUT class="form-control majuscule" TYPE="text" id="prenoms" NAME="prenoms" ></td>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user