簡體   English   中英

如何在 OctoberCMS 中使用 DynamicPDF 插件從后端編輯/更新視圖中導出 PDF

[英]How to export PDF from back-end edit/update view using DynamicPDF plugin in OctoberCMS

我將使用 DynamicPDF 插件在 OctoberCMS 中更新/編輯我的插件視圖時從后端導出到 pdf 一些字段,有人可以幫我嗎?

在插件 controller 我有這個電話:

<?php namespace Vimagem\Pacientes\Controllers;

use Backend\Classes\Controller;
use BackendMenu;
use Renatio\DynamicPDF\Classes\PDF;
use Renatio\DynamicPDF\Classes\PDFWrapper;


class Pacientes extends Controller
{
    public $implement = [        'Backend\Behaviors\ListController',        'Backend\Behaviors\FormController',        'Backend\Behaviors\ReorderController'    ];

    public $listConfig = 'config_list.yaml';
    public $formConfig = 'config_form.yaml';
    public $reorderConfig = 'config_reorder.yaml';

    public function __construct()
    {
        parent::__construct();
        BackendMenu::setContext('Vimagem.Pacientes', 'main-menu-item');
    }


    /** PDF **/




public function pdf($id)
{

    return PDF::loadTemplate('export-data-pdf')->stream('download.pdf');
}



}

在 PDF 模板(export-data-pdf)上,我需要從一個客戶端調用一些表單字段:

{{ name }}
{{ address }}
{{ phone }}
etc...

但是我無法顯示這些字段,這是怎么回事?

謝謝你,維托

此代碼可在插件文檔中找到。

use Renatio\DynamicPDF\Classes\PDF; // import facade

...

public function pdf()
{
    $templateCode = 'renatio::invoice'; // unique code of the template
    $data = ['name' => 'John Doe']; // optional data used in template

    return PDF::loadTemplate($templateCode, $data)->stream('download.pdf');
}

我用過這個插件,效果很好。 您需要將數據傳遞給 PDF stream。

這已經完成,解決了這個問題。

這是 controller 應用程序:

<?php namespace Vimagem\Pacientes\Controllers;

use Backend\Classes\Controller;
use BackendMenu;
use Renatio\DynamicPDF\Classes\PDFWrapper;
use Vimagem\Pacientes\Models\Paciente;
use \October\Rain\Database\Traits\Validation;
use Str;

class Pacientes extends Controller
{
    public $implement = [        'Backend\Behaviors\ListController',        'Backend\Behaviors\FormController',        'Backend\Behaviors\ReorderController'    ];

    public $listConfig = 'config_list.yaml';
    public $formConfig = 'config_form.yaml';
    public $reorderConfig = 'config_reorder.yaml';

    public function __construct()
    {
        parent::__construct();
        BackendMenu::setContext('Vimagem.Pacientes', 'main-menu-item');
    }




/**** PDF Export ***/

public function pdf($id)
    {
        $paciente = Paciente::find($id);
        if ($paciente === null) {
            throw new ApplicationException('User not found.');
        }


        $filename = Str::slug($paciente->nome) . '.pdf';

        try {
            /** @var PDFWrapper $pdf */
            $pdf = app('dynamicpdf');

            $options = [
                'logOutputFile' => storage_path('temp/log.htm'),
            ];

            return $pdf
                ->loadTemplate('export-data-pdf', compact('paciente'))
                ->setOptions($options)
                ->stream($filename);

        } catch (Exception $e) {
            throw new ApplicationException($e->getMessage());
        }
    }   


}


現在我可以像這樣在模板上使用部分:

<p>{{ paciente.nome }}</p>

<p>{{ paciente.morada }}</p>


etc...

感謝所有試圖幫助我的人。

維托

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM