Subversion Repositories eFlore/Applications.coel

Rev

Rev 981 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 981 Rev 1080
Line 267... Line 267...
267
			Information info = (Information) nouvellesDonnees;
267
			Information info = (Information) nouvellesDonnees;
268
			rafraichirInformation(info);
268
			rafraichirInformation(info);
269
		} else if (nouvellesDonnees instanceof ValeurListe) {
269
		} else if (nouvellesDonnees instanceof ValeurListe) {
270
			ValeurListe valeursListe = (ValeurListe) nouvellesDonnees;
270
			ValeurListe valeursListe = (ValeurListe) nouvellesDonnees;
271
			rafraichirValeurListe(valeursListe);
271
			rafraichirValeurListe(valeursListe);
272
			Debug.log("une liste de valeurs est arrivée "+valeursListe.getId());
-
 
273
		}
272
		}
Line 274... Line 273...
274
		
273
		
275
		if (etreValide()) {
274
		if (etreValide()) {
276
			initialiserValidation();
275
			initialiserValidation();
Line 292... Line 291...
292
			if (info.getDonnee(0) != null) {
291
			if (info.getDonnee(0) != null) {
293
				projet = (Projet) info.getDonnee(0);
292
				projet = (Projet) info.getDonnee(0);
294
			}
293
			}
295
			peuplerFormulaire();
294
			peuplerFormulaire();
296
			actualiserTitreFormulaire();
295
			actualiserTitreFormulaire();
297
		} else if (type.equals("modif_projet") || type.equals("ajout_projet") ) {
296
		} else if (type.equals("ajout_projet") ) {
298
			if (info.getDonnee(0) != null && info.getDonnee(0) instanceof String) {
297
			if (info.getDonnee(0) != null && info.getDonnee(0) instanceof String) {
299
				String projetId = (String) info.getDonnee(0);
298
				String projetId = (String) info.getDonnee(0);
300
				projet.setId(projetId);
299
				projet.setId(projetId);
301
				projetValideOk = true;
300
				projetValideOk = true;
302
			}
301
			}