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
case RATING:
return reportItem.getAmount() > 0 ? "+" : "-";
case REPEATING:
// TODO icon
return String.valueOf(reportItem.getRepeating());
if(reportItem.getRepeating())
{
return "Ja";
}
else
{
return "Nein";
}
default:
return null;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment