Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1513 Rev 1690
Line 190... Line 190...
190
		String latitudeLongitude = (!longitude.equals("") && !latitude.equals("")) ? latitude+" / "+longitude : "";
190
		String latitudeLongitude = (!longitude.equals("") && !latitude.equals("")) ? latitude+" / "+longitude : "";
Line 191... Line 191...
191
		
191
		
192
		identificationParams.set("acronyme", acronyme);
192
		identificationParams.set("acronyme", acronyme);
193
		identificationParams.set("statut", typePrive+typePublic);
193
		identificationParams.set("statut", typePrive+typePublic);
194
		identificationParams.set("date_fondation", structure.getAnneOuDateFondationFormatLong());
194
		identificationParams.set("date_fondation", structure.getAnneOuDateFondationFormatLong());
Line 195... Line 195...
195
		identificationParams.set("nbre_personnel", structure.getNbrePersonne());
195
		identificationParams.set("nbre_personnel", structure.getNbrePersonne() != null ? structure.getNbrePersonne() : "");
196
		
196
		
197
		identificationParams.set("description", structure.getDescription());
197
		identificationParams.set("description", structure.getDescription());
Line 665... Line 665...
665
		if (projetsChargementOk && structureChargementOk && personnelChargementOk && ontologieChargementOk) {
665
		if (projetsChargementOk && structureChargementOk && personnelChargementOk && ontologieChargementOk) {
666
			ok = true;
666
			ok = true;
667
		}
667
		}
668
		return ok;
668
		return ok;
669
	}
669
	}
670
}
-
 
671
670
}
-
 
671