Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1032 Rev 1077
Line 318... Line 318...
318
		}
318
		}
319
	}
319
	}
Line 320... Line 320...
320
	
320
	
321
	public ArrayList<String> verifier() {
321
	public ArrayList<String> verifier() {
322
		ArrayList<String> messages = new ArrayList<String>();
322
		ArrayList<String> messages = new ArrayList<String>();
323
		if (projetsCombo.getValue() == null 
-
 
324
				|| projetsCombo.getValue().equals("") 
-
 
325
				|| (mode.equals(Formulaire.MODE_MODIFIER) && collection != null && collection.getIdProjet().equals(""))) {
323
		if (projetsCombo.getValue() == null || !projetsCombo.isValid()) {
326
			messages.add("Veuillez sélectionner un projet pour la collection.");
324
			messages.add(i18nM.selectionObligatoire(i18nC.articleUn()+" "+i18nC.projetSingulier(), i18nC.articleLa()+" "+i18nC.collectionSingulier()));
327
		}
325
		}
328
		return messages;
326
		return messages;
Line 329... Line 327...
329
	}
327
	}