提交内容:获取电子回单附件URL

备注:获取电子回单附件URL(研究中)
提交人:邹江涛
This commit is contained in:
zoujiangtao 2024-12-23 17:15:47 +08:00
parent fc364934c6
commit f4dc5695e8
1 changed files with 2 additions and 0 deletions

View File

@ -168,6 +168,7 @@ public class PaymentProcessingBillPlugin extends AbstractBillPlugIn implements P
} }
} else { } else {
PrtAttach attach = ReceiptPrintHelper.doNewPrint(pageId, "bei_elecreceipt", templateId, receipt.get("id")); PrtAttach attach = ReceiptPrintHelper.doNewPrint(pageId, "bei_elecreceipt", templateId, receipt.get("id"));
logger.info("ViewReceiptService attach=" + attach);
if (Objects.nonNull(attach)) { if (Objects.nonNull(attach)) {
List<PrtAttach.AttachDetail> attachDetail = attach.getAttachDetail(); List<PrtAttach.AttachDetail> attachDetail = attach.getAttachDetail();
@ -175,6 +176,7 @@ public class PaymentProcessingBillPlugin extends AbstractBillPlugIn implements P
byte[] pdfPutStream = BeiHelper.getPdfPutStream(detail.getFilePath(), "new"); byte[] pdfPutStream = BeiHelper.getPdfPutStream(detail.getFilePath(), "new");
resList.add(pdfPutStream); resList.add(pdfPutStream);
} }
logger.info("ViewReceiptService resList.size=" + resList.size());
} }
} }
} }