Examples of BirthdayLetterReport


Examples of br.com.visualmidia.ui.report.BirthdayLetterReport

    }

    protected void createLabelPaymentLetterReport() {
        GDWindowControl gdWindow = GDWindowControl.getInstance();
        HashMap<String, Person> personMap = new HashMap<String, Person>();
        BirthdayLetterReport birthdayLetter = new BirthdayLetterReport(monthCombo.getSelectionIndex(), selectTypeCombo.getText(), listReportRadio.getSelection(), monthCombo.getText(), enableStudentCheckBox.getSelection(), disableStudentCheckBox.getSelection());
       
        for (int cont=0; cont<birthdayLetter.getBirthdayList().size(); cont++){
            personMap.put(String.valueOf(cont),birthdayLetter.getBirthdayList().get(cont));
        }
        gdWindow.openLabelMailingReport(personMap,"de cartas de aniversariantes");
    }
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.