Browse Source

不保存base64数据的pdf,直接返回路径2

master
wanghongjun 12 months ago
parent
commit
f0a6f22b96
  1. 2
      app/service/invoice/InvoiceIssuanceService.php

2
app/service/invoice/InvoiceIssuanceService.php

@ -265,7 +265,7 @@ class InvoiceIssuanceService
if (!isset($deCompress['data']['pdfdata'])) {
throw new FuncException('pdf文件合并失败');
}
$pdfFilepath = $this->savePdfFile($deCompress['data']['pdfdata']);
$pdfFilepath = $deCompress['data']['pdfdata'];//$this->savePdfFile($deCompress['data']['pdfdata']);
(new InvoiceIssuanceData())->saveData($invoiceIssuance['id'], $bdznsrsbh, $jsyj, $assetID, $pdfFilepath);

Loading…
Cancel
Save