Bonjour,

Voila je rencontre un petit problème avec mon code.

Ce que je fais

Décrivez ici votre code ou ce que vous cherchez à faire

<?php

namespace App\Controller;

use App\Entity\Facture;
use App\Form\FactureType;
use App\Service\HTML2PDF;
use App\Repository\FactureRepository;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;

/**
 * @Route("/facture")
 */
class FactureController extends AbstractController
{
    //.........

    /**
     * @Route("facture_pdf/{id}", name="facture_pdf", methods={"GET"})
     */
    public function showPdf(Facture $facture): Response
    {
        return $template = $this->render('facture/pdf.html.twig', [
            'facture' => $facture,
        ]);

      //$html2pdf = $this->get('app.html2pdf');
      $html2pdf = new html2pdf('P', 'A4', 'fr', true, 'UTF-8', array(10, 15, 10, 15));

      return $html2pdf->generatePdf($template, "facture");
    }

}
<?php
/**
*génération des factures au format pdf
*/
namespace App\Service;

class HTML2PDF
{
 private $pdf;

public function create($orientation=null, $format=null, $lang=null, $unicode=null, $encoding=null, $margin=null)
{
  $this->pdf = new \Spipu\Html2Pdf\Html2Pdf(
    $orientation ? $orientation : $this->orientation,
    $format ? $format : $this->format,
    $lang ? $lang : $this->lang,
    $unicode ? $unicode : $this->unicode,
    $encoding ? $encoding : $this->encoding,
    $margin ? $margin : $this->margin,
  );
}

public function generatePdf($template, $name)
{
  $this->pdf->writeHTML($template);
  return $this->pdf-Output($name.'pdf');
}

}

// Fin génération des factures au format pdf
<page backtop="0mm" backright="10mm" backbottom="20mm" backleft="10mm">
    <style type="text/css">
        <!--  table
        {
            width: 100%;
            border-collapse:collapse;
        font-size:16px}

        .header td
        {
            width: 50%;
        vertical-align: top}

        .text-left
        {
        text-align: left}

        .text-right
        {
        text-align: right}

        .text-center
        {
        text-align: center}

        .separator
        {
            height: 20px;
        width: 100%}

        .content td
        {
            border:solid 1px #CFD1D2;
            padding: 5px;
        }

        .content th
        {
            border:solid 1px #000000;
            padding: 5px;
            background-color: #000000;
        color: #FFFFFF}

        .ligne1Content
        {
        background-color:#57B223}

        .couleurgris
        {
            background-color:#DDDDDD;
            height:auto;
        }

        .tht, .taxe, .ttc
        {
            font-size: 1.2em;
        }

        .ttc
        {
            color:#57B223;
            font-weight:bold;
        }

        .couleurverte
        {
        background-color: #57B223}

        .couleurmoinsgris
        {
            background: #EEEEEE;
        }

        .taille1
        {
            width:40%;
        }

        .taille2
        {
            width:15%;
        }

        .taille3
        {
            width:15%;
        }

        .taille4
        {
            width:20%;
        }

        .taille5
        {
            width:10%;
        }

        .header1
        {
        width:50%}

        .header2
        {
        width:50%}

        .tailleligne
        {
            height:auto;
        }

        .taille1, taille2, taille3, taille4, taille5
        {
            height:auto;
        }

        span
        {
            font-size:14px;
            font-weight:bold;
            color:#57B223;
        }

        h1, h2, h3
        {
            color:#57B223;
        }

        .colorwhite
        {
        color:white}
    </style>
    <table class="header">
        <tr>
            <td class="text-lef">
                <h1>Facture</h1>
                <br>
            </td>
        </tr>
        <tr>
            <td class="text-left">
                <span>DE</span>
                <br/>
                <br/>
                {{ facture.vosinfos }}
                <br>
            </td>
            <td class="text-right">
                <span>FACTURE N°:</span>
                 {{ facture.numfacture }}
                <br/>
                <br/>
                <span>DATE: </span>
                {{ facture.datefacture ? facture.datefacture|date('Y-m-d H:i:s') : '' }}
                <br/>
                <br/>
                <span>N° TVA:</span>
                {{ facture.numtva }}
            </td>
        </tr>
        <tr>
            <td class="text-left">
                <br/>
                <br/>
                <br/>
                <br/>
                <br/>
                <br/>
                <br/>
                <span>FACTURÉ À</span>
                <br/>
                <br/>
                {{ facture.infosclient }}
                <br>
            </td>
            <td class="text-right"></td>
        </tr>
    </table>
    <table class="content">
        <thead>
            <tr class="ligne1Content">
                <td class="text-left couleurgris taille1">
                    <b>DESIGNATION</b>
                </td>
                <td class="text-center couleurmoinsgris taille2">
                    <b>QUANTITE</b>
                </td>
                <td class="text-center couleurgris taille3">
                    <b>PRIX HT</b>
                </td>
                <td class="text-center couleurgris taille5">
                    <b>TAXE</b>
                </td>
                <td class="text-center couleurverte taille4 colorwhite">
                    <b>TOTAL HT</b>
                </td>
            </tr>
        </thead>
        <tbody>
            <tr class="couleurgris">
                <td class="text-left couleurgris taille1">
                    {{ facture.designation1 }}
                </td>
                <td class="text-center couleurmoinsgris taille2">
                    {{ facture.quantite1 }}
                </td>
                <td class="text-center taille3">
                    {{ facture.prixht1 }}
                </td>
                <td class="text-center taille5">
                    {{ facture.taxe1 }}
                </td>
                <td class="text-center couleurverte taille4 colorwhite">
                     {{ facture.quantite1 }} * {{ facture.prixht1 }}
                </td>
            </tr>

<tr class="couleurgris">
                <td class="text-left couleurgris taille1">
                    {{ facture.designation2 }}
                </td>
                <td class="text-center couleurmoinsgris taille2">
                    {{ facture.quantite2 }}
                </td>
                <td class="text-center taille3">
                    {{ facture.prixht2 }}
                </td>
                <td class="text-center taille5">
                    {{ facture.taxe2 }}
                </td>
                <td class="text-center couleurverte taille4 colorwhite">
                     {{ facture.quantite2 }} * {{ facture.prixht2 }}
                </td>
            </tr>
<tr class="couleurgris">
                <td class="text-left couleurgris taille1">
                    {{ facture.designation3 }}
                </td>
                <td class="text-center couleurmoinsgris taille2">
                    {{ facture.quantite3 }}
                </td>
                <td class="text-center taille3">
                    {{ facture.prixht3 }}
                </td>
                <td class="text-center taille5">
                    {{ facture.taxe3 }}
                </td>
                <td class="text-center couleurverte taille4 colorwhite">
                     {{ facture.quantite3 }} * {{ facture.prixht3 }}
                </td>
            </tr>

        </tbody>
        <tfoot>
            <tr>
                <td colspan="4" class="text-right tht">
                    TOTAL HT
                </td>
                <td class="tht text-center">
                    {{ facture.quantite1 }} * {{ facture.prixht1 }} + {{ facture.quantite2 }} * {{ facture.prixht2 }} + {{ facture.quantite3 }} * {{ facture.prixht3 }}
                </td>
            </tr>
            <tr>
                <td colspan="4" class="text-right tht">
                    TAXE à {{ facture.taxe1 }}
                </td>
                <td class="text-center">
                    {{ facture.taxe2 }}
                </td>
            </tr>
            <tr>
                <td colspan="4" class="text-right">
                    <h3>TOTAL TTC À PAYER</h3>
                </td>
                <td class="text-center">
                    <h3> €</h3>
                </td>
            </tr>
            <tr>
                <td colspan="5">
                    <span>CONDITIONS ET MOYENS DE PAIEMENT:</span>
                    <br/>
                    {{ facture.conditions }}
                </td>
            </tr>
        </tfoot>
    </table>
</page>

Ce que je veux

J'aimerais générer les factures au format PDF.

Ce que j'obtiens

Warning: Unknown: failed to open stream: No such file or directory in Unknown on line 0

Fatal error: Unknown: Failed opening required 'C:\xampp\htdocs\devis_facture\vendor\symfony\web-server-bundle/Resources/router.php' (include_path='C:\xampp\php\PEAR') in Unknown on line 0

2 réponses


Bonjour.
Tu as quatres problèmes principaux :
Le premier

return $template = $this->render('facture/pdf.html.twig', [
    'facture' => $facture,
]);

Si tu fais un return le code qui suit ne pourra pas être exécuté.
Le second :

$html2pdf = new html2pdf('P', 'A4', 'fr', true, 'UTF-8', array(10, 15, 10, 15));

Tu fais références à quelle classe là ?
Car dans le code que tu nous montres juste après, elle n'a aucun constructeur, je vois donc mal comment tu peux passer des arguments au constructeur d'une classe, alors qu'elle n'en à même pas.
La seule chose qui s'en rapproche le plus, c'est la fonction create, et là arrive le 3ème problème, dans cette fonction, tu cherches à faire référence à des propriétés qui n'existent même pas, comme par exemple : $this->orientation.
Pour terminer, voici le 4ème problème :

$this->pdf-Output($name.'pdf');
// Erreur ↑
$this->pdf->Output($name.'pdf');
// Là Ok

J'essaie de suivre ce tuto mais ça marche pas: [https://www.supinfo.com/articles/single/3041-html2pdf-symfony]()

J'ai retravaillé mon controller:

/**
     * @Route("facture_pdf/{id}", name="facture_pdf", methods={"GET"})
     */
    public function showPdf(Facture $facture): Response
    {
        $template = $this->render('facture/pdf.html.twig', [
            'facture' => $facture,
        ]);

      //$html2pdf = $this->get('app.html2pdf');
      $html2pdf->create('P', 'A4', 'fr', true, 'UTF-8', array(10, 15, 10, 15));

      return $html2pdf->generatePdf($template, "facture");
    }

Et la class Html2pdf:

<?php
/**
*génération des factures au format pdf
*/
namespace App\Service;

class HTML2PDF
{
 private $pdf;

public function create($orientation=null, $format=null, $lang=null, $unicode=null, $encoding=null, $margin=null)
{
  $this->pdf = new \Html2Pdf(
    $orientation ? $orientation : $this->orientation,
    $format ? $format : $this->format,
    $lang ? $lang : $this->lang,
    $unicode ? $unicode : $this->unicode,
    $encoding ? $encoding : $this->encoding,
    $margin ? $margin : $this->margin,
  );
}

public function generatePdf($template, $name)
{
  $this->pdf->writeHTML($template);
  return $this->pdf->Output($name.'.pdf');
}

}

// Fin génération des factures au format pdf