File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
sormas-ui/src/main/java/de/symeda/sormas/ui/symptoms Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 63
63
import com .vaadin .v7 .ui .OptionGroup ;
64
64
import com .vaadin .v7 .ui .TextField ;
65
65
66
+ import de .symeda .sormas .api .CountryHelper ;
66
67
import de .symeda .sormas .api .Disease ;
67
68
import de .symeda .sormas .api .FacadeProvider ;
68
69
import de .symeda .sormas .api .caze .CaseDataDto ;
@@ -931,7 +932,7 @@ public String getFormattedHtmlMessage() {
931
932
getField (PNEUMONIA_CLINICAL_OR_RADIOLOGIC ).setCaption (I18nProperties .getCaption (Captions .Symptoms_ipi_pneumoniaClinicalOrRadiologic ));
932
933
}
933
934
934
- if (disease == Disease .TUBERCULOSIS ) {
935
+ if (FacadeProvider . getConfigFacade (). isConfiguredCountry ( CountryHelper . COUNTRY_CODE_LUXEMBOURG ) && disease == Disease .TUBERCULOSIS ) {
935
936
Label localisationHeadingLabel = createLabel (I18nProperties .getString (Strings .headingLocalisation ), H3 , LOCALISATION_HEADING_LOC );
936
937
937
938
clinicalPresentationHeadingLabel .setVisible (true );
@@ -1022,7 +1023,7 @@ protected String createHtmlLayout() {
1022
1023
1023
1024
String FINAL_HTML_LAYOUT = HTML_LAYOUT ;
1024
1025
1025
- if (disease == Disease .TUBERCULOSIS ) {
1026
+ if (FacadeProvider . getConfigFacade (). isConfiguredCountry ( CountryHelper . COUNTRY_CODE_LUXEMBOURG ) && disease == Disease .TUBERCULOSIS ) {
1026
1027
FINAL_HTML_LAYOUT = FINAL_HTML_LAYOUT .replace (onsetDateLoc , emptyLoc )
1027
1028
.replace (tbOnsetDateLoc , onsetDateLoc )
1028
1029
.replace (clinicalPresentationDetailsLoc , emptyLoc )
You can’t perform that action at this time.
0 commit comments