1 package org.kuali.ole.deliver.util.printSlip;
2
3 import com.itextpdf.text.Chunk;
4 import com.itextpdf.text.Paragraph;
5 import com.itextpdf.text.pdf.PdfPTable;
6 import org.kuali.ole.deliver.bo.OleDeliverRequestBo;
7 import org.kuali.ole.deliver.util.OleRegularPrintSlipUtil;
8 import org.kuali.ole.deliver.util.RegularPdfFormatUtil;
9
10
11
12
13 public class InTransitForLoanRegularPrintSlipUtil extends OleRegularPrintSlipUtil {
14 @Override
15 public RegularPdfFormatUtil getPdfFormatUtil() {
16 return new RegularPdfFormatUtil();
17 }
18
19 @Override
20 protected void populateHeader(Paragraph paraGraph) {
21 paraGraph.add(new Chunk("Intransit for Loan", getPdfFormatUtil().getBoldFont()));
22 }
23
24 @Override
25 protected void populateBody(PdfPTable pdfTable) {
26 String routeTo = getOleItemRecordForCirc().getRouteToLocation();
27 OleDeliverRequestBo oleDeliverRequestBo = getOleItemRecordForCirc().getOleDeliverRequestBo();
28 String requestedBy = oleDeliverRequestBo != null ? (oleDeliverRequestBo.getOlePatron().getPatronName()) : null;
29 pdfTable.addCell(getPdfFormatUtil().getPdfPCellInJustified("Route To"));
30 pdfTable.addCell(getPdfFormatUtil().getPdfPCellInLeft(":"));
31 pdfTable.addCell(getPdfFormatUtil().getPdfPCellInJustified(routeTo));
32
33 pdfTable.addCell(getPdfFormatUtil().getPdfPCellInJustified("Place on hold for"));
34 pdfTable.addCell(getPdfFormatUtil().getPdfPCellInLeft(":"));
35 pdfTable.addCell(getPdfFormatUtil().getPdfPCellInJustified(requestedBy));
36
37
38 pdfTable.addCell(getPdfFormatUtil().getPdfPCellInJustified("Date/Time "));
39 pdfTable.addCell(getPdfFormatUtil().getPdfPCellInLeft(":"));
40 pdfTable.addCell(getPdfFormatUtil().getPdfPCellInJustified(getSimpleDateFormat().format(getOleItemRecordForCirc().getItemRecord().getEffectiveDate()).toString()));
41 }
42 }