Correction suite à mise en production
This commit is contained in:
parent
3e966c1271
commit
ed755941fc
@ -73,8 +73,8 @@ class ServiceController extends Zend_Controller_Action
|
|||||||
$pathServiceUrl = 'clients/'.$client.'/v'.$version.'?wsdl';
|
$pathServiceUrl = 'clients/'.$client.'/v'.$version.'?wsdl';
|
||||||
}
|
}
|
||||||
//On redéfini le nom du service
|
//On redéfini le nom du service
|
||||||
$serviceName = 'Entreprise';
|
$serviceClassName = 'Entreprise';
|
||||||
$fichierWsdl = $clientClassName.'-'.$serviceName.'-'.$version.'.wsdl';
|
$fichierWsdl = $clientClassName.'-'.$serviceClassName.'-'.$version.'.wsdl';
|
||||||
} else {
|
} else {
|
||||||
$pathServiceClassIni = 'WsScore/'.$serviceClassName.'/v'.$version.'/'.$serviceClassName.'.ini';
|
$pathServiceClassIni = 'WsScore/'.$serviceClassName.'/v'.$version.'/'.$serviceClassName.'.ini';
|
||||||
$pathServiceClassPhp = 'WsScore/'.$serviceClassName.'/v'.$version.'/'.$serviceClassName.'.php';
|
$pathServiceClassPhp = 'WsScore/'.$serviceClassName.'/v'.$version.'/'.$serviceClassName.'.php';
|
||||||
|
@ -4,11 +4,6 @@ require_once realpath(dirname(__FILE__)).'/Types.php';
|
|||||||
|
|
||||||
class Entreprise extends WsScore
|
class Entreprise extends WsScore
|
||||||
{
|
{
|
||||||
public function __construct()
|
|
||||||
{
|
|
||||||
parent::__construct();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retourne les informations identitaires de l'entreprise ou de l'établissement demandé
|
* Retourne les informations identitaires de l'entreprise ou de l'établissement demandé
|
||||||
* @param string $siret Siren de l'entreprise ou siret de l'établissement
|
* @param string $siret Siren de l'entreprise ou siret de l'établissement
|
||||||
@ -53,7 +48,7 @@ class Entreprise extends WsScore
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Adresse Normalisé
|
// Adresse Normalisé
|
||||||
$adresse = $iInsee->getAdresse($siren, $nic);
|
$adresse = $iInsee->getAdresse($siren, $nic);
|
||||||
$adresseNorme = new AdresseNorme();
|
$adresseNorme = new AdresseNorme();
|
||||||
$adresseNorme->L1 = $adresse['L1_NOM'];
|
$adresseNorme->L1 = $adresse['L1_NOM'];
|
||||||
$adresseNorme->L2 = $adresse['L2_NOM2'];
|
$adresseNorme->L2 = $adresse['L2_NOM2'];
|
||||||
@ -84,7 +79,7 @@ class Entreprise extends WsScore
|
|||||||
$identite->Sigle = prepareString($entrep['Sigle']);
|
$identite->Sigle = prepareString($entrep['Sigle']);
|
||||||
$identite->SigleLong = prepareString($entrep['sigleLong']); // Ajouté le 4 08 2009
|
$identite->SigleLong = prepareString($entrep['sigleLong']); // Ajouté le 4 08 2009
|
||||||
$identite->Enseigne = prepareString($entrep['Enseigne']);
|
$identite->Enseigne = prepareString($entrep['Enseigne']);
|
||||||
$identite->EnseigneLong = prepareString($entrep['enseigneLong']); // Ajouté le 16 11 2010
|
$identite->EnseigneLong = prepareString($entrep['enseigneLong']); // Ajouté le 16 11 2010
|
||||||
$identite->Adresse = prepareString($entrep['Adresse']);
|
$identite->Adresse = prepareString($entrep['Adresse']);
|
||||||
$identite->Adresse2 = prepareString($entrep['Adresse2']);
|
$identite->Adresse2 = prepareString($entrep['Adresse2']);
|
||||||
$identite->AdresseNum = prepareString($entrep['AdresseNum']);
|
$identite->AdresseNum = prepareString($entrep['AdresseNum']);
|
||||||
@ -95,7 +90,7 @@ class Entreprise extends WsScore
|
|||||||
$identite->Ville = prepareString($entrep['Ville']);
|
$identite->Ville = prepareString($entrep['Ville']);
|
||||||
$identite->Pays = prepareString($entrep['Pays']); // Ajouté le 18 02 2008
|
$identite->Pays = prepareString($entrep['Pays']); // Ajouté le 18 02 2008
|
||||||
$identite->PaysIso2 = $entrep['PaysIso2'];
|
$identite->PaysIso2 = $entrep['PaysIso2'];
|
||||||
$identite->AdresseNorme = $adresseNorme;
|
$identite->AdresseNorme = $adresseNorme;
|
||||||
$identite->Civilite = $entrep['Civilite'];
|
$identite->Civilite = $entrep['Civilite'];
|
||||||
$identite->NbEtab = $entrep['NbEtab'];
|
$identite->NbEtab = $entrep['NbEtab'];
|
||||||
$identite->Tel = prepareString($entrep['Tel']);
|
$identite->Tel = prepareString($entrep['Tel']);
|
||||||
@ -195,7 +190,7 @@ class Entreprise extends WsScore
|
|||||||
$this->authenticate();
|
$this->authenticate();
|
||||||
|
|
||||||
if (empty($position)) { $position = 0;}
|
if (empty($position)) { $position = 0;}
|
||||||
if (empty($nbRep)) { $nbRep = 20; }
|
if (empty($nbRep)) { $nbRep = 20; }
|
||||||
if (empty($maxRep)) { $maxRep = 200; }
|
if (empty($maxRep)) { $maxRep = 200; }
|
||||||
|
|
||||||
require_once 'i18n/cleanchar.php';
|
require_once 'i18n/cleanchar.php';
|
||||||
@ -205,7 +200,7 @@ class Entreprise extends WsScore
|
|||||||
$identifiant = $entCriteres->identifiant;
|
$identifiant = $entCriteres->identifiant;
|
||||||
$typeId = '';
|
$typeId = '';
|
||||||
|
|
||||||
//Detection autour de l'identifiant
|
//Detection autour de l'identifiant
|
||||||
if ($identifiant!='') {
|
if ($identifiant!='') {
|
||||||
$len = strlen($identifiant);
|
$len = strlen($identifiant);
|
||||||
//Numéro WALDEC
|
//Numéro WALDEC
|
||||||
@ -237,10 +232,10 @@ class Entreprise extends WsScore
|
|||||||
$adresse = trim($entCriteres->adresse);
|
$adresse = trim($entCriteres->adresse);
|
||||||
|
|
||||||
//Détection Tel/Fax uniquement
|
//Détection Tel/Fax uniquement
|
||||||
if ( empty($typeId)
|
if ( empty($typeId)
|
||||||
&& empty($entCriteres->raisonSociale)
|
&& empty($entCriteres->raisonSociale)
|
||||||
&& empty($adresse)
|
&& empty($adresse)
|
||||||
&& empty($entCriteres->codePostal)
|
&& empty($entCriteres->codePostal)
|
||||||
&& empty($entCriteres->ville)
|
&& empty($entCriteres->ville)
|
||||||
&& empty($entCriteres->naf) ){
|
&& empty($entCriteres->naf) ){
|
||||||
$typeId = 'TEL';
|
$typeId = 'TEL';
|
||||||
@ -282,7 +277,7 @@ class Entreprise extends WsScore
|
|||||||
} elseif ($typeId == 'TEL'){
|
} elseif ($typeId == 'TEL'){
|
||||||
|
|
||||||
$O = $this->searchTelFax(
|
$O = $this->searchTelFax(
|
||||||
$entCriteres->telFax,
|
$entCriteres->telFax,
|
||||||
empty($position) ? 0 : $position,
|
empty($position) ? 0 : $position,
|
||||||
empty($nbRep) ? 20 : $nbRep,
|
empty($nbRep) ? 20 : $nbRep,
|
||||||
empty($maxRep) ? 200 : $maxRep
|
empty($maxRep) ? 200 : $maxRep
|
||||||
@ -389,7 +384,7 @@ class Entreprise extends WsScore
|
|||||||
$reponse->NafEtab = $etab['NafEtab']; // Etablissement
|
$reponse->NafEtab = $etab['NafEtab']; // Etablissement
|
||||||
$reponse->NafEtabLib = $iInsee->getLibelleNaf($etab['NafEtab']); // Etablissement
|
$reponse->NafEtabLib = $iInsee->getLibelleNaf($etab['NafEtab']); // Etablissement
|
||||||
$reponse->NafEnt = $etab['NafEnt']; // Entreprise
|
$reponse->NafEnt = $etab['NafEnt']; // Entreprise
|
||||||
$reponse->NafEntLib = $iInsee->getLibelleNaf($etab['NafEnt']);
|
$reponse->NafEntLib = $iInsee->getLibelleNaf($etab['NafEnt']);
|
||||||
|
|
||||||
$tabRet[] = $reponse;
|
$tabRet[] = $reponse;
|
||||||
}
|
}
|
||||||
|
@ -4,11 +4,6 @@ require_once realpath(dirname(__FILE__)).'/Types.php';
|
|||||||
|
|
||||||
class Entreprise extends WsScore
|
class Entreprise extends WsScore
|
||||||
{
|
{
|
||||||
public function __construct()
|
|
||||||
{
|
|
||||||
parent::__construct();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retourne les informations identitaires de l'entreprise ou de l'établissement demandé
|
* Retourne les informations identitaires de l'entreprise ou de l'établissement demandé
|
||||||
* @param string $siret Siren de l'entreprise ou siret de l'établissement
|
* @param string $siret Siren de l'entreprise ou siret de l'établissement
|
||||||
@ -53,7 +48,7 @@ class Entreprise extends WsScore
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Adresse Normalisé
|
// Adresse Normalisé
|
||||||
$adresse = $iInsee->getAdresse($siren, $nic);
|
$adresse = $iInsee->getAdresse($siren, $nic);
|
||||||
$adresseNorme = new AdresseNorme();
|
$adresseNorme = new AdresseNorme();
|
||||||
$adresseNorme->L1 = $adresse['L1_NOM'];
|
$adresseNorme->L1 = $adresse['L1_NOM'];
|
||||||
$adresseNorme->L2 = $adresse['L2_NOM2'];
|
$adresseNorme->L2 = $adresse['L2_NOM2'];
|
||||||
@ -84,7 +79,7 @@ class Entreprise extends WsScore
|
|||||||
$identite->Sigle = prepareString($entrep['Sigle']);
|
$identite->Sigle = prepareString($entrep['Sigle']);
|
||||||
$identite->SigleLong = prepareString($entrep['sigleLong']); // Ajouté le 4 08 2009
|
$identite->SigleLong = prepareString($entrep['sigleLong']); // Ajouté le 4 08 2009
|
||||||
$identite->Enseigne = prepareString($entrep['Enseigne']);
|
$identite->Enseigne = prepareString($entrep['Enseigne']);
|
||||||
$identite->EnseigneLong = prepareString($entrep['enseigneLong']); // Ajouté le 16 11 2010
|
$identite->EnseigneLong = prepareString($entrep['enseigneLong']); // Ajouté le 16 11 2010
|
||||||
$identite->Adresse = prepareString($entrep['Adresse']);
|
$identite->Adresse = prepareString($entrep['Adresse']);
|
||||||
$identite->Adresse2 = prepareString($entrep['Adresse2']);
|
$identite->Adresse2 = prepareString($entrep['Adresse2']);
|
||||||
$identite->AdresseNum = prepareString($entrep['AdresseNum']);
|
$identite->AdresseNum = prepareString($entrep['AdresseNum']);
|
||||||
@ -95,7 +90,7 @@ class Entreprise extends WsScore
|
|||||||
$identite->Ville = prepareString($entrep['Ville']);
|
$identite->Ville = prepareString($entrep['Ville']);
|
||||||
$identite->Pays = prepareString($entrep['Pays']); // Ajouté le 18 02 2008
|
$identite->Pays = prepareString($entrep['Pays']); // Ajouté le 18 02 2008
|
||||||
$identite->PaysIso2 = $entrep['PaysIso2'];
|
$identite->PaysIso2 = $entrep['PaysIso2'];
|
||||||
$identite->AdresseNorme = $adresseNorme;
|
$identite->AdresseNorme = $adresseNorme;
|
||||||
$identite->Civilite = $entrep['Civilite'];
|
$identite->Civilite = $entrep['Civilite'];
|
||||||
$identite->NbEtab = $entrep['NbEtab'];
|
$identite->NbEtab = $entrep['NbEtab'];
|
||||||
$identite->Tel = prepareString($entrep['Tel']);
|
$identite->Tel = prepareString($entrep['Tel']);
|
||||||
@ -195,7 +190,7 @@ class Entreprise extends WsScore
|
|||||||
$this->authenticate();
|
$this->authenticate();
|
||||||
|
|
||||||
if (empty($position)) { $position = 0;}
|
if (empty($position)) { $position = 0;}
|
||||||
if (empty($nbRep)) { $nbRep = 20; }
|
if (empty($nbRep)) { $nbRep = 20; }
|
||||||
if (empty($maxRep)) { $maxRep = 200; }
|
if (empty($maxRep)) { $maxRep = 200; }
|
||||||
|
|
||||||
require_once 'i18n/cleanchar.php';
|
require_once 'i18n/cleanchar.php';
|
||||||
@ -205,7 +200,7 @@ class Entreprise extends WsScore
|
|||||||
$identifiant = $entCriteres->identifiant;
|
$identifiant = $entCriteres->identifiant;
|
||||||
$typeId = '';
|
$typeId = '';
|
||||||
|
|
||||||
//Detection autour de l'identifiant
|
//Detection autour de l'identifiant
|
||||||
if ($identifiant!='') {
|
if ($identifiant!='') {
|
||||||
$len = strlen($identifiant);
|
$len = strlen($identifiant);
|
||||||
//Numéro WALDEC
|
//Numéro WALDEC
|
||||||
@ -237,10 +232,10 @@ class Entreprise extends WsScore
|
|||||||
$adresse = trim($entCriteres->adresse);
|
$adresse = trim($entCriteres->adresse);
|
||||||
|
|
||||||
//Détection Tel/Fax uniquement
|
//Détection Tel/Fax uniquement
|
||||||
if ( empty($typeId)
|
if ( empty($typeId)
|
||||||
&& empty($entCriteres->raisonSociale)
|
&& empty($entCriteres->raisonSociale)
|
||||||
&& empty($adresse)
|
&& empty($adresse)
|
||||||
&& empty($entCriteres->codePostal)
|
&& empty($entCriteres->codePostal)
|
||||||
&& empty($entCriteres->ville)
|
&& empty($entCriteres->ville)
|
||||||
&& empty($entCriteres->naf) ){
|
&& empty($entCriteres->naf) ){
|
||||||
$typeId = 'TEL';
|
$typeId = 'TEL';
|
||||||
@ -282,7 +277,7 @@ class Entreprise extends WsScore
|
|||||||
} elseif ($typeId == 'TEL'){
|
} elseif ($typeId == 'TEL'){
|
||||||
|
|
||||||
$O = $this->searchTelFax(
|
$O = $this->searchTelFax(
|
||||||
$entCriteres->telFax,
|
$entCriteres->telFax,
|
||||||
empty($position) ? 0 : $position,
|
empty($position) ? 0 : $position,
|
||||||
empty($nbRep) ? 20 : $nbRep,
|
empty($nbRep) ? 20 : $nbRep,
|
||||||
empty($maxRep) ? 200 : $maxRep
|
empty($maxRep) ? 200 : $maxRep
|
||||||
@ -346,7 +341,7 @@ class Entreprise extends WsScore
|
|||||||
if (empty($ville)) $ville = '';
|
if (empty($ville)) $ville = '';
|
||||||
if (empty($siege)) $siege = false;
|
if (empty($siege)) $siege = false;
|
||||||
|
|
||||||
if ( $actif ) {
|
if ( $actif ) {
|
||||||
$actif = 1;
|
$actif = 1;
|
||||||
} else {
|
} else {
|
||||||
$actif = 2;
|
$actif = 2;
|
||||||
@ -389,7 +384,7 @@ class Entreprise extends WsScore
|
|||||||
$reponse->NafEtab = $etab['NafEtab']; // Etablissement
|
$reponse->NafEtab = $etab['NafEtab']; // Etablissement
|
||||||
$reponse->NafEtabLib = $iInsee->getLibelleNaf($etab['NafEtab']); // Etablissement
|
$reponse->NafEtabLib = $iInsee->getLibelleNaf($etab['NafEtab']); // Etablissement
|
||||||
$reponse->NafEnt = $etab['NafEnt']; // Entreprise
|
$reponse->NafEnt = $etab['NafEnt']; // Entreprise
|
||||||
$reponse->NafEntLib = $iInsee->getLibelleNaf($etab['NafEnt']);
|
$reponse->NafEntLib = $iInsee->getLibelleNaf($etab['NafEnt']);
|
||||||
|
|
||||||
$tabRet[] = $reponse;
|
$tabRet[] = $reponse;
|
||||||
}
|
}
|
||||||
|
@ -4,10 +4,6 @@ require_once realpath(dirname(__FILE__)).'/Types.php';
|
|||||||
|
|
||||||
class Entreprise extends WsScore
|
class Entreprise extends WsScore
|
||||||
{
|
{
|
||||||
public function __construct()
|
|
||||||
{
|
|
||||||
parent::__construct();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retourne les informations identitaires de l'entreprise ou de l'établissement demandé
|
* Retourne les informations identitaires de l'entreprise ou de l'établissement demandé
|
||||||
@ -109,7 +105,7 @@ class Entreprise extends WsScore
|
|||||||
$this->authenticate();
|
$this->authenticate();
|
||||||
|
|
||||||
if (empty($position)) { $position = 0;}
|
if (empty($position)) { $position = 0;}
|
||||||
if (empty($nbRep)) { $nbRep = 20; }
|
if (empty($nbRep)) { $nbRep = 20; }
|
||||||
if (empty($maxRep)) { $maxRep = 200; }
|
if (empty($maxRep)) { $maxRep = 200; }
|
||||||
|
|
||||||
require_once 'i18n/cleanchar.php';
|
require_once 'i18n/cleanchar.php';
|
||||||
@ -119,7 +115,7 @@ class Entreprise extends WsScore
|
|||||||
$identifiant = $entCriteres->identifiant;
|
$identifiant = $entCriteres->identifiant;
|
||||||
$typeId = '';
|
$typeId = '';
|
||||||
|
|
||||||
//Detection autour de l'identifiant
|
//Detection autour de l'identifiant
|
||||||
if ($identifiant!='') {
|
if ($identifiant!='') {
|
||||||
$len = strlen($identifiant);
|
$len = strlen($identifiant);
|
||||||
//Numéro WALDEC
|
//Numéro WALDEC
|
||||||
@ -151,10 +147,10 @@ class Entreprise extends WsScore
|
|||||||
$adresse = trim($entCriteres->adresse);
|
$adresse = trim($entCriteres->adresse);
|
||||||
|
|
||||||
//Détection Tel/Fax uniquement
|
//Détection Tel/Fax uniquement
|
||||||
if ( empty($typeId)
|
if ( empty($typeId)
|
||||||
&& empty($entCriteres->raisonSociale)
|
&& empty($entCriteres->raisonSociale)
|
||||||
&& empty($adresse)
|
&& empty($adresse)
|
||||||
&& empty($entCriteres->codePostal)
|
&& empty($entCriteres->codePostal)
|
||||||
&& empty($entCriteres->ville)
|
&& empty($entCriteres->ville)
|
||||||
&& empty($entCriteres->naf) ){
|
&& empty($entCriteres->naf) ){
|
||||||
$typeId = 'TEL';
|
$typeId = 'TEL';
|
||||||
@ -196,7 +192,7 @@ class Entreprise extends WsScore
|
|||||||
} elseif ($typeId == 'TEL'){
|
} elseif ($typeId == 'TEL'){
|
||||||
|
|
||||||
$O = $this->searchTelFax(
|
$O = $this->searchTelFax(
|
||||||
$entCriteres->telFax,
|
$entCriteres->telFax,
|
||||||
empty($position) ? 0 : $position,
|
empty($position) ? 0 : $position,
|
||||||
empty($nbRep) ? 20 : $nbRep,
|
empty($nbRep) ? 20 : $nbRep,
|
||||||
empty($maxRep) ? 200 : $maxRep
|
empty($maxRep) ? 200 : $maxRep
|
||||||
@ -260,7 +256,7 @@ class Entreprise extends WsScore
|
|||||||
if (empty($ville)) $ville = '';
|
if (empty($ville)) $ville = '';
|
||||||
if (empty($siege)) $siege = false;
|
if (empty($siege)) $siege = false;
|
||||||
|
|
||||||
if ( $actif ) {
|
if ( $actif ) {
|
||||||
$actif = 1;
|
$actif = 1;
|
||||||
} else {
|
} else {
|
||||||
$actif = 2;
|
$actif = 2;
|
||||||
@ -303,7 +299,7 @@ class Entreprise extends WsScore
|
|||||||
$reponse->NafEtab = $etab['NafEtab']; // Etablissement
|
$reponse->NafEtab = $etab['NafEtab']; // Etablissement
|
||||||
$reponse->NafEtabLib = $iInsee->getLibelleNaf($etab['NafEtab']); // Etablissement
|
$reponse->NafEtabLib = $iInsee->getLibelleNaf($etab['NafEtab']); // Etablissement
|
||||||
$reponse->NafEnt = $etab['NafEnt']; // Entreprise
|
$reponse->NafEnt = $etab['NafEnt']; // Entreprise
|
||||||
$reponse->NafEntLib = $iInsee->getLibelleNaf($etab['NafEnt']);
|
$reponse->NafEntLib = $iInsee->getLibelleNaf($etab['NafEnt']);
|
||||||
|
|
||||||
$tabRet[] = $reponse;
|
$tabRet[] = $reponse;
|
||||||
}
|
}
|
||||||
|
@ -4,10 +4,6 @@ require_once realpath(dirname(__FILE__)).'/Types.php';
|
|||||||
|
|
||||||
class Entreprise extends WsScore
|
class Entreprise extends WsScore
|
||||||
{
|
{
|
||||||
public function __construct()
|
|
||||||
{
|
|
||||||
parent::__construct();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retourne les informations identitaires de l'entreprise ou de l'établissement demandé
|
* Retourne les informations identitaires de l'entreprise ou de l'établissement demandé
|
||||||
|
@ -288,11 +288,12 @@ class WsScore
|
|||||||
$iDbCrm = new WDB('sdv1');
|
$iDbCrm = new WDB('sdv1');
|
||||||
$rep = $iDbCrm->select(
|
$rep = $iDbCrm->select(
|
||||||
'utilisateurs u, clients c',
|
'utilisateurs u, clients c',
|
||||||
'u.login, u.id, u.email, u.password, u.idClient, u.typeCompte, u.actif, u.filtre_ip, u.profil,'.
|
'u.login, u.id, u.email, u.password, u.idClient, u.typeCompte, u.actif, u.filtre_ip, u.profil, '.
|
||||||
' u.pref, u.rechRefType, u.profil, u.nombreConnexions, u.dateDerniereConnexion, u.droits,'.
|
'u.civilite, u.nom, u.prenom, u.tel, u.fax, u.mobile, '.
|
||||||
' u.referenceParDefaut, u.nbReponses, u.formatMail, u.dateDebutCompte, u.dateFinCompte, u.accesWS,'.
|
'u.pref, u.rechRefType, u.profil, u.nombreConnexions, u.dateDerniereConnexion, u.droits, '.
|
||||||
' u.acceptationCGU,'.
|
'u.referenceParDefaut, u.nbReponses, u.formatMail, u.dateDebutCompte, u.dateFinCompte, u.accesWS, '.
|
||||||
' c.droits AS droitsClients, c.test AS clientTest, c.typeScore, c.timeout',
|
'u.acceptationCGU, '.
|
||||||
|
'c.droits AS droitsClients, c.test AS clientTest, c.typeScore, c.timeout',
|
||||||
"u.login='$login' AND u.idClient=c.id AND u.actif=1 AND u.deleted=0 AND c.actif='Oui'",
|
"u.login='$login' AND u.idClient=c.id AND u.actif=1 AND u.deleted=0 AND c.actif='Oui'",
|
||||||
false, MYSQL_ASSOC
|
false, MYSQL_ASSOC
|
||||||
);
|
);
|
||||||
@ -310,6 +311,12 @@ class WsScore
|
|||||||
$this->tabInfoUser = array(
|
$this->tabInfoUser = array(
|
||||||
'login' => $login,
|
'login' => $login,
|
||||||
'id' => $tabRep['id'],
|
'id' => $tabRep['id'],
|
||||||
|
'civilite' => $tabRep['civilite'],
|
||||||
|
'nom' => $tabRep['nom'],
|
||||||
|
'prenom' => $tabRep['prenom'],
|
||||||
|
'tel' => $tabRep['tel'],
|
||||||
|
'fax' => $tabRep['fax'],
|
||||||
|
'mobile' => $tabRep['mobile'],
|
||||||
'email' => $tabRep['email'],
|
'email' => $tabRep['email'],
|
||||||
'typeCompte' => $tabRep['typeCompte'],
|
'typeCompte' => $tabRep['typeCompte'],
|
||||||
'idClient' => $tabRep['idClient'],
|
'idClient' => $tabRep['idClient'],
|
||||||
|
Loading…
Reference in New Issue
Block a user