Subversion Repositories Applications.gtt

Compare Revisions

Ignore whitespace Rev 81 → Rev 82

/trunk/bibliotheque/metier/AbsenceMotif.class.php
53,8 → 53,11
 
/*** Attributs : */
private $id_absence_motif;
private $libelle;
 
private $libelle;
private $cp_diminuer;
private $hs_augmenter;
private $hs_diminuer;
/*** Aggregations : */
 
/*** Constructeur : */
63,7 → 66,10
$this->dao_table_nom = 'gestion_absence_motif';
$this->dao_correspondance = array(
'gam_id_absence_motif' => 'id_absence_motif',
'gam_libelle' => 'libelle');
'gam_libelle' => 'libelle',
'gam_cp_diminuer' => 'cp_diminuer',
'gam_hs_augmenter' => 'hs_augmenter',
'gam_hs_diminuer' => 'hs_diminuer');
 
// Si l'on veut remplir l'objet à la création on lance la requete correspondante
if (!is_null($cmd)) {
91,7 → 97,37
{
$this->libelle = $l;
}
 
 
// CP Diminuer
public function getCpDiminuer()
{
return $this->cp_diminuer;
}
public function setCpDiminuer( $cd )
{
$this->cp_diminuer = $cd;
}
 
// HS Augmenter
public function getHsAugmenter()
{
return $this->hs_augmenter;
}
public function setHsAugmenter( $ha )
{
$this->hs_augmenter = $ha;
}
 
// HS Diminuer
public function getHsDiminuer()
{
return $this->hs_diminuer;
}
public function setHsDiminuer( $hd )
{
$this->hs_diminuer = $hd;
}
 
/*** Méthodes : */
 
/**
/trunk/bibliotheque/metier/Projet.class.php
55,10 → 55,12
 
/*** Attributs : */
private $id_projet;
private $ce_projet_parent;
private $ce_categorie;
private $nom_projet;
private $description;
private $date_debut;
private $date_debut;
private $date_fin;
private $duree_prevue;
private $avancement;
 
70,10 → 72,12
$this->dao_table_nom = 'gestion_projet';
$this->dao_correspondance = array(
'gp_id_projet' => 'id_projet',
'gp_ce_projet_parent' => 'ce_projet_parent',
'gp_ce_categorie' => 'ce_categorie',
'gp_nom_projet' => 'nom_projet',
'gp_nom' => 'nom',
'gp_description' => 'description',
'gp_date_debut' => 'date_debut',
'gp_date_fin' => 'date_fin',
'gp_duree_prevue' => 'duree_prevue',
'gp_avancement' => 'avancement');
 
93,6 → 97,17
{
$this->id_projet = $ip;
}
 
// Ce Projet Parent
public function getCeProjetParent()
{
return $this->ce_projet_parent;
}
public function setCeProjetParent( $cpp )
{
$this->ce_projet_parent = $cpp;
}
 
 
// Ce Categorie
public function getCeCategorie()
104,14 → 119,14
$this->ce_categorie = $cc;
}
 
// Nom Projet
public function getNomProjet()
// Nom
public function getNom()
{
return $this->nom_projet;
return $this->nom;
}
public function setNomProjet( $np )
public function setNom( $n )
{
$this->nom_projet = $np;
$this->nom = $n;
}
 
// Description
/trunk/bibliotheque/metier/UtilisateurStatut.class.php
53,7 → 53,8
 
/*** Attributs : */
private $id_utilisateur_statut;
private $libelle;
private $libelle;
private $mark_recapitulatif;
 
/*** Aggregations : */
 
63,7 → 64,8
$this->dao_table_nom = 'gestion_utilisateur_statut';
$this->dao_correspondance = array(
'gus_id_utilisateur_statut' => 'id_utilisateur_statut',
'gus_libelle' => 'libelle');
'gus_libelle' => 'libelle',
'gus_mark_recapitulatif' => 'mark_recapitulatif');
 
// Si l'on veut remplir l'objet à la création on lance la requete correspondante
if (!is_null($cmd)) {
91,6 → 93,16
{
$this->libelle = $l;
}
 
// Mark Recapitulatif
public function getMarkRecapitulatif()
{
return $this->mark_recapitulatif;
}
public function setMarkRecapitulatif( $mr )
{
$this->mark_recapitulatif = $mr;
}
 
/*** Méthodes : */