예제 #1
0
 /**
  * @name validAffiche($pData)
  * @return AdherentVR
  * @desc Test la validite de l'élément
  */
 public static function validAffiche($pData)
 {
     $lVr = new AdherentVR();
     //Tests inputs
     if (!isset($pData['idAdherent'])) {
         $lVr->setValid(false);
         $lVr->getId()->setValid(false);
         $lErreur = new VRerreur();
         $lErreur->setCode(MessagesErreurs::ERR_201_CODE);
         $lErreur->setMessage(MessagesErreurs::ERR_201_MSG);
         $lVr->getId()->addErreur($lErreur);
     }
     if ($lVr->getValid()) {
         if (!is_int((int) $pData['idAdherent'])) {
             $lVr->setValid(false);
             $lVr->getId()->setValid(false);
             $lErreur = new VRerreur();
             $lErreur->setCode(MessagesErreurs::ERR_104_CODE);
             $lErreur->setMessage(MessagesErreurs::ERR_104_MSG);
             $lVr->getId()->addErreur($lErreur);
         }
         // Vérifie si l'adhérent existe
         $lAdherent = AdherentViewManager::select($pData['idAdherent']);
         if ($lAdherent->getAdhId() != $pData['idAdherent']) {
             $lVr = new TemplateVR();
             $lVr->setValid(false);
             $lVr->getLog()->setValid(false);
             $lErreur = new VRerreur();
             $lErreur->setCode(MessagesErreurs::ERR_216_CODE);
             $lErreur->setMessage(MessagesErreurs::ERR_216_MSG);
             $lVr->getLog()->addErreur($lErreur);
         }
     }
     return $lVr;
 }
 /**
  * @name AdhesionAdherentVR()
  * @return bool
  * @desc Constructeur
  */
 function AdhesionAdherentVR($pId = null, $pIdAdherent = null, $pIdTypeAdhesion = null, $pIdOperation = null, $pStatutFormulaire = null)
 {
     parent::__construct();
     if (!is_null($pId)) {
         $this->mId = $pId;
     } else {
         $this->mId = new VRelement();
     }
     if (!is_null($pIdAdherent)) {
         $this->mIdAdherent = $pIdAdherent;
     } else {
         $this->mIdAdherent = new VRelement();
     }
     if (!is_null($pIdTypeAdhesion)) {
         $this->mIdTypeAdhesion = $pIdTypeAdhesion;
     } else {
         $this->mIdTypeAdhesion = new VRelement();
     }
     if (!is_null($pIdOperation)) {
         $this->mIdOperation = $pIdOperation;
     } else {
         $this->mIdOperation = new VRelement();
     }
     if (!is_null($pStatutFormulaire)) {
         $this->mStatutFormulaire = $pStatutFormulaire;
     } else {
         $this->mStatutFormulaire = new VRelement();
     }
 }
 /**
  * @name InfoAchatMarcheVR()
  * @return bool
  * @desc Constructeur
  */
 function InfoAchatMarcheVR()
 {
     parent::__construct();
     $this->mId = new VRelement();
     $this->mIdAdherent = new VRelement();
     $this->mIdMarche = new VRelement();
 }
 /**
  * @name RechercheListeVR()
  * @return bool
  * @desc Constructeur
  */
 function RechercheListeVR()
 {
     parent::__construct();
     $this->mValid = true;
     $this->mLog = new VRelement();
     $this->mDateDebut = new VRelement();
     $this->mDateFin = new VRelement();
 }
 /**
  * @name InformationBancaireVR()
  * @return bool
  * @desc Constructeur
  */
 function InformationBancaireVR()
 {
     parent::__construct();
     $this->mId = new VRelement();
     $this->mIdCompte = new VRelement();
     $this->mNumeroCompte = new VRelement();
     $this->mRaisonSociale = new VRelement();
 }
예제 #6
0
 /**
  * @name AchatVR()
  * @return bool
  * @desc Constructeur
  */
 function AchatVR()
 {
     parent::__construct();
     $this->mOperationAchat = new VRelement();
     $this->mOperationAchatSolidaire = new VRelement();
     $this->mProduits = array();
     $this->mRechargement = new VRelement();
 }
예제 #7
0
 /**
  * @name RemiseChequeVR()
  * @return bool
  * @desc Constructeur
  */
 function RemiseChequeVR()
 {
     parent::__construct();
     $this->mId = new VRelement();
     $this->mNumero = new VRelement();
     $this->mIdCompte = new VRelement();
     $this->mMontant = new VRelement();
     $this->mOperations = array();
 }
 /**
  * @name OperationDetailVR()
  * @return bool
  * @desc Constructeur
  */
 function OperationDetailVR()
 {
     parent::__construct();
     $this->mId = new VRelement();
     $this->mMontant = new VRelement();
     $this->mTypePaiement = new VRelement();
     $this->mChampComplementaireObligatoire = new VRelement();
     $this->mChampComplementaire = new VRelement();
 }
 /**
  * @name RechargementCompteVR()
  * @return bool
  * @desc Constructeur
  */
 function RechargementCompteVR()
 {
     parent::__construct();
     $this->mValid = true;
     $this->mLog = new VRelement();
     $this->mId = new VRelement();
     $this->mMontant = new VRelement();
     $this->mTypePaiement = new VRelement();
     $this->mChampComplementaireObligatoire = new VRelement();
     $this->mChampComplementaire = new VRelement();
 }
예제 #10
0
 /**
  * @name FactureVR()
  * @return bool
  * @desc Constructeur
  */
 function FactureVR()
 {
     parent::__construct();
     $this->mOperation = new VRelement();
     $this->mOperationProducteur = new VRelement();
     $this->mOperationZeybu = new VRelement();
     $this->mMontant = new VRelement();
     $this->mTypePaiement = new VRelement();
     $this->mChampComplementaire = array();
     $this->mProduits = array();
 }
 /**
  * @name ProduitDetailFactureVR()
  * @return bool
  * @desc Constructeur
  */
 function ProduitDetailFactureVR()
 {
     parent::__construct();
     $this->mIdNomProduit = new VRelement();
     $this->mIdStock = new VRelement();
     $this->mIdDetailOperation = new VRelement();
     $this->mIdStockSolidaire = new VRelement();
     $this->mQuantite = new VRelement();
     $this->mUnite = new VRelement();
     $this->mQuantiteSolidaire = new VRelement();
     $this->mUniteSolidaire = new VRelement();
     $this->mMontant = new VRelement();
 }
 /**
  * @name AdhesionAdherentDetailVR()
  * @return bool
  * @desc Constructeur
  */
 function AdhesionAdherentDetailVR($pAdhesionAdherent = null, $pOperation = null)
 {
     parent::__construct();
     if (!is_null($pAdhesionAdherent)) {
         $this->mAdhesionAdherent = $pAdhesionAdherent;
     } else {
         $this->mAdhesionAdherent = new VRelement();
     }
     if (!is_null($pOperation)) {
         $this->mOperation = $pOperation;
     } else {
         $this->mOperation = new VRelement();
     }
 }
예제 #13
0
 /**
  * @name TypeAdhesionVR()
  * @return bool
  * @desc Constructeur
  */
 function TypeAdhesionVR($pId = null, $pIdAdhesion = null, $pLabel = null, $pIdPerimetre = null, $pMontant = null, $pDateCreation = null, $pDateModification = null, $pEtat = null)
 {
     parent::__construct();
     if (!is_null($pId)) {
         $this->mId = $pId;
     } else {
         $this->mId = new VRelement();
     }
     if (!is_null($pIdAdhesion)) {
         $this->mIdAdhesion = $pIdAdhesion;
     } else {
         $this->mIdAdhesion = new VRelement();
     }
     if (!is_null($pLabel)) {
         $this->mLabel = $pLabel;
     } else {
         $this->mIdAdhesion = new VRelement();
     }
     if (!is_null($pIdPerimetre)) {
         $this->mIdPerimetre = $pIdPerimetre;
     } else {
         $this->mIdPerimetre = new VRelement();
     }
     if (!is_null($pMontant)) {
         $this->mMontant = $pMontant;
     } else {
         $this->mMontant = new VRelement();
     }
     if (!is_null($pDateCreation)) {
         $this->mDateCreation = $pDateCreation;
     } else {
         $this->mDateCreation = new VRelement();
     }
     if (!is_null($pDateModification)) {
         $this->mDateModification = $pDateModification;
     } else {
         $this->mDateModification = new VRelement();
     }
     if (!is_null($pEtat)) {
         $this->mEtat = $pEtat;
     } else {
         $this->mEtat = new VRelement();
     }
 }
예제 #14
0
 /**
  * @name AdhesionVR()
  * @return bool
  * @desc Constructeur
  */
 function AdhesionVR($pId = null, $pLabel = null, $pDateDebut = null, $pDateFin = null, $pDateCreation = null, $pDateModification = null, $pEtat = null, $pTypes = null)
 {
     parent::__construct();
     if (!is_null($pId)) {
         $this->mId = $pId;
     } else {
         $this->mId = new VRelement();
     }
     if (!is_null($pLabel)) {
         $this->mLabel = $pLabel;
     } else {
         $this->mLabel = new VRelement();
     }
     if (!is_null($pDateDebut)) {
         $this->mDateDebut = $pDateDebut;
     } else {
         $this->mDateDebut = new VRelement();
     }
     if (!is_null($pDateFin)) {
         $this->mDateFin = $pDateFin;
     } else {
         $this->mDateFin = new VRelement();
     }
     if (!is_null($pDateCreation)) {
         $this->mDateCreation = $pDateCreation;
     } else {
         $this->mDateCreation = new VRelement();
     }
     if (!is_null($pDateModification)) {
         $this->mDateModification = $pDateModification;
     } else {
         $this->mDateModification = new VRelement();
     }
     if (!is_null($pEtat)) {
         $this->mEtat = $pEtat;
     } else {
         $this->mEtat = new VRelement();
     }
     if (!is_null($pTypes)) {
         $this->mTypes = $pTypes;
     } else {
         $this->mTypes = array();
     }
 }
예제 #15
0
 /**
  * @name executerRequeteInsertRetourId ($requete)
  * @param string 
  * @return integer
  * @desc Exécute la requête d'insertion passée en paramètre et retourne l'identifiant généré par la BDD
  */
 public static function executerRequeteInsertRetourId($pRequete)
 {
     $lDb = DbUtils::creerConnexion();
     $lResultat = @mysql_query($pRequete);
     if (!$lResultat) {
         // Initialisation du Logger
         $lLogger =& Log::singleton('file', CHEMIN_FICHIER_LOGS);
         $lLogger->setMask(Log::MAX(LOG_LEVEL));
         $lLogger->log(MessagesErreurs::ERR_603_MSG . " : " . mysql_error(), PEAR_LOG_DEBUG);
         // Maj des logs
         $lVr = new TemplateVR();
         $lVr->setValid(false);
         $lVr->getLog()->setValid(false);
         $lErreur = new VRerreur();
         $lErreur->setCode(MessagesErreurs::ERR_603_CODE);
         $lErreur->setMessage(MessagesErreurs::ERR_603_MSG);
         $lVr->getLog()->addErreur($lErreur);
         die($lVr->exportToJson());
     } else {
         //or die(MessagesErreurs::ERR_BDD_EXECUTION . " : <br>$pRequete<br>".mysql_error());
         $lId = mysql_insert_id();
         DbUtils::fermerConnexion($lDb);
         return $lId;
     }
 }
 /**
  * @name ouvrirCaisse()
  * @return VR
  * @desc Ouvre les caisses
  */
 public function ouvrirCaisse()
 {
     $lIde = IdentificationManager::selectByTypeSuspendu(3);
     if (is_array($lIde)) {
         foreach ($lIde as $lCaisse) {
             $lCaisse->setAutorise(1);
             IdentificationManager::update($lCaisse);
         }
         $lVr = new TemplateVR();
         $lVr->setValid(true);
         return $lVr;
     }
     $lVr = new TemplateVR();
     $lVr->setValid(false);
     $lVr->getLog()->setValid(false);
     $lErreur = new VRerreur();
     $lErreur->setCode(MessagesErreurs::ERR_115_CODE);
     $lErreur->setMessage(MessagesErreurs::ERR_115_MSG);
     $lVr->getLog()->addErreur($lErreur);
     return $lVr;
 }
 /**
  * @name ProduitDetailAchatVR()
  * @return bool
  * @desc Constructeur
  */
 function ProduitDetailAchatVR()
 {
     parent::__construct();
     $this->mIdNomProduit = new VRelement();
     $this->mIdStock = new VRelement();
     $this->mIdDetailOperation = new VRelement();
     $this->mIdStockSolidaire = new VRelement();
     $this->mIdDetailOperationSolidaire = new VRelement();
     $this->mIdDetailCommande = new VRelement();
     $this->mIdModeleLot = new VRelement();
     $this->mIdDetailCommandeSolidaire = new VRelement();
     $this->mIdModeleLotSolidaire = new VRelement();
     $this->mQuantite = new VRelement();
     $this->mUnite = new VRelement();
     $this->mQuantiteSolidaire = new VRelement();
     $this->mUniteSolidaire = new VRelement();
     $this->mMontant = new VRelement();
     $this->mMontantSolidaire = new VRelement();
 }
예제 #18
0
 /**
  * @name insert($pAdherent)
  * @param AdherentVO
  * @return AdherentVO
  * @desc Ajoute un adherent
  */
 private function insert($pAdherent)
 {
     // Initialisation du Logger
     $lLogger =& Log::singleton('file', CHEMIN_FICHIER_LOGS);
     $lLogger->setMask(Log::MAX(LOG_LEVEL));
     // Si pas de liaison création d'un nouveau compte
     $lNvCompte = false;
     if ($pAdherent->getIdCompte() == 0) {
         // Création d'un nouveau compte
         $lCompte = new CompteVO();
         $lCompteService = new CompteService();
         $lCompte = $lCompteService->set($lCompte);
         $pAdherent->setIdCompte($lCompte->getId());
         // Laision avec l'adhérent
         $lNvCompte = true;
     }
     // Insertion de la première mise à jour
     $pAdherent->setDateMaj(StringUtils::dateTimeAujourdhuiDb());
     // L'adherent n'est pas supprimé
     $pAdherent->setEtat(1);
     // Mise en forme des données
     $pAdherent->setNom(StringUtils::formaterNom(trim($pAdherent->getNom())));
     $pAdherent->setPrenom(StringUtils::formaterPrenom(trim($pAdherent->getPrenom())));
     $pAdherent->setCourrielPrincipal(trim($pAdherent->getCourrielPrincipal()));
     $pAdherent->setCourrielSecondaire(trim($pAdherent->getCourrielSecondaire()));
     $pAdherent->setTelephonePrincipal(trim($pAdherent->getTelephonePrincipal()));
     $pAdherent->setTelephoneSecondaire(trim($pAdherent->getTelephoneSecondaire()));
     $pAdherent->setAdresse(trim($pAdherent->getAdresse()));
     $pAdherent->setCodePostal(trim($pAdherent->getCodePostal()));
     $pAdherent->setVille(StringUtils::formaterVille(trim($pAdherent->getVille())));
     $pAdherent->setCommentaire(trim($pAdherent->getCommentaire()));
     // Protection des dates vides
     if ($pAdherent->getDateNaissance() == '') {
         $pAdherent->setDateNaissance(StringUtils::FORMAT_DATE_NULLE);
     }
     if ($pAdherent->getDateAdhesion() == '') {
         $pAdherent->setDateAdhesion(StringUtils::FORMAT_DATE_NULLE);
     }
     if ($pAdherent->getDateMaj() == '') {
         $pAdherent->setDateMaj(StringUtils::FORMAT_DATE_NULLE);
     }
     // Enregistre l'adherent dans la BDD
     $lIdAdherent = AdherentManager::insert($pAdherent);
     if ($lNvCompte) {
         // Création d'un compte
         $lCompte = $lCompteService->get($lCompte->getId());
         $lCompte->setIdAdherentPrincipal($lIdAdherent);
         // Positionnement de l'adhérent en adhérent principal du compte
         $lCompteService->set($lCompte);
     } else {
         // Liaison avec un autre compte
         // Les adhérents du compte
         $lListeAdherent = $this->selectActifByIdCompte($pAdherent->getIdCompte());
         // Le premier adhérent
         $lAdherent = $lListeAdherent[0];
         $lAdhesionService = new AdhesionService();
         // Les adhésions sur le premier adhérent
         $lAdhesions = $lAdhesionService->getAdhesionSurAdherent($lAdherent->getId());
         // Positionne les mêmes adhésions
         foreach ($lAdhesions as $lAdhesion) {
             if (!is_null($lAdhesion->getAdadId())) {
                 $lAdhesionAdherentDetail = $lAdhesionService->getAdhesionAdherent($lAdhesion->getAdadId());
                 $lAdhesionAdherent = $lAdhesionAdherentDetail->getAdhesionAdherent();
                 $lTypeAdhesion = $lAdhesionService->getTypeAdhesion($lAdhesionAdherent->getIdTypeAdhesion());
                 if ($lTypeAdhesion->getIdPerimetre() == 2) {
                     // Si type d'adhésion sur périmètre compte
                     $lAdhesionAdherent->setId('');
                     $lAdhesionAdherent->setIdAdherent($lIdAdherent);
                     $lAdhesionService->setAdhesionAdherent($lAdhesionAdherent);
                 }
             }
         }
     }
     $pAdherent->setId($lIdAdherent);
     $pAdherent->setNumero('Z' . $lIdAdherent);
     // Mise à jour du numéro dans l'objet
     AdherentManager::update($pAdherent);
     // Mise à jour de la base
     // Ajout des autorisations de l'adherent
     $lModuleService = new ModuleService();
     $lModulesDefaut = $lModuleService->selectAllDefautVisible();
     $lAutorisations = array();
     foreach ($lModulesDefaut as $lModule) {
         $lAutorisation = new AutorisationVO();
         $lAutorisation->setIdAdherent($lIdAdherent);
         $lAutorisation->setIdModule($lModule->getId());
         //AutorisationManager::insert($lAutorisation);
         array_push($lAutorisations, $lAutorisation);
     }
     if (!empty($lAutorisations)) {
         AutorisationManager::insertByArray($lAutorisations);
     }
     //$lAdherent = AdherentManager::select($lIdAdherent);
     // Insertion des informations de connexion
     $lMdp = MotDePasseUtils::generer();
     $lIdentification = new IdentificationVO();
     $lIdentification->setIdLogin($lIdAdherent);
     $lIdentification->setLogin($pAdherent->getNumero());
     $lIdentification->setPass(md5($lMdp));
     $lIdentification->setType(1);
     $lIdentification->setAutorise(1);
     IdentificationManager::insert($lIdentification);
     // Ajout à la mailing liste
     $lMailingListeService = new MailingListeService();
     if ($pAdherent->getCourrielPrincipal() != "") {
         $lMailingListeService->insert($pAdherent->getCourrielPrincipal());
     }
     if ($pAdherent->getCourrielSecondaire() != "") {
         $lMailingListeService->insert($pAdherent->getCourrielSecondaire());
     }
     // Envoi du mail de confirmation
     if ($pAdherent->getCourrielPrincipal() != "") {
         $lTo = $pAdherent->getCourrielPrincipal();
     } else {
         if ($pAdherent->getCourrielSecondaire() != "") {
             $lTo = $pAdherent->getCourrielSecondaire();
         } else {
             // Pas de mail sur le compte : Envoi au gestionnaire
             $lTo = MAIL_SUPPORT;
         }
     }
     $lFrom = MAIL_SUPPORT;
     $jour = date("d-m-Y");
     $heure = date("H:i");
     $lSujet = "Votre Compte zeybux";
     $lContenu = file_get_contents(CHEMIN_TEMPLATE . MOD_GESTION_ADHERENTS . "/" . "MailAjoutAdherent.html");
     $lContenu = str_replace(array("{LOGIN}", "{MOT_PASSE}", "{PROP_NOM}", "{ZEYBUX_ADRESSE_SITE}"), array($pAdherent->getNumero(), $lMdp, PROP_NOM, ZEYBUX_ADRESSE_SITE), $lContenu);
     $lHeaders = file_get_contents(CHEMIN_TEMPLATE . COMMUN_TEMPLATE . "/" . "EnteteMail.html");
     $lHeaders = str_replace("{FROM}", $lFrom, $lHeaders);
     $VerifEnvoiMail = TRUE;
     $VerifEnvoiMail = @mail($lTo, $lSujet, $lContenu, $lHeaders);
     if ($VerifEnvoiMail === FALSE) {
         $lVr = new TemplateVR();
         $lVr->setValid(false);
         $lVr->getLog()->setValid(false);
         $lErreur = new VRerreur();
         $lErreur->setCode(MessagesErreurs::ERR_118_CODE);
         $lErreur->setMessage(MessagesErreurs::ERR_118_MSG);
         $lVr->getLog()->addErreur($lErreur);
         $lLogger->log("Erreur d'envoi du mail de création de l'adhérent " . $pAdherent->getNumero() . "par : " . $_SESSION[ID_CONNEXION] . ".", PEAR_LOG_INFO);
         // Maj des logs
         $lLogger->log($lVr->export(), PEAR_LOG_INFO);
         // Maj des logs
     } else {
         $lLogger->log("Envoi du mail de création de l'adhérent " . $pAdherent->getNumero() . "par : " . $_SESSION[ID_CONNEXION] . ".", PEAR_LOG_INFO);
         // Maj des logs
     }
     return $pAdherent;
 }
예제 #19
0
 /**
  * @name validDelete($pData)
  * @return NomProduitVR
  * @desc Test la validite de l'élément
  */
 public static function validDelete($pData)
 {
     $lVr = new NomProduitVR();
     //Tests inputs
     if (!isset($pData['id'])) {
         $lVr->setValid(false);
         $lVr->getId()->setValid(false);
         $lErreur = new VRerreur();
         $lErreur->setCode(MessagesErreurs::ERR_201_CODE);
         $lErreur->setMessage(MessagesErreurs::ERR_201_MSG);
         $lVr->getId()->addErreur($lErreur);
     }
     if ($lVr->getValid()) {
         if (!is_int((int) $pData['id'])) {
             $lVr->setValid(false);
             $lVr->getId()->setValid(false);
             $lErreur = new VRerreur();
             $lErreur->setCode(MessagesErreurs::ERR_104_CODE);
             $lErreur->setMessage(MessagesErreurs::ERR_104_MSG);
             $lVr->getId()->addErreur($lErreur);
         }
         $lNomProduit = NomProduitManager::select($pData['id']);
         if ($lNomProduit->getId() != $pData['id']) {
             $lVr = new TemplateVR();
             $lVr->getId(false);
             $lVr->getLog()->setValid(false);
             $lErreur = new VRerreur();
             $lErreur->setCode(MessagesErreurs::ERR_216_CODE);
             $lErreur->setMessage(MessagesErreurs::ERR_216_MSG);
             $lVr->getId()->addErreur($lErreur);
         }
     }
     return $lVr;
 }
 /**
  * @name identifier($pParam)
  * @return VR
  * @desc Vérifie le login et mot de passe dans la BDD et renvoie un IdentificationPO avec l'authorisation et place les autorisations dans les variables de session
  */
 public function reconnecter($pParam)
 {
     // En cas de nouvelle connexion sans déconnexion on supprime les droits
     session_unset();
     $lValid = new IdentificationValid();
     $lVr = $lValid->validReconnection($pParam);
     if ($lVr->getValid()) {
         $lLogin = $pParam["login"];
         // Version cryptée du mot de pass pour le comparer avec celui de la BDD
         $lPass = md5($pParam["pass"]);
         // Recherche de l'accès précédent
         $lAcces = AccesManager::select($pParam["idConnexion"]);
         // Sélection des adhérents ayant le login de l'identification
         $lListeIdentification = IdentificationManager::selectByLogin($lLogin);
         // Recherche de correspondance de login et mot de passe dans la base
         $lAutorisation = false;
         $lModules = array();
         if (is_array($lListeIdentification)) {
             foreach ($lListeIdentification as $lIdentification) {
                 if ($lAcces->getIdLogin() == $lIdentification->getIdLogin() && $lAcces->getIp() == $_SERVER["REMOTE_ADDR"] && $lAcces->getTypeLogin() == $lIdentification->getType() && $lIdentification->getLogin() === $lLogin && $lIdentification->getPass() === $lPass && $lIdentification->getAutorise() == 1) {
                     switch ($lIdentification->getType()) {
                         case 1:
                             // Adhérent
                             $lModules = $this->identifierAdherent($lIdentification);
                             break;
                         case 2:
                             // SuperZeybu
                             $lModules = $this->identifierSuperZeybu($lIdentification);
                             break;
                         case 3:
                             // Caisse
                             $lModules = $this->identifierCaisse($lIdentification);
                             break;
                         case 4:
                             // Compte Solidaire
                             $lModules = $this->identifierCompteSolidaire($lIdentification);
                             break;
                     }
                     $_SESSION[TYPE_ID] = $lIdentification->getType();
                     $lAutorisation = true;
                     $lAcces->setAutorise(1);
                     AccesManager::update($lAcces);
                     $_SESSION[ID_CONNEXION] = $lAcces->getId();
                 }
             }
         }
         if ($lAutorisation) {
             $lResponse = new IdentificationResponse();
             return $lResponse;
         } else {
             $lVr = new TemplateVR();
             $lVr->setValid(false);
             $lVr->getLog()->setValid(false);
             $lErreur = new VRerreur();
             $lErreur->setCode(MessagesErreurs::ERR_222_CODE);
             $lErreur->setMessage(MessagesErreurs::ERR_222_MSG);
             $lVr->getLog()->addErreur($lErreur);
         }
     }
     return $lVr;
 }
                 $lErreur->setCode(MessagesErreurs::ERR_338_CODE);
                 $lErreur->setMessage(MessagesErreurs::ERR_338_MSG);
                 $lVr->getLog()->addErreur($lErreur);
                 $_SESSION['msg'] = $lVr->exportToArray();
                 header('location:./index.php?m=MarcheHTML&v=AfficherReservation&fonction=afficher&id_marche=' . $_GET["id_marche"]);
             } else {
                 $_SESSION['msg'] = $lPage->exportToArray();
                 header('location:./index.php?m=MarcheHTML&v=ReservationCommande&fonction=detailMarche&id_marche=' . $_GET["id_marche"]);
             }
         }
     } else {
         if (isset($_GET["id_marche"])) {
             // Il faut au moins un produit
             include_once CHEMIN_CLASSES_VR . "VRerreur.php";
             include_once CHEMIN_CLASSES_VR . "TemplateVR.php";
             $lVr = new TemplateVR();
             $lVr->setValid(false);
             $lVr->getLog()->setValid(false);
             $lErreur = new VRerreur();
             $lErreur->setCode(MessagesErreurs::ERR_207_CODE);
             $lErreur->setMessage(MessagesErreurs::ERR_207_MSG);
             $lVr->getLog()->addErreur($lErreur);
             $_SESSION['msg'] = $lVr->exportToArray();
             header('location:./index.php?m=MarcheHTML&v=ReservationCommande&fonction=detailMarche&id_marche=' . $_GET["id_marche"]);
         }
     }
     break;
 default:
     $lLogger->log("Demande d'accés à ReservationCommande sans identifiant commande par : " . $_SESSION[ID_CONNEXION], PEAR_LOG_INFO);
     // Maj des logs
     header('location:./index.php');
예제 #22
0
 /**
  * @name AdherentVR()
  * @return bool
  * @desc Constructeur
  */
 function AdherentVR()
 {
     parent::__construct();
     $this->mValid = true;
     $this->mLog = new VRelement();
     $this->mId = new VRelement();
     $this->mIdAdherentPrincipal = new VRelement();
     $this->mIdAncienAdherentPrincipal = new VRelement();
     $this->mNumero = new VRelement();
     $this->mIdCompte = new VRelement();
     $this->mCompte = new VRelement();
     $this->mNom = new VRelement();
     $this->mPrenom = new VRelement();
     $this->mCourrielPrincipal = new VRelement();
     $this->mCourrielSecondaire = new VRelement();
     $this->mTelephonePrincipal = new VRelement();
     $this->mTelephoneSecondaire = new VRelement();
     $this->mAdresse = new VRelement();
     $this->mCodePostal = new VRelement();
     $this->mVille = new VRelement();
     $this->mDateNaissance = new VRelement();
     $this->mDateAdhesion = new VRelement();
     $this->mCommentaire = new VRelement();
     $this->mModules = array();
 }
 /**
  * @name ChampComplementaireVR()
  * @return bool
  * @desc Constructeur
  */
 function ChampComplementaireVR()
 {
     parent::__construct();
     $this->mId = new VRelement();
     $this->mValeur = new VRelement();
 }
 /**
  * @name OperationRemiseChequeVR()
  * @return bool
  * @desc Constructeur
  */
 function OperationRemiseChequeVR()
 {
     parent::__construct();
     $this->mIdRemiseCheque = new VRelement();
     $this->mIdOperation = new VRelement();
 }
 /**
  * @name ajouterMarche($lParam)
  * @return AjoutCommandeResponse
  * @desc Ajoute la commande
  */
 public function ajouterMarche($lParam)
 {
     $lCommande = $lParam;
     $lVr = CommandeCompleteValid::validAjout($lCommande);
     if ($lVr->getValid()) {
         $lCommandeVO = CommandeCompleteToVO::convertFromArray($lCommande);
         $lMarcheService = new MarcheService();
         $lId = $lMarcheService->insert($lCommandeVO);
         if ($lId != null) {
             $lResponse = new AjoutCommandeResponse();
             $lResponse->setValid(true);
             $lResponse->setId($lId);
             $lResponse->setNumero($lId);
             return $lResponse;
         } else {
             $lVr = new TemplateVR();
             $lVr->setValid(false);
             $lVr->getLog()->setValid(false);
             $lErreur = new VRerreur();
             $lErreur->setCode(MessagesErreurs::ERR_113_CODE);
             $lErreur->setMessage(MessagesErreurs::ERR_113_MSG);
             $lVr->getLog()->addErreur($lErreur);
             return $lVr;
         }
     }
     return $lVr;
 }
 /**
  * @name validerPaiementVR()
  * @return bool
  * @desc Constructeur
  */
 function validerPaiementVR()
 {
     parent::__construct();
     $this->mId = new VRelement();
 }
 /**
  * @name ListeProduitFermeVR()
  * @return bool
  * @desc Constructeur
  */
 function ListeProduitFermeVR()
 {
     parent::__construct();
     $this->mId = new VRelement();
     $this->mIdMarche = new VRelement();
 }