Package org.joget.report.model

Examples of org.joget.report.model.ReportRow


                    i++;
                }
                double[] minMax = getMinMaxValues(values);
                double[] ratioDelayAndOnTime = getRatioWithDelayAndOnTime(values, processInstanceList.size());

                ReportRow row = new ReportRow();
                row.setId(workflowProcess.getProcessDefId());
                row.setName(workflowProcess.getProcessName());
                row.setMinDelay(minMax[0]);
                row.setMaxDelay(minMax[1]);
                row.setRatioWithDelay(ratioDelayAndOnTime[0]);
                row.setRatioOnTime(ratioDelayAndOnTime[1]);

                report.add(row);
            }
        }
        return report;
View Full Code Here


                    i++;
                }
                double[] minMax = getMinMaxValues(values);
                double[] ratioDelayAndOnTime = getRatioWithDelayAndOnTime(values, activityInstanceList.size());

                ReportRow row = new ReportRow();
                row.setId(workflowActivity.getActivityDefId());
                row.setName(workflowActivity.getActivityName());
                row.setMinDelay(minMax[0]);
                row.setMaxDelay(minMax[1]);
                row.setRatioWithDelay(ratioDelayAndOnTime[0]);
                row.setRatioOnTime(ratioDelayAndOnTime[1]);

                report.add(row);
            }
        }
        return report;
View Full Code Here

TOP

Related Classes of org.joget.report.model.ReportRow

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.