Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1452 Rev 1463
Line 1002... Line 1002...
1002
	
1002
	
Line 1003... Line 1003...
1003
	private void mettreAJourPersonne(Personne personne)	{
1003
	private void mettreAJourPersonne(Personne personne)	{
1004
		
1004
		
-
 
1005
		//Mise à jour de la personne
-
 
1006
		ChampComboBoxRechercheTempsReelPaginable cbProjets = hmIdentite.getComboBoxRechercheTempsReelPaginable("cbProjets");
-
 
1007
		if (cbProjets.getCombo().getStore() != null
-
 
1008
				&& personne != null
1005
		//Mise à jour de la personne
1009
				&& personne.getIdProjet() != null
-
 
1010
				&& !UtilString.isEmpty(personne.getIdProjet())) {
-
 
1011
			cbProjets.chargerValeurInitiale(personne.getIdProjet(), "cpr_id_projet");
-
 
1012
		} else {
Line 1006... Line 1013...
1006
		ChampComboBoxRechercheTempsReelPaginable cbProjets = hmIdentite.getComboBoxRechercheTempsReelPaginable("cbProjets");
1013
			cbProjets.getCombo().setValue(null);
1007
		cbProjets.getCombo().setValue(cbProjets.getStore().findModel("cpr_id_projet", personne.get("ce_projet")));
1014
		}
1008
		
1015