Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
oboehm committed Dec 9, 2024
2 parents 7b65245 + c1771e5 commit a6f8d9f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lib/src/main/java/gdv/xport/satz/Datensatz.java
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,7 @@ public void setSparte(final String x) {
* @return true, falls Wagnisart-Feld vorhanden ist
* @since 1.0
*/
@JsonIgnore
public boolean hasWagnisart() {
return this.hasFeld((Bezeichner.WAGNISART));
}
Expand All @@ -334,6 +335,7 @@ public boolean hasWagnisart() {
* @return true, falls das Feld existiert
* @since 18.04.2018
*/
@JsonIgnore
public boolean hasKrankenFolgeNr() {
return this.getSatzart() == 220 && this.getSparte() == 20
&& (this.hasFeld(Bezeichner.FOLGE_NR_ZUR_LAUFENDEN_PERSONEN_NR_UNTER_NR_LAUFENDE_NR_TARIF)
Expand All @@ -347,6 +349,7 @@ public boolean hasKrankenFolgeNr() {
* @return true, falls das Feld existiert
* @since 30.06.2021
*/
@JsonIgnore
public boolean hasBausparenArt() {
return this.getSatzart() == 220 && hasSparte() && getSparte() == 580
&& (this.hasFeld(Bezeichner.ART_580));
Expand All @@ -370,6 +373,7 @@ public int getArt() {
*
* @return true, falls der Datensatz eine Untersparte hat.
*/
@JsonIgnore
public boolean hasArt() {
return this.getSatzTyp().hasArt();
}
Expand All @@ -391,6 +395,7 @@ public NumFeld getSparteFeld() {
* @return true, falls Sparten-Feld vorhanden ist
* @since 0.9
*/
@JsonIgnore
public boolean hasSparte() {
return getFeldSparte().isPresent();
}
Expand Down

0 comments on commit a6f8d9f

Please sign in to comment.