Examples of addWorkingTimeRecord()


Examples of com.peusoft.ptcollect.server.service.report.context.WorkTimeReportContext.addWorkingTimeRecord()

        WorkTimeReportContext report_context = new WorkTimeReportContext(from, till);
        List<Project> projects = new ArrayList<Project>();
        projects.add(project);
        Collection<WorkDayTimeRecord> records = getData(user, projects, projectActivities, from, till);
        for (WorkDayTimeRecord workDayTimeRecord : records) {
            report_context.addWorkingTimeRecord(workDayTimeRecord);
        }

        // fill template
        fillTemplate(templateName, report_context, writer);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.