Skip to content

Commit

Permalink
Merge pull request #11 from abes-esr/develop
Browse files Browse the repository at this point in the history
Feat : Ajout méthode permettant de modifier une notice à partir d'un …
  • Loading branch information
theo-chmbn authored Jul 27, 2023
2 parents 1e259c7 + 289ec99 commit 53be66b
Show file tree
Hide file tree
Showing 4 changed files with 218 additions and 69 deletions.
19 changes: 11 additions & 8 deletions src/main/java/fr/abes/cbs/notices/Exemplaire.java
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public void createExemplaireFromUnimarc(String exemplaire) throws ZoneException
}
firstSousZone = false;
} else {
this.addSousZone(labelZone, matcher.group("szk" + i), matcher.group("szv" + i), indexZone);
this.addSousZone(labelZone, matcher.group("szk" + i), matcher.group("szv" + i), indexZone);
}
}
}
Expand All @@ -141,7 +141,8 @@ public void createExemplaireFromUnimarc(String exemplaire) throws ZoneException

/**
* Méthode permettant de générer une zone A99 d'exemplaire
* @param lineZone ligne de la notice contenant la zone
*
* @param lineZone ligne de la notice contenant la zone
* @param labelZone intitulé de la zone
*/
private void genererZoneA99(String lineZone, String labelZone) throws ZoneException {
Expand All @@ -162,7 +163,8 @@ private void genererZoneA99(String lineZone, String labelZone) throws ZoneExcept

/**
* Méthode permettant de générer une zone A98 d'exemplaire
* @param lineZone ligne de la notice contenant la zone
*
* @param lineZone ligne de la notice contenant la zone
* @param labelZone intitulé de la zone
*/
private void genererZoneA98(String lineZone, String labelZone) throws ZoneException {
Expand All @@ -183,7 +185,8 @@ private void genererZoneA98(String lineZone, String labelZone) throws ZoneExcept

/**
* Méthode permettant de générer une zone A97 d'exemplaire
* @param lineZone ligne de la notice contenant la zone
*
* @param lineZone ligne de la notice contenant la zone
* @param labelZone intitulé de la zone
*/
private void genererZoneA97(String lineZone, String labelZone) throws ZoneException {
Expand All @@ -197,13 +200,14 @@ private void genererZoneA97(String lineZone, String labelZone) throws ZoneExcept
labelZone = matcher.group("zSysName");
}
if (matcher.group("zSysv0") != null && matcher.group("zSysv1") != null) {
this.addZone(labelZone,matcher.group("zSysv0") + " " + matcher.group("zSysv1"));
this.addZone(labelZone, matcher.group("zSysv0") + " " + matcher.group("zSysv1"));
}
}
}

/**
* Méthode de génération d'une zone d'état de collection : 955, 956, 957, 959
*
* @param lineZone
*/
private void genererEtatCollection(String lineZone) throws ZoneException {
Expand Down Expand Up @@ -241,8 +245,7 @@ private void genererEtatCollection(String lineZone) throws ZoneException {
if (tabNumerotationPara.length == 2) {
sequenceParaStr = tabNumerotationPara[1];
sequencePrimaireStr = tabNumerotationPara[0];
}
else {
} else {
sequencePrimaireStr = tabNumerotationPara[0];
}
//si on a trouvé de séquence de numérotation parallèle
Expand Down Expand Up @@ -280,7 +283,7 @@ private void genererEtatCollection(String lineZone) throws ZoneException {

matcher = pattern.matcher(lineZone);
if (matcher.find()) {
for (int i = 0; i< nbSousZones ; i++) {
for (int i = 0; i < nbSousZones; i++) {
if (matcher.group("szk" + i) != null) {
zoneEtatColl.addSubLabel(matcher.group("szk" + i), matcher.group("szv" + i));
}
Expand Down
Loading

0 comments on commit 53be66b

Please sign in to comment.