File tree Expand file tree Collapse file tree
java/de/symeda/sormas/api/sample
sormas-ui/src/main/java/de/symeda/sormas/ui/symptoms Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -86,14 +86,14 @@ public enum PathogenTestType {
8686 Disease .CORONAVIRUS ,
8787 Disease .RESPIRATORY_SYNCYTIAL_VIRUS ,
8888 Disease .INVASIVE_MENINGOCOCCAL_INFECTION ,
89- Disease .INVASIVE_PNEUMOCOCCAL_INFECTION })
89+ Disease .INVASIVE_PNEUMOCOCCAL_INFECTION , Disease . MEASLES })
9090 INDIRECT_FLUORESCENT_ANTIBODY ,
9191
9292 @ Diseases (value = {
9393 Disease .CORONAVIRUS ,
9494 Disease .RESPIRATORY_SYNCYTIAL_VIRUS ,
9595 Disease .INVASIVE_MENINGOCOCCAL_INFECTION ,
96- Disease .INVASIVE_PNEUMOCOCCAL_INFECTION })
96+ Disease .INVASIVE_PNEUMOCOCCAL_INFECTION , Disease . MEASLES })
9797 DIRECT_FLUORESCENT_ANTIBODY ,
9898
9999 @ Diseases (value = {
Original file line number Diff line number Diff line change @@ -1270,7 +1270,7 @@ SampleMaterial.PLEURAL_FLUID=Pleural fluid specimen
12701270SampleMaterial.CLINICAL_SAMPLE =Clinical sample
12711271SampleMaterial.PERITONEAL_FLUID = Peritoneal Fluid
12721272SampleMaterial.SYNOVIAL_FLUID = Synovial Fluid
1273- SampleMaterial.DRY_BLOOD = Dry blood spot
1273+ SampleMaterial.DRY_BLOOD = Dried blood spot
12741274SampleMaterial.AMNIOTIC_FLUID = Amniotic fluid
12751275SampleMaterial.THROAT_ASPIRATE = Throat aspirate
12761276SampleMaterial.EDTA_WHOLE_BLOOD = EDTA Whole Blood
Original file line number Diff line number Diff line change @@ -544,7 +544,9 @@ public String getFormattedHtmlMessage() {
544544 if (isConfiguredServer (CountryHelper .COUNTRY_CODE_LUXEMBOURG )) {
545545 boolean isSymptamatic = !SymptomState .YES .equals (asymptomaticNOG .getNullableValue ());
546546 editableAllowedFields ().stream ().filter (field -> !field .getId ().equals (ASYMPTOMATIC )).forEach (field -> {
547- field .clear ();
547+ if (!isSymptamatic ) {
548+ field .clear ();
549+ }
548550 field .setEnabled (isSymptamatic );
549551 onsetSymptom .setEnabled (isSymptamatic );
550552 onsetDateField .setEnabled (isSymptamatic );
You can’t perform that action at this time.
0 commit comments