526 lines
23 KiB
PHP
526 lines
23 KiB
PHP
<?php
|
|
if (!$_SESSION['connected']) die();
|
|
|
|
require_once 'utils.php';
|
|
|
|
$siret=trim(preg_replace('/[^0-9]/', '', $_REQUEST['siret']));
|
|
if (strlen($siret)<>0 && strlen($siret)<>9 && strlen($siret)<>14) die('Paramètres incorrects !');
|
|
|
|
$idEntreprise=trim(preg_replace('/[^0-9]/', '', $_REQUEST['idEntreprise']))*1; // Si id=0 alors non communiqué
|
|
if (($siret*1)==0 && $idEntreprise==0) die('Paramètres incorrects !');
|
|
$siren=substr($siret,0,9);
|
|
|
|
$commandeEnquete = FALSE;
|
|
|
|
if($_REQUEST['submit']){
|
|
//Affichage de la demande
|
|
$firephp->log('Soumission formulaire');
|
|
//Vérification des informations
|
|
$formError = FALSE;
|
|
$fields = array();
|
|
|
|
//Info utilisateur obligatoire :
|
|
if($_REQUEST['InfoUser']['Identite']==''){ $fields[] ='Votre Identite'; $formError=TRUE;}
|
|
if($_REQUEST['InfoUser']['Tel']==''){ $fields[] ='Votre Téléphone'; $formError=TRUE;}
|
|
if($_REQUEST['InfoUser']['Email']==''){ $fields[] ='Votre Email'; $formError=TRUE;}
|
|
|
|
//Info entreprise obligatoire :
|
|
if($_REQUEST['InfoEnq']['Type']==''){ $fields[] ='Choix du type d\'enquête'; $formError=TRUE;}
|
|
if($_REQUEST['InfoEnq']['PrecisionsChoix']==''){ $fields[] ='Précisions de la demande'; $formError=TRUE;}
|
|
if($_REQUEST['InfoEnq']['PrecisionsChoix']=='1'){
|
|
if($_REQUEST['InfoEnq']['Precisions']['Motif']==''){ $fields[] ='Mofif de la demande'; $formError=TRUE;}
|
|
}elseif($_REQUEST['InfoEnq']['PrecisionsChoix']=='3' || $_REQUEST['InfoEnq']['PrecisionsChoix']=='4'){
|
|
if($_REQUEST['InfoEnq']['Precisions']['MontantCA']==''){ $fields[] ='Précisions de la demande'; $formError=TRUE;}
|
|
}elseif($_REQUEST['InfoEnq']['PrecisionsChoix']=='5'){
|
|
if($_REQUEST['InfoEnq']['Precisions']['Autre']==''){ $fields[] ='Précisions de la demande'; $formError=TRUE;}
|
|
}
|
|
if($_REQUEST['InfoEnq']['Anciennete']=='' || !isset($_REQUEST['InfoEnq']['AncienneteDuree']) ){ $fields[] ='Ancienneté'; $formError=TRUE;}
|
|
|
|
if(isset($_REQUEST['InfoEnq']['ImpayeesChoix']) && $_REQUEST['InfoEnq']['ImpayeesChoix']=='oui' ){
|
|
if($_REQUEST['InfoEnq']['Impayees']['Montant']=='' || $_REQUEST['InfoEnq']['Impayees']['Nombre']=='' || $_REQUEST['InfoEnq']['Impayees']['Date']==''){ $fields[] ='Précisions sur les impayées'; $formError=TRUE;}
|
|
}
|
|
if(isset($_REQUEST['InfoEnq']['RetardPaiementChoix']) && $_REQUEST['InfoEnq']['RetardPaiementChoix']=='oui' ){
|
|
if($_REQUEST['InfoEnq']['RetardPaiement']['Montant']=='' || $_REQUEST['InfoEnq']['RetardPaiement']['Nombre']=='' || $_REQUEST['InfoEnq']['RetardPaiement']['Date']==''){ $fields[] ='Précisions sur le retarde de paiement'; $formError=TRUE;}
|
|
}
|
|
if(isset($_REQUEST['InfoEnq']['LitigeChoix']) && $_REQUEST['InfoEnq']['LitigeChoix']=='oui' ){
|
|
if($_REQUEST['InfoEnq']['Litige']['Precisions']=='' || $_REQUEST['InfoEnq']['Litige']['Precisions']==''){ $fields[] ='Précisions sur le litige'; $formError=TRUE;}
|
|
}
|
|
|
|
if ($formError==TRUE){
|
|
$message = '<font color="red">';
|
|
$message.= 'Veuillez remplir les champs suivants : ';
|
|
$message.= join(', ', $fields);
|
|
$message.= '</font>';
|
|
}else{
|
|
$InfoEnq = $_REQUEST['InfoEnq'];
|
|
$InfoDemande = $_REQUEST['InfoUser'];
|
|
$siren = $InfoEnq['Siren'];
|
|
unset($InfoEnq['Siren']);
|
|
//Suppression et assigation des valeurs pour le webservice
|
|
if($InfoEnq['PrecisionsChoix']=1){
|
|
$InfoEnq['Precisions']['Type'] = "Enquête sur un client (contrôle crédit)";
|
|
unset($InfoEnq['PrecisionsChoix']);
|
|
}elseif($InfoEnq['PrecisionsChoix']==2){
|
|
$InfoEnq['Precisions']['Type'] = "Enquête sur un prospect (ouverture de compte)";
|
|
unset($InfoEnq['PrecisionsChoix']);
|
|
}elseif($InfoEnq['PrecisionsChoix']==3){
|
|
$InfoEnq['Precisions']['Type'] = "Enquête sur un fournisseur stratégique";
|
|
unset($InfoEnq['PrecisionsChoix']);
|
|
}elseif($InfoEnq['PrecisionsChoix']==4){
|
|
$InfoEnq['Precisions']['Type'] = "Enquête sur un fournisseur non stratégique";
|
|
unset($InfoEnq['PrecisionsChoix']);
|
|
}elseif($InfoEnq['PrecisionsChoix']==5){
|
|
$InfoEnq['Precisions']['Type'] = "Autre type d'enquête (Précisez...)";
|
|
unset($InfoEnq['PrecisionsChoix']);
|
|
}
|
|
//Traiter les caractères qui ne passe pas dans le webservice
|
|
require 'i18n/cleanchar.php';
|
|
$InfoEnq = cleanstring_deep($InfoEnq);
|
|
$InfoDemande = cleanstring_deep($InfoDemande);
|
|
//Soumission des données au webservice
|
|
try{
|
|
$result = $client->commandeEnquete($siren, $InfoEnq, $InfoDemande);
|
|
$commandeEnquete = TRUE;
|
|
}catch(SoapFault $fault){
|
|
require_once 'soaperror.php';
|
|
processSoapFault($client,$fault,$tabInfo);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
if($commandeEnquete == FALSE){
|
|
|
|
try {
|
|
$O = $client->getIdentite($siret, $idEntreprise);
|
|
$etab = $O['result'];
|
|
$firephp->log($etab,'etab');
|
|
} catch (SoapFault $fault) {
|
|
require_once 'soaperror.php';
|
|
processSoapFault($client,$fault,$tabInfo);
|
|
die();
|
|
}
|
|
|
|
$tabInfo=$_SESSION['tabInfo'];
|
|
|
|
try {
|
|
$O = $client->getInfosLogin($tabInfo['login']);
|
|
$user = $O['result'];
|
|
$firephp->log($user,'user');
|
|
} catch (SoapFault $fault) {
|
|
|
|
}
|
|
}
|
|
?>
|
|
<style>
|
|
#center p { margin:5px; padding:5px;}
|
|
.infoTitle {clear:both; float:left; width:180px; margin-left:30px; padding:0 10px 0 0;}
|
|
.infoData {float:left; width:320px; margin:2px 0;}
|
|
form { }
|
|
form em { color:#FF0000;}
|
|
fieldset {border:0; margin:0; padding:0;}
|
|
fieldset legend{ padding:0 0 0 10px;}
|
|
.fieldgrp{clear:both; width:100%; margin-bottom:.5em; overflow:hidden;}
|
|
.fieldgrp:after{content:"."; display:block; clear:both; visibility:hidden; line-height:0; height:0; }
|
|
.fieldgrp label{font-weight:bold; margin-left:30px; width:180px; clear:both; padding:0 10px 0 0;line-height:22px;_padding-top:3px; float:left; display:block; font-size:108%;}
|
|
.fieldgrp label span{font-weight:normal;}
|
|
.fieldgrp label abbr{color:#4B911C; font-size:120%; vertical-align:middle;}
|
|
.field {width:320px; float:left; padding:0 10px 0 0; line-height:22px; _padding-top:3px;}
|
|
.field .longfield{width:215px;}
|
|
.field .longfield-select{width:220px;}
|
|
.field .smallfield{width:95px;}
|
|
.field .medfield{width:110px;}
|
|
.field input, .field select{ font-size:110%; margin:2px 0; }
|
|
.field input[type="radio"] { margin:0 5px 0 5px; }
|
|
div.submit{ margin-left:200px; padding-left:0px; margin-top:1em; }
|
|
div.submit p.submit-button{margin-top:0;}
|
|
div.submit p.details{font-size:85%;color:#666;margin:0;}
|
|
div.submit p.required-note{margin-top:1em;}
|
|
div.submit p.required-note span{color:#4B911C;_color:#666;font-size:170%;vertical-align:top;}
|
|
.noborder {border:none;}
|
|
<?php if(isset($_REQUEST['InfoUser']['Profil']) && $_REQUEST['InfoUser']['Profil']=='Autre'){ ?> #autreProfil {display:block;}<?php }else{?> #autreProfil {display:none;} <?php }?>
|
|
<?php if(isset($_REQUEST['InfoEnq']['PrecisionsChoix']) && $_REQUEST['InfoEnq']['PrecisionsChoix']=='5'){ ?> #autrePrecisions {display:block;} <?php }else{ ?> #autrePrecisions {display:none;} <?php }?>
|
|
<?php if(isset($_REQUEST['InfoEnq']['PrecisionsChoix']) && ($_REQUEST['InfoEnq']['PrecisionsChoix']=='3' || $_REQUEST['InfoEnq']['PrecisionsChoix']=='4')){ ?> #fournisseur {display:block;} <?php }else{ ?> #fournisseur {display:none;} <?php }?>
|
|
<?php if(isset($_REQUEST['InfoEnq']['PrecisionsChoix']) && $_REQUEST['InfoEnq']['PrecisionsChoix']=='1'){ ?> #credit {display:block;} <?php }else{ ?> #credit {display:none;} <?php }?>
|
|
<?php if(isset($_REQUEST['InfoEnq']['ImpayeesChoix']) && $_REQUEST['InfoEnq']['ImpayeesChoix']=='oui'){ ?> #impayees {display:block;}<?php }else{?> #impayees {display:none;} <?php }?>
|
|
<?php if(isset($_REQUEST['InfoEnq']['ImpayeesChoix']) && $_REQUEST['InfoEnq']['ImpayeesChoix']=='oui'){ ?> #retardpaiement {display:block;}<?php }else{?> #retardpaiement {display:none;} <?php }?>
|
|
<?php if(isset($_REQUEST['InfoEnq']['LitigeChoix']) && $_REQUEST['InfoEnq']['LitigeChoix']=='oui'){ ?> #litige {display:block;}<?php }else{?> #litige {display:none;} <?php }?>
|
|
</style>
|
|
|
|
<?php if($commandeEnquete == FALSE){?>
|
|
<script type="text/javascript">
|
|
$(document).ready(function(){
|
|
$("#profil").change(function() {
|
|
var val = $("#profil").val();
|
|
if (val == 'Autre'){
|
|
$("#autreProfil").css('display','block');
|
|
}else{
|
|
$("#autreProfil").css('display','none');
|
|
}
|
|
});
|
|
$("#precision").change(function() {
|
|
var val = $("#precision").val();
|
|
if (val == '5'){
|
|
$("#autrePrecisions").css('display','block');
|
|
}else{
|
|
$("#autrePrecisions").css('display','none');
|
|
}
|
|
if (val == '3' || val == '4'){
|
|
$("#fournisseur").css('display','block');
|
|
}else{
|
|
$("#fournisseur").css('display','none');
|
|
}
|
|
if (val == '1'){
|
|
$("#credit").css('display','block');
|
|
}else{
|
|
$("#credit").css('display','none');
|
|
}
|
|
});
|
|
|
|
$('input[type=radio][name=InfoEnq[ImpayeesChoix]]').click(function(){
|
|
var val = $(this).attr('value');
|
|
if (val == 'oui'){
|
|
$("#impayees").css('display','block');
|
|
}else{
|
|
$("#impayees").css('display','none');
|
|
}
|
|
});
|
|
|
|
$('input[type=radio][name=InfoEnq[RetardPaiementChoix]]').click(function(){
|
|
var val = $(this).attr('value');
|
|
if (val == 'oui'){
|
|
$("#retardpaiement").css('display','block');
|
|
}else{
|
|
$("#retardpaiement").css('display','none');
|
|
}
|
|
});
|
|
|
|
$('input[type=radio][name=InfoEnq[LitigeChoix]]').click(function(){
|
|
var val = $(this).attr('value');
|
|
if (val == 'oui'){
|
|
$("#litige").css('display','block');
|
|
}else{
|
|
$("#litige").css('display','none');
|
|
}
|
|
});
|
|
|
|
$('input[type=text][name=InfoEnq[Encours]]').blur(function(){
|
|
var val = $(this).val();
|
|
if ( parseInt(val)>20000 && val!=''){
|
|
$('#gold').val('gold').attr('checked', 'check');
|
|
}else if(parseInt(val)<20000 && val!=''){
|
|
$('#premier').val('premier').attr('checked', 'check');
|
|
}
|
|
});
|
|
|
|
|
|
});
|
|
</script>
|
|
<?php }?>
|
|
|
|
<div id="center">
|
|
<h1 class="titre">ENQUÊTE COMMERCIALE</h1>
|
|
|
|
<?php
|
|
if($commandeEnquete == FALSE){
|
|
?>
|
|
|
|
<p class="StyleInfoLib">Nos enquêtes commerciales sont réalisées par des analystes financiers.</p>
|
|
|
|
<div id="message"><?php print $message;?></div>
|
|
|
|
<form action="./?page=enquetec&siret=<?php print $siret;?>&idEntreprise=<?php print $idEntreprise;?>" method="POST" enctype="multipart/form-data">
|
|
|
|
<h2>Entreprise concernée : </h2>
|
|
|
|
<div class="infoTitle StyleInfoLib">Numéro identifiant Siren</div>
|
|
<div class="infoData">
|
|
<?php print substr($etab['Siren'],0,3).' '.substr($etab['Siren'],3,3).' '.substr($etab['Siren'],6,3); ?>
|
|
<input type="hidden" name="InfoEnq[Siren]" value="<?php print $etab['Siren']; ?>"/>
|
|
</div>
|
|
|
|
<div class="infoTitle StyleInfoLib">Numéro identifiant Siret</div>
|
|
<div class="infoData"><?php print substr($etab['Siren'],0,3).' '.substr($etab['Siren'],3,3).' '.substr($etab['Siren'],6,3).' <i>'.substr($etab['Siret'],9,5).'</i>' ?></div>
|
|
|
|
<div class="infoTitle StyleInfoLib">Numéro de TVA Intracom.</div>
|
|
<div class="infoData"><?php print substr($etab['TvaNumero'],0,2).' '.substr($etab['TvaNumero'],2,2).' '.substr($etab['TvaNumero'],-9); ?></div>
|
|
|
|
<div class="infoTitle StyleInfoLib">Raison Sociale</div>
|
|
<div class="infoData"><?php print $etab['Nom']; ?></div>
|
|
|
|
<div class="infoTitle StyleInfoLib">Adresse</div>
|
|
<div class="infoData"><?php print $etab['Adresse']; ?></div>
|
|
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">Téléphone <?php if (trim($etab['Tel'])==''){?><font color="Red">*</font><?php }?> / Fax</label>
|
|
<div class="field">
|
|
<?php if (trim($etab['Tel'])!=''){ print $etab['Tel']; }else{?><input type="text" name="InfoEnq[Entrep][Tel]" value="<?php print $_REQUEST['InfoEnq']['Entrep']['Tel'];?>"/><?php } ?> <b>/</b>
|
|
<?php if (trim($etab['Fax'])!=''){ print $etab['Fax']; }else{?><input type="text" name="InfoEnq[Entrep][Fax]" value="<?php print $_REQUEST['InfoEnq']['Entrep']['Fax'];?>"/><?php } ?>
|
|
</div>
|
|
</div>
|
|
|
|
<?php if (trim($etab['Tel'])!=''){?>
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib"> Autre téléphone :</label>
|
|
<div class="field"><input type="text" name="InfoEnq[Entrep][AutreTel]" value="<?php print $_REQUEST['InfoEnq']['Entrep']['AutreTel'];?>"/> </div>
|
|
</div>
|
|
<?php } ?>
|
|
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">E-mail</label>
|
|
<div class="field"><?php if (trim($etab['Mail'])!=''){ print $etab['Mail']; }else{?><input type="text" name="InfoEnq[Entrep][Mail]" value="<?php print $_REQUEST['InfoEnq']['Entrep']['Mail'];?>"/><?php }?></div>
|
|
</div>
|
|
|
|
<?php if (trim($etab['Mail'])!=''){ ?>
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">Autre e-mail</label>
|
|
<div class="field"><input type="text" name="InfoEnq[Entrep][AutreMail]" value="<?php print $_REQUEST['InfoEnq']['Entrep']['AutreTel'];?>"/></div>
|
|
</div>
|
|
<?php }?>
|
|
|
|
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">Site Web</label>
|
|
<div class="field"><?php if (trim($etab['Web'])!=''){ print $etab['Web']; }else{?><input type="text" name="InfoEnq[Entrep][Web]" value="<?php print $_REQUEST['InfoEnq']['Entrep']['Web'];?>"/><?php }?></div>
|
|
</div>
|
|
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">Domiciliation bancaire</label>
|
|
<div class="field">
|
|
<input type="text" name="InfoEnq[Entrep][Rib][Banque]" maxlength="5" size="5" value="<?php print $_REQUEST['InfoEnq']['Entrep']['Rib']['Banque'];?>"/>
|
|
<input type="text" name="InfoEnq[Entrep][Rib][Guichet]" maxlength="5" size="5" value="<?php print $_REQUEST['InfoEnq']['Entrep']['Rib']['Guichet'];?>"/>
|
|
<input type="text" name="InfoEnq[Entrep][Rib][Compte]" maxlength="11" size="11" value="<?php print $_REQUEST['InfoEnq']['Entrep']['Rib']['Compte'];?>"/>
|
|
<input type="text" name="InfoEnq[Entrep][Rib][Cle]" maxlength="2" size="2" value="<?php print $_REQUEST['InfoEnq']['Entrep']['Rib']['Cle'];?>"/>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">Encours demandé</label>
|
|
<div class="field"><input type="text" name="InfoEnq[Encours]" value="<?php print $_REQUEST['InfoEnq']['Encours'];?>"/> €</div>
|
|
</div>
|
|
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">Nombre d'échéances</label>
|
|
<div class="field"><input type="text" name="InfoEnq[NbEcheances]" value="<?php print $_REQUEST['InfoEnq']['NbEcheances'];?>"/>;</div>
|
|
</div>
|
|
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">Avis de l'assureur crédit</label>
|
|
<div class="field">
|
|
<select name="InfoEnq[AvisAssureur]">
|
|
<option value="-" <?php if($_REQUEST['InfoEnq']['AvisAssureur']=='-'){ print 'checked="check"';} ?>>-</option>
|
|
<option value="Favorable" <?php if($_REQUEST['InfoEnq']['AvisAssureur']=='Favorable'){ print 'checked="check"';} ?>>Favorable</option>
|
|
<option value="Défavorable" <?php if($_REQUEST['InfoEnq']['AvisAssureur']=='Défavorable'){ print 'checked="check"';} ?>>Défavorable</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<h2>Demandeur : </h2>
|
|
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">Votre profil <font color="Red">*</font></label>
|
|
<div class="field">
|
|
<select id="profil" name="InfoUser[Profil]">
|
|
<option value="Achats" <?php if($_REQUEST['InfoUser']['Profil']=='Achats'){print 'selected="selected"';};?>>Service Achats</option>
|
|
<option value="Commerce" <?php if($_REQUEST['InfoUser']['Profil']=='Commerce'){print 'selected="selected"';};?>>Commerce</option>
|
|
<option value="Recouvrement" <?php if($_REQUEST['InfoUser']['Profil']=='Recouvrement'){print 'selected="selected"';};?>>Recouvrement</option>
|
|
<option value="Contentieux" <?php if($_REQUEST['InfoUser']['Profil']=='Contentieux'){print 'selected="selected"';};?>>Contentieux</option>
|
|
<option value="Autre" <?php if($_REQUEST['InfoUser']['Profil']=='Autre'){print 'selected="selected"';};?>>Autre</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="autreProfil" class="fieldgrp">
|
|
<label class="StyleInfoLib">Précisez</label>
|
|
<div class="field"><input type="text" name="InfoUser[ProfilAutre]" value="<?php print $_REQUEST['InfoUser']['ProfilAutre'];?>" /></div>
|
|
</div>
|
|
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">Votre Identité</label>
|
|
<div class="field"><input type="text" name="InfoUser[Identite]" value="<?php print $user['nom'].' '.$user['prenom']; ?>"/></div>
|
|
</div>
|
|
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">Votre Téléphone <font color="Red"></font>:</label>
|
|
<div class="field"><input type="text" name="InfoUser[Tel]" value="<?php
|
|
if(isset($_REQUEST['InfoUser']['Tel'])){print $_REQUEST['InfoUser']['Tel'];}
|
|
else print $user['tel']; ?>" /></div>
|
|
</div>
|
|
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">Votre Fax</label>
|
|
<div class="field"><input type="text" name="InfoUser[Fax]" value="<?php
|
|
if(isset($_REQUEST['InfoUser']['Fax'])){print $_REQUEST['InfoUser']['Fax'];}
|
|
else print $user['fax']; ?>"/></div>
|
|
</div>
|
|
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">Votre E-mail <font color="Red">*</font></label>
|
|
<div class="field"><input type="text" name="InfoUser[Email]" value="<?php
|
|
if(isset($_REQUEST['InfoUser']['Email'])){print $_REQUEST['InfoUser']['Email'];}
|
|
else print $user['mail']; ?>"/></div>
|
|
</div>
|
|
|
|
<h2>Enquête : </h2>
|
|
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">Type d'enquête</label>
|
|
<div class="field">
|
|
<input class="noborder" type="radio" id="premier" name="InfoEnq[Type]" value="premier" <?php if($_REQUEST['InfoEnq']['Type']=='premier'){print 'checked="checked"';};?>>EXPRESSE (24 h - encours inférieur à 20K€)
|
|
<br/>
|
|
<input class="noborder" type="radio" id="gold" name="InfoEnq[Type]" value="gold" <?php if($_REQUEST['InfoEnq']['Type']=='gold'){print 'checked="checked"';};?>>DECISION (72 h - encours supérieur à 20K€)
|
|
</div>
|
|
</div>
|
|
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">Précisions sur la demande</label>
|
|
<div class="field">
|
|
<select id="precision" name="InfoEnq[PrecisionsChoix]">
|
|
<option value="">Choisissez...</option>
|
|
<option value="1" <?php if($_REQUEST['InfoEnq']['PrecisionsChoix']=='1'){print 'selected="selected"';};?>>Enquête sur un client (contrôle crédit)</option>
|
|
<option value="2" <?php if($_REQUEST['InfoEnq']['PrecisionsChoix']=='2'){print 'selected="selected"';};?>>Enquête sur un prospect (ouverture de compte)</option>
|
|
<option value="3" <?php if($_REQUEST['InfoEnq']['PrecisionsChoix']=='3'){print 'selected="selected"';};?>>Enquête sur un fournisseur stratégique</option>
|
|
<option value="4" <?php if($_REQUEST['InfoEnq']['PrecisionsChoix']=='4'){print 'selected="selected"';};?>>Enquête sur un fournisseur non stratégique</option>
|
|
<option value="5" <?php if($_REQUEST['InfoEnq']['PrecisionsChoix']=='5'){print 'selected="selected"';};?>>Autre type d'enquête (Précisez...)</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="fournisseur" class="fieldgrp">
|
|
<label class="StyleInfoLib">CA réalisé avec le fournisseur</label>
|
|
<div class="field"><input type="text" name="InfoEnq[Precisions][MontantCA]" value="<?php print $_REQUEST['InfoEnq']['Precisions']['MontantCA']; ?>" /> €</div>
|
|
</div>
|
|
|
|
<div id="credit" class="fieldgrp">
|
|
<label class="StyleInfoLib">Motif du contrôle</label>
|
|
<div class="field"><textarea name="InfoEnq[Precisions][Motif]"><?php print $_REQUEST['InfoEnq']['Precisions']['Motif']; ?></textarea></div>
|
|
</div>
|
|
|
|
<div id="autrePrecisions" class="fieldgrp">
|
|
<label class="StyleInfoLib">Précisez</label>
|
|
<div class="field"><textarea name="InfoEnq[Precisions][Autre]"><?php print $_REQUEST['InfoEnq']['Precisions']['Autre']; ?></textarea></div>
|
|
</div>
|
|
|
|
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">Ancienneté de la relation :</label>
|
|
<div class="field">
|
|
<input type="text" name="InfoEnq[Anciennete]" size="2" value="<?php print $_REQUEST['InfoEnq']['Anciennete']; ?>"/>
|
|
<input class="noborder" type="radio" name="InfoEnq[AncienneteDuree]" value="Mois" <?php if($_REQUEST['InfoEnq']['AncienneteDuree']=='Mois'){ print 'checked="checked"';}?>/>Mois
|
|
<input class="noborder" type="radio" name="InfoEnq[AncienneteDuree]" value="Annees" <?php if($_REQUEST['InfoEnq']['AncienneteDuree']=='Annees'){ print 'checked="checked"';}?>/>Années
|
|
</div>
|
|
</div>
|
|
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">Impayées :</label>
|
|
<div class="field">
|
|
<input class="noborder" type="radio" name="InfoEnq[ImpayeesChoix]" value="oui" <?php if($_REQUEST['InfoEnq']['ImpayeesChoix']=='oui'){ print 'checked="checked"';}?>/>Oui
|
|
<input class="noborder" type="radio" name="InfoEnq[ImpayeesChoix]" value="non" <?php if($_REQUEST['InfoEnq']['ImpayeesChoix']=='non'){ print 'checked="checked"';}?>/>Non
|
|
</div>
|
|
</div>
|
|
|
|
<div id="impayees">
|
|
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">Montant :</label>
|
|
<div class="field"><input type="text" name="InfoEnq[Impayees][Montant]" value="<?php print $_REQUEST['InfoEnq']['Impayees']['Montant']; ?>"/> €</div>
|
|
</div>
|
|
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">Nombre :</label>
|
|
<div class="field"><input type="text" name="InfoEnq[Impayees][Nombre]" value="<?php print $_REQUEST['InfoEnq']['Impayees']['Nombre']; ?>"/></div>
|
|
</div>
|
|
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">Date :</label>
|
|
<div class="field"><input type="text" name="InfoEnq[Impayees][Date]" value="<?php print $_REQUEST['InfoEnq']['Impayees']['Date']; ?>"/> (Format : JJ/MM/AAAA)</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">Retard de paiement :</label>
|
|
<div class="field">
|
|
<input class="noborder" type="radio" name="InfoEnq[RetardPaiementChoix]" value="oui" <?php if($_REQUEST['InfoEnq']['RetardPaiementChoix']=='oui'){ print 'checked="checked"';}?>/>Oui
|
|
<input class="noborder" type="radio" name="InfoEnq[RetardPaiementChoix]" value="non" <?php if($_REQUEST['InfoEnq']['RetardPaiementChoix']=='non'){ print 'checked="checked"';}?>/>Non
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div id="retardpaiement">
|
|
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">Montant :</label>
|
|
<div class="field"><input type="text" name="InfoEnq[RetardPaiement][Montant]" value="<?php print $_REQUEST['InfoEnq']['RetardPaiement']['Montant']; ?>"/> €</div>
|
|
</div>
|
|
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">Nombre :</label>
|
|
<div class="field"><input type="text" name="InfoEnq[RetardPaiement][Nombre]" value="<?php print $_REQUEST['InfoEnq']['RetardPaiement']['Nombre']; ?>"/></div>
|
|
</div>
|
|
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">Date :</label>
|
|
<div class="field"><input type="text" name="InfoEnq[RetardPaiement][Date]" value="<?php print $_REQUEST['InfoEnq']['RetardPaiement']['Date']; ?>"/> (Format : JJ/MM/AAAA)</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">Litiges techniques ou commerciaux :</label>
|
|
<div class="field">
|
|
<input class="noborder" type="radio" name="InfoEnq[LitigeChoix]" value="oui" <?php if($_REQUEST['InfoEnq']['LitigeChoix']=='oui'){ print 'checked="checked"';}?>/>Oui
|
|
<input class="noborder" type="radio" name="InfoEnq[LitigeChoix]" value="non" <?php if($_REQUEST['InfoEnq']['LitigeChoix']=='non'){ print 'checked="checked"';}?>/>Non
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div id="litige">
|
|
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">Précisions :</label>
|
|
<div class="field">
|
|
<textarea name="InfoEnq[Litige][Precisions]"><?php print $_REQUEST['InfoEnq']['Litige']['Precisions']; ?></textarea>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="fieldgrp">
|
|
<label class="StyleInfoLib">Observations ou questions spéciales</label>
|
|
<div class="field"><textarea name="InfoEnq[Observation]"><?php print $_REQUEST['InfoEnq']['Observation']; ?></textarea></div>
|
|
</div>
|
|
|
|
<div class="submit"><p class="submit-button"><input type="submit" name="submit" value="Envoyer" /></p></div>
|
|
|
|
</form>
|
|
<?php
|
|
}
|
|
|
|
if($commandeEnquete == TRUE){
|
|
if($result['results']['error']['errnum']==0){
|
|
$annee = substr($result['results']['dateCommande'],0,4);
|
|
$mois = substr($result['results']['dateCommande'],4,2);
|
|
$jour = substr($result['results']['dateCommande'],6,2);
|
|
$heure = substr($result['results']['dateCommande'],8,2);
|
|
$minutes = substr($result['results']['dateCommande'],10,2);
|
|
$ref = substr($result['results']['refCmde'],1);
|
|
$siren = $result['results']['siren'];
|
|
|
|
?>
|
|
<p>
|
|
Votre demande à été prise en compte le <?=$jour.'/'.$mois.'/'.$annee?> à <?=$heure?> h <?=$minutes?> sous la référence <b><?=$ref?></b> pour le siren <b><?=$siren?></b>.
|
|
</p>
|
|
<?php
|
|
}else{
|
|
$errnum = $result['results']['error']['errnum'];
|
|
$errmsg = $result['results']['error']['errmsg'];
|
|
?>
|
|
<p style="color:red;">
|
|
Erreur n° <?=$errnum?> - <?=$errmsg?>.
|
|
</p>
|
|
<?php
|
|
}
|
|
}
|
|
?>
|
|
</div>
|