Skip to content

Commit

Permalink
GRAD2-2306
Browse files Browse the repository at this point in the history
HD-21559-GRAD - P3 - GRAD is creating blank transcripts
  • Loading branch information
arybakov-cgi committed Nov 8, 2023
1 parent cc76bb2 commit 083b8eb
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,6 @@ public StudentTranscriptReport buildUnOfficialTranscriptReport(final ReportForma
*
* @return
* @throws DomainServiceException
* @throws IOException
* @throws DataException
*/

Expand Down Expand Up @@ -275,7 +274,7 @@ private StudentTranscriptReport createTranscriptReport(
*/
private List<TranscriptCourse> getTranscriptCourseList(
final String pen, final boolean interim)
throws DataException, DomainServiceException {
throws DomainServiceException {
final String methodName = "getTranscriptCourseList(String, boolean)";
LOG.entering(CLASSNAME, methodName);

Expand Down Expand Up @@ -314,7 +313,7 @@ private List<TranscriptCourse> getTranscriptCourseList(
*
* @param transcriptTypeCode
* @param graduationProgramCode The graduation program code that influences sort order.
* @param transcriptCourses
* @param transcriptCourses Transcript Courses
* @param issueDate
*/
private Transcript adapt(
Expand Down Expand Up @@ -544,8 +543,9 @@ private synchronized StudentTranscriptReport createReport(
report.setBlank(StringUtils.isBlank(student.getPen().getPen()));

ca.bc.gov.educ.grad.report.dto.reports.data.impl.Student stu = (ca.bc.gov.educ.grad.report.dto.reports.data.impl.Student)report.getDataSource();
final ReportDocument document = reportService.export(report);
LOG.log(Level.FINE, "DataSource Student created {1}.", new Object[]{stu.getPEN()});

final ReportDocument document = reportService.export(report);
LOG.log(Level.FINE, "Created document {0} for student {1}.", new Object[]{document, student.getPen()});

final String filename = report.getFilename();
Expand Down

0 comments on commit 083b8eb

Please sign in to comment.