Subversion Repositories Applications.annuaire

Rev

Rev 328 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<?php 

class CotisationModele extends AnnuaireModele {
        
        public function __construct() {
                parent::__construct();
        }
        
        public function obtenirInformationsCotisationsPourInscrit($id_inscrit) {
                
                $requete_informations_cotisation = 'SELECT * FROM '.Config::get('cotisation_bdd').'.'.Config::get('cotisation_table').' '.
                                                                'WHERE IC_ANNU_ID = '.$this->proteger($id_inscrit).' '.
                                                                'ORDER BY IC_DATE ';

        $infos_cotisation_inscrit = $this->requeteTous($requete_informations_cotisation);
        
        return $infos_cotisation_inscrit;
        }
        
        public function obtenirInformationsPourIdCotisation($id_cotisation, $id_inscrit) {
                
                $requete_informations_cotisation = 'SELECT * FROM '.Config::get('cotisation_bdd').'.'.Config::get('cotisation_table').' '.
                                                                'WHERE '.
                                                                'IC_ID = '.$this->proteger($id_cotisation).' '.
                                                                        'AND IC_ANNU_ID = '.$this->proteger($id_inscrit);
                
        $infos_cotisation = $this->requeteUn($requete_informations_cotisation);
        
        return $infos_cotisation;
        }
        
        public function ajouterCotisation($params) {
        
                $requete_creation_cotisation = 'INSERT INTO '.Config::get('cotisation_bdd').'.annuaire_COTISATION '.
                                                '(IC_MC_ID, IC_ANNU_ID, IC_DATE, IC_MONTANT) '.
                                                'VALUES ('.
                                                        $this->proteger($params['mode_cotisation']).','.        
                                                                $this->proteger($params['id_cotisant']).','.
                                                                $this->proteger($params['date_cotisation']).','.
                                                                $this->proteger($params['montant_cotisation']).' '.
                                                ')';            
                                                                                                
                return $this->requete($requete_creation_cotisation);
        }
        
        public function MettreAJourCotisation($id_cotisation, $params) {
                
                $requete_modification_cotisation = 'UPDATE '.Config::get('cotisation_bdd').'.annuaire_COTISATION '.
                        'SET '.
                        'IC_MC_ID ='.$this->proteger($params['mode_cotisation']).','.
                        'IC_DATE ='.$this->proteger($params['date_cotisation']).','.
                        'IC_MONTANT ='.$this->proteger($params['montant_cotisation']).' '.
                        'WHERE IC_ID = '.$this->proteger($id_cotisation);
                                                        
                return $this->requete($requete_modification_cotisation);
        }
        
        public function supprimerCotisation($id_cotisation) {
                
                $requete_suppression_cotisation = 'DELETE FROM '.Config::get('cotisation_bdd').'.annuaire_COTISATION '.
        'WHERE IC_ID = '.$this->proteger($id_cotisation);
        
        return $this->requete($requete_suppression_cotisation);
        }
        
    public function obtenirListeModesCotisation() {
        
            $modes_cotisation = array(0 => 'Chèque',
                                                                1 => 'Espèce',
                                                                2 => 'Virement',
                                                                3 => 'Paypal',
                                                                4 => 'Prélèvement'
                                                );
                        
        //FIXME : en attendant de savoir si on déplace le contenu de la table mode_cotisation dans les triples                                 
        return $modes_cotisation;
    }
        
    public function obtenirModeCotisationParId($id_mode) {
        
        $modes_cotisation = array(0 => 'Chèque',
                                                                1 => 'Espèce',
                                                                2 => 'Virement',
                                                                3 => 'Paypal',
                                                                4 => 'Prélèvement'
                                                );

                                                
        //FIXME : en attendant de savoir si on déplace le contenu de la table mode_cotisation dans les triples                                 
        return $modes_cotisation[$id_mode];
        
        $requete_infos_mode = 'SELECT MC_LABEL as mode_label FROM MODE_COTISATION WHERE MC_ID = '.$this->proteger($id_mode);
        
        $infos_mode = $this->requete($requete_infos_mode);
        
        if(!empty($infos_mode)) {
                $infos_mode = $infos_mode[0];
        }
        
        return $infos_mode['mode_label'];
    }
    
    public function calculerNouvelOrdreRecuEtIncrementer() {

        $requete_nouvel_ordre = 'select COMPTEUR from '.Config::get('cotisation_bdd').'.COMPTEUR_COTISATION';
                        
                $resultat_requete_nouvel_ordre = $this->requeteUn($requete_nouvel_ordre) ;
                
                $num_recu = $resultat_requete_nouvel_ordre['COMPTEUR'];
                
                if(!$num_recu) {
                        return 0;
                }
                
                $requete_incrementation_ordre = 'UPDATE '.Config::get('cotisation_bdd').'.COMPTEUR_COTISATION '.
                                                                                'SET COMPTEUR = COMPTEUR + 1';
                $resultat_requete_incrementation_ordre = $this->requete($requete_incrementation_ordre) ;
                
                return $num_recu;
    }
    
        public function mettreAJourNumeroRecu($id_cotisation, $id_recu) {
        
        $requete_maj_num_recu_cotisation = 'UPDATE '.Config::get('cotisation_bdd').'.annuaire_COTISATION '.
                        'SET '.
                        'IC_RECU = '.$this->proteger($id_recu).' '.
                        'WHERE IC_ID = '.$this->proteger($id_cotisation);
        
        $resultat_maj_envoi_num_cotisation = $this->requete($requete_maj_num_recu_cotisation) ;
        
        return $resultat_maj_envoi_num_cotisation;
    }
    
    public function mettreAJourDateEnvoiRecu($id_cotisation) {
        
        $requete_maj_envoi_recu_cotisation = 'UPDATE '.Config::get('cotisation_bdd').'.annuaire_COTISATION '.
                        'SET '.
                        'IC_DATE_ENVOIE_RECU = NOW() '.
                        'WHERE IC_ID = '.$this->proteger($id_cotisation);
        
        $resultat_maj_envoi_recu_cotisation = $this->requete($requete_maj_envoi_recu_cotisation) ;
        
        return $resultat_maj_envoi_recu_cotisation;
    }
    
        protected function renvoyerDernierIdInsere() {
                //TODO: cela marche t'il partout ? 
                // à faire: tester le type de driver pdo et faire une fonction portable 
                return $this->connexion->lastInsertId();
        }
}
?>