Subversion Repositories Applications.gtt

Rev

Rev 10 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 10 Rev 15
Line 50... Line 50...
50
	const GAM_ID_MAX = 'ABSENCEMOTIF_ID_MAX';
50
	const GAM_ID_MAX = 'ABSENCEMOTIF_ID_MAX';
Line 51... Line 51...
51
	
51
	
52
	/*** Attributs : */
52
	/*** Attributs : */
53
	private $id_absence_motif;
53
	private $id_absence_motif;
54
	private $libelle;
-
 
55
	private $mark_rtt;
-
 
Line 56... Line 54...
56
	private $nbre_heure;
54
	private $libelle;
Line 57... Line 55...
57
	
55
	
58
	/*** Aggregations : */
56
	/*** Aggregations : */
59
 
57
 
60
	/*** Constructeur : */
58
	/*** Constructeur : */
61
	public function __construct($cmd = null, $parametres = null)
59
	public function __construct($cmd = null, $parametres = null)
62
	{
60
	{
63
		$this->dao_table_nom = 'gestion_absence_motif';
61
		$this->dao_table_nom = 'gestion_absence_motif';
64
		$this->dao_correspondance = array(
-
 
65
			'gam_id_absence_motif'	=> 'id_absence_motif',
-
 
Line 66... Line 62...
66
			'gam_libelle'	=> 'libelle',
62
		$this->dao_correspondance = array(
67
			'gam_mark_rtt'	=> 'mark_rtt',
63
			'gam_id_absence_motif'	=> 'id_absence_motif',
68
			'gam_nbre_heure'	=> 'nbre_heure');
64
			'gam_libelle'	=> 'libelle');
69
		
65
		
Line 92... Line 88...
92
	public function setLibelle( $l )
88
	public function setLibelle( $l )
93
	{
89
	{
94
		$this->libelle = $l;
90
		$this->libelle = $l;
95
	}
91
	}
Line 96... Line -...
96
	
-
 
97
	// Mark Rtt
-
 
98
	public function getMarkRtt()
-
 
99
	{
-
 
100
		return $this->mark_rtt;
-
 
101
	}
-
 
102
	public function setMarkRtt( $mr )
-
 
103
	{
-
 
104
		$this->mark_rtt = $mr;
-
 
105
	}
-
 
106
	
-
 
107
	// Nbre Heure
-
 
108
	public function getNbreHeure()
-
 
109
	{
-
 
110
		return $this->nbre_heure;
-
 
111
	}
-
 
112
	public function setNbreHeure( $nh )
-
 
113
	{
-
 
114
		$this->nbre_heure = $nh;
-
 
115
	}
-
 
116
	
92
	
Line 117... Line 93...
117
	/*** Méthodes : */
93
	/*** Méthodes : */
118
 
94
 
119
	/**
95
	/**