* @param row
*/
private ResultsRow buildResultsRow(EntityManager manager, QCore core,
Map<QEntityProperty, Object> model) throws ReportException {
List<QueryResultColumn> colProps = core.getColumns().getList();
ResultsRow rr = new ResultsRow(colProps.size());
// для каждой колонки получаем значение
int i=0;
for(QueryResultColumn col: colProps) {
MathExpressionGeneric expession = col.getExpression();
rr.setValue(i, expession.getValue(model));
i++;
}
InlineCoreJavaList javacores = core.getResultInJavaList();
if(javacores != null) {