Removed a few complile errors
This commit is contained in:
parent
76aa74990e
commit
0997b66c89
14 changed files with 135 additions and 403 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue