264,9 → 264,14 |
String refFmt = ""; |
// on ne renvoie que le code du référentiel, sans version, et seulement également si l'on possède |
// un numéro nomenclatural associé (ce qui nous assure une certaine cohérence) |
if(referentiel.length() >= 5 && numNomenclatural != null && !numNomenclatural.equals("0")) { |
refFmt = referentiel.substring(0, 5); |
if(referentiel.length() >= 3 && numNomenclatural != null && !numNomenclatural.equals("0")) { |
int positionDeuxPoints = referentiel.indexOf(':'); |
if (positionDeuxPoints == -1) { |
refFmt = referentiel; |
} else { |
refFmt = referentiel.substring(0, positionDeuxPoints); |
} |
} |
return refFmt; |
} |
|