Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1764 Rev 1784
Line 156... Line 156...
156
		return (String) renvoyerValeurCorrecte("adresse_01");
156
		return (String) renvoyerValeurCorrecte("adresse_01");
157
	}
157
	}
158
	public void setAdresse(String adr) {
158
	public void setAdresse(String adr) {
159
		this.set("adresse_01", adr);
159
		this.set("adresse_01", adr);
160
	}
160
	}
161
	
-
 
162
	public String getAdresseComplement() {
-
 
163
		return renvoyerValeurCorrecte("adresse_02");
-
 
164
	}
-
 
165
	public void setAdresseComplement(String adr) {
-
 
166
		this.set("adresse_02", adr);
-
 
167
	}
-
 
Line 168... Line 161...
168
 
161
 
169
	public String getDateFondationFormatMysql() {
162
	public String getDateFondationFormatMysql() {
170
		return renvoyerValeurCorrecte("date_fondation");
163
		return renvoyerValeurCorrecte("date_fondation");
171
	}
164
	}
Line 198... Line 191...
198
			fondationDate = DateTimeFormat.getFormat("yyyy-MM-dd").parseStrict(fondationChaine);
191
			fondationDate = DateTimeFormat.getFormat("yyyy-MM-dd").parseStrict(fondationChaine);
199
		}
192
		}
200
		return fondationDate;
193
		return fondationDate;
201
	}
194
	}
Line 202... Line -...
202
	
-
 
203
	/*
-
 
204
	public String getAnneeOuDateFondation()	{
-
 
205
		 String valeurDateFondation = get("date_fondation");
-
 
206
		 if (!UtilString.isEmpty(valeurDateFondation) && valeurDateFondation.endsWith("00-00")) {
-
 
207
			 valeurDateFondation = valeurDateFondation.substring(0, 4);
-
 
208
		 } else if (UtilString.isEmpty(valeurDateFondation) && valeurDateFondation.equals("0000-00-00")) {
-
 
209
			 valeurDateFondation  = "";
-
 
210
		 }
-
 
211
		 return valeurDateFondation;
-
 
212
	}*/
-
 
213
	
195
	
214
	public String getAnneeOuDateFondation()	{
196
	public String getAnneeOuDateFondation()	{
215
		 String valeurDateFondation = get("date_fondation");
197
		 String valeurDateFondation = get("date_fondation");
216
		 return getDateSouple(valeurDateFondation);
198
		 return getDateSouple(valeurDateFondation);
Line 281... Line 263...
281
	}
263
	}
282
	public void setVille(String ville) {
264
	public void setVille(String ville) {
283
		this.set("ville", ville);
265
		this.set("ville", ville);
284
	}
266
	}
Line 285... Line -...
285
	
-
 
286
	public String getRegion() {
-
 
287
		return getChaineDenormaliseUnique("ce_truk_region");
-
 
288
	}
-
 
289
	public void setRegion(String region) {
-
 
290
		this.set("ce_truk_region", region);
-
 
291
	}
-
 
292
	
267
	
293
	public String getPays() {
268
	public String getPays() {
294
		return getChaineDenormaliseUnique("ce_truk_pays");
269
		return getChaineDenormaliseUnique("ce_truk_pays");
295
	}
270
	}
296
	public void setPays(String pays) {
271
	public void setPays(String pays) {
Line 338... Line 313...
338
		return getInfoDenormaliseParType(renvoyerValeurCorrecte("truk_telephone"), Personne.TELEPHONE_FAX);
313
		return getInfoDenormaliseParType(renvoyerValeurCorrecte("truk_telephone"), Personne.TELEPHONE_FAX);
339
	}
314
	}
340
	public void setFax(String fax) {
315
	public void setFax(String fax) {
341
		modifierChaineDenormaliseParType("truk_telephone", Personne.TELEPHONE_FAX, fax);
316
		modifierChaineDenormaliseParType("truk_telephone", Personne.TELEPHONE_FAX, fax);
342
	}
317
	}
343
 
-
 
Line 344... Line 318...
344
	
318
	
345
	// COURRIEL
319
	// COURRIEL
346
	public String getCourriel() {
320
	public String getCourriel() {
347
		return renvoyerValeurCorrecte("courriel");
321
		return renvoyerValeurCorrecte("courriel");