Examples of UTLScholarshipReportBeanFromRegistration


Examples of org.fenixedu.academic.domain.student.scholarship.report.UTLScholarshipReportBeanFromRegistration

    public ActionForward viewResultsOnRegistration(ActionMapping mapping, ActionForm form, HttpServletRequest request,
            HttpServletResponse response) {

        Registration registration = getDomainObject(request, "registrationId");

        UTLScholarshipReportBeanFromRegistration bean = new UTLScholarshipReportBeanFromRegistration(registration);

        request.setAttribute("utlScholarshipBean", bean);
        request.setAttribute("registration", registration);

        return mapping.findForward("viewUTLScholarshipFromRegistration");
View Full Code Here

Examples of org.fenixedu.academic.domain.student.scholarship.report.UTLScholarshipReportBeanFromRegistration

    public ActionForward downloadRegistrationResultsSpreadsheet(ActionMapping mapping, ActionForm form,
            HttpServletRequest request, HttpServletResponse response) throws Exception {
        Registration registration = getDomainObject(request, "registrationId");

        UTLScholarshipReportBeanFromRegistration bean = new UTLScholarshipReportBeanFromRegistration(registration);

        Spreadsheet spreadsheet = bean.buildSpreadsheet();

        response.setContentType("application/vnd.ms-excel");
        response.setHeader("Content-Disposition", "attachment; filename=bolsa_accao_social_utl_" + registration.getNumber()
                + ".xls");
        spreadsheet.exportToXLSSheet(response.getOutputStream());
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.