浏览代码

bugfix: EK-0524: 结算后台无法下载PDF订单.

kevinElken 7 月之前
父节点
当前提交
b70de0d0e8
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      common/libs/export/BaseExport.php

+ 2 - 1
common/libs/export/BaseExport.php

@@ -839,7 +839,8 @@ ORDER;
 
             $pdf->Image('@' . $image, 15, 12, 20, 7, 'JPG');
             $pdf->writeHTML($context);
-            $pdf->Output($realFile, 'F');
+            $result = $pdf->Output($realFile, 'F');
+            LoggerTool::debug(['result' => $result]);
 
             $this->_updateFirst($realFile, 1);
         }