我想从prestashop后端生成3000个以上的pdf文件

时间:2016-08-08 10:49:29

标签: pdf prestashop prestashop-1.6 prestashop-1.5 prestashop-1.7

我正在使用tcpdf pdf生成器生成Eticket,就像prestahsop生成发票的pdf文件一样,我正在尝试生成门票的pdf文件(我在线销售门票),每天需要打印3000张门票从后端怎么做这3000张票打印?我的意思是如何一键生成3000张pdf票? 此外,我需要验证打印是否生成了相应故障单的3000 pdf,以及如何进行此验证(计数验证)。

public function generatePDF($object, $template)
{
    switch($template) {
        case PDF::TEMPLATE_ETICKET:
            $format = 'JIS_B5'; // Replace with your desired size for Back office Eticket
            break;
        default:
            $format = 'A4'; // Replace with normal size
    }
    $pdf = new PDF($object, $template, Context::getContext()->smarty,'P', $format);
    $pdf = $pdf->render(false);


    return true;
}

0 个答案:

没有答案