Skip to content
Snippets Groups Projects
Commit 44c4dafe authored by Robert Goldmann's avatar Robert Goldmann
Browse files

replaced boolean text in report with text representation

parent 83a942fc
No related branches found
No related tags found
2 merge requests!142merge v1_3_0 into master,!121Merge Reports into v1_3_0
...@@ -256,8 +256,14 @@ public class ReportGenerator ...@@ -256,8 +256,14 @@ public class ReportGenerator
case RATING: case RATING:
return reportItem.getAmount() > 0 ? "+" : "-"; return reportItem.getAmount() > 0 ? "+" : "-";
case REPEATING: case REPEATING:
// TODO icon if(reportItem.getRepeating())
return String.valueOf(reportItem.getRepeating()); {
return "Ja";
}
else
{
return "Nein";
}
default: default:
return null; return null;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment