Subversion Repositories eFlore/Applications.del

Rev

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

Rev 1621 Rev 1699
Line 262... Line 262...
262
	
262
	
263
	public String getReferentiel() {
263
	public String getReferentiel() {
264
		String refFmt = "";
264
		String refFmt = "";
265
		// on ne renvoie que le code du référentiel, sans version, et seulement également si l'on possède
265
		// on ne renvoie que le code du référentiel, sans version, et seulement également si l'on possède
266
		// un numéro nomenclatural associé (ce qui nous assure une certaine cohérence)
266
		// un numéro nomenclatural associé (ce qui nous assure une certaine cohérence)
-
 
267
		if(referentiel.length() >= 3  && numNomenclatural != null && !numNomenclatural.equals("0")) {
-
 
268
			int positionDeuxPoints = referentiel.indexOf(':');
-
 
269
			if (positionDeuxPoints == -1) {
-
 
270
				refFmt = referentiel;
267
		if(referentiel.length() >= 5  && numNomenclatural != null && !numNomenclatural.equals("0")) {
271
			} else {
-
 
272
				refFmt = referentiel.substring(0, positionDeuxPoints);
268
			refFmt = referentiel.substring(0, 5);
273
			}
269
		}
274
		}
270
		return refFmt;
275
		return refFmt;
Line 271... Line 276...
271
	}
276
	}