2
0
Fork 0

Removed a few complile errors

This commit is contained in:
Willem Cazander 2022-04-27 18:34:46 +02:00
parent 76aa74990e
commit 0997b66c89
14 changed files with 135 additions and 403 deletions

View file

@ -76,7 +76,12 @@ public class JRDynamicDataSourceVascEntry extends AbstractJRDynamicDataSource {
for (Serializable o:vascEntry.getVascFrontendController().getVascEntryState().getEntryDataList()) {
List<String> row = new ArrayList<String>(30);
for (VascEntryField c:fields) {
row.add(c.getVascEntryFieldValue().getDisplayValue(c.getBackendName(), o));
Object rowData = c.getVascEntryFieldValue().getValue(c.getBackendName(), o);
if (rowData == null) {
row.add(null);
} else {
row.add(rowData.toString());
}
}
data.add(row);
}