}
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");
}