Skip to content

Commit

Permalink
Show dweg name even if no preference is present (eclipse-set#635)
Browse files Browse the repository at this point in the history
* Show dweg name even if no preference is present

* Remove debug code
  • Loading branch information
pstuecker authored May 31, 2024
1 parent d8369b3 commit 1e02275
Showing 1 changed file with 12 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ class SslzTransformator extends AbstractPlanPro2TableModelTransformator {

static val String EMPTY_FILLING = ""

static val String WARNING_SYMBOL = "\u26A0"

new(Set<ColumnDescriptor> cols,
EnumTranslationService enumTranslationService) {
super(cols, enumTranslationService)
Expand Down Expand Up @@ -147,12 +149,17 @@ class SslzTransformator extends AbstractPlanPro2TableModelTransformator {
fstrZugRangier, [
val bezeichnung = fstrZugRangier?.fstrDWeg?.
bezeichnung?.bezeichnungFstrDWeg?.wert
if (bezeichnung === null ||
!fstrZugRangier?.fstrZug?.fstrZugDWeg?.DWegVorzug?.
wert)
bezeichnung
if (bezeichnung === null)
return null

val vorzug = fstrZugRangier?.fstrZug?.fstrZugDWeg?.
DWegVorzug?.wert
if (vorzug === null)
return '''«bezeichnung» «WARNING_SYMBOL»'''
if (vorzug)
return '''«bezeichnung»*'''
else
bezeichnung + "*"
return bezeichnung
])

fillSwitch(
Expand Down

0 comments on commit 1e02275

Please sign in to comment.