fusion branche génération html
FossilOrigin-Name: eda1f2ceae1f29d5cda2527d8d59fbc648119e69c6c194146853856f380c51ce
This commit is contained in:
commit
3aa094f4db
151
lib/RecusHTML.php
Normal file
151
lib/RecusHTML.php
Normal file
@ -0,0 +1,151 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Garradin\Plugin\RecusFiscaux;
|
||||||
|
|
||||||
|
// génération du formulaire
|
||||||
|
|
||||||
|
class RecusHTML
|
||||||
|
{
|
||||||
|
private $nomAsso;
|
||||||
|
private $adresseAsso;
|
||||||
|
private $objetAsso;
|
||||||
|
private $signature;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* initialize global data
|
||||||
|
*/
|
||||||
|
function __construct($nomAsso,
|
||||||
|
$adresseAsso,
|
||||||
|
$objetAsso,
|
||||||
|
$signature)
|
||||||
|
{
|
||||||
|
$this->nomAsso = $nomAsso;
|
||||||
|
$this->adresseAsso = $adresseAsso;
|
||||||
|
$this->objetAsso = $objetAsso;
|
||||||
|
$this->signature = $signature;
|
||||||
|
$this->html = $this->entete();
|
||||||
|
}
|
||||||
|
|
||||||
|
function get()
|
||||||
|
{
|
||||||
|
//echo $this->html;
|
||||||
|
return $this->html;
|
||||||
|
}
|
||||||
|
|
||||||
|
// imprimer le reçu
|
||||||
|
function imprimer_recu($annee_recu,
|
||||||
|
$numero,
|
||||||
|
$nom,
|
||||||
|
$lesMontants,
|
||||||
|
$adresse,
|
||||||
|
$code_postal,
|
||||||
|
$ville)
|
||||||
|
{
|
||||||
|
ob_start();
|
||||||
|
echo <<<FDD
|
||||||
|
<div id="numRecu">
|
||||||
|
<p class="important">Reçu numéro {$annee_recu}/{$numero}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="cartouche" id="beneficiaire">
|
||||||
|
<h3 class="rubrique">Bénéficiaire des versements</h3>
|
||||||
|
<p class="important">Association « {$this->nomAsso} »</p>
|
||||||
|
<p class="important" >{$this->adresseAsso}</p>
|
||||||
|
<p><span class="titre">Objet : </span><span class="libelle">{$this->objetAsso}</span></p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="cartouche" id="donateur">
|
||||||
|
<h3 class="rubrique">Donateur</h3>
|
||||||
|
<p>{$nom}</p>
|
||||||
|
<p>{$adresse}</p>
|
||||||
|
<p>{$code_postal} {$ville}</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="cartouche" id="versements">
|
||||||
|
<p>Le bénéficiaire reconnaît avoir reçu au titre des dons et versements ouvrant droit à réduction d'impôt :</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
FDD;
|
||||||
|
|
||||||
|
foreach ($lesMontants as $taux => $montant)
|
||||||
|
{
|
||||||
|
$this->imprimer_montant("la somme de ",
|
||||||
|
$montant,
|
||||||
|
Utils::getLigneReduction($taux));
|
||||||
|
}
|
||||||
|
echo "</ul>\n";
|
||||||
|
|
||||||
|
$this->imprimer_description("Date des versements :",
|
||||||
|
"année {$annee_recu}");
|
||||||
|
echo <<<FDD
|
||||||
|
<p>Le bénéficiaire certifie sur l’honneur que les dons et versements qu’il reçoit ouvrent droit à la réduction d'impôt prévue à l’article 200 du CGI</p>
|
||||||
|
|
||||||
|
FDD;
|
||||||
|
$this->imprimer_description("Forme du don : ",
|
||||||
|
"Autre");
|
||||||
|
$this->imprimer_description("Nature du don : ",
|
||||||
|
"Numéraire");
|
||||||
|
$this->imprimer_description("Mode de versement : ",
|
||||||
|
"chèque et/ou virement");
|
||||||
|
echo "</div>\n";
|
||||||
|
|
||||||
|
// cartouche final
|
||||||
|
$date = date("j/m/Y");
|
||||||
|
echo <<<FDD
|
||||||
|
<div class="cartouche" id="final">
|
||||||
|
<p>Rennes le {$date}</p>
|
||||||
|
<img id="signature" src="$this->signature" />
|
||||||
|
<p id="fonction">Président</p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
FDD;
|
||||||
|
$this->html .= ob_get_clean();
|
||||||
|
}
|
||||||
|
|
||||||
|
// imprimer un libellé précédé de son titre en gras
|
||||||
|
function imprimer_description($titre, $libelle)
|
||||||
|
{
|
||||||
|
echo <<<FDD
|
||||||
|
<p><span class="titre">{$titre}</span><span class="libelle"> {$libelle}</span></p>
|
||||||
|
|
||||||
|
FDD;
|
||||||
|
}
|
||||||
|
|
||||||
|
// imprimer le montant de la réduction et un libellé
|
||||||
|
function imprimer_montant($texte, $montant, $libelle = "")
|
||||||
|
{
|
||||||
|
$valeur = number_format($montant, 2, ',', '');
|
||||||
|
echo "<li>{$texte} {$valeur} euros";
|
||||||
|
if ($libelle != "") {
|
||||||
|
echo " : {$libelle}";
|
||||||
|
}
|
||||||
|
echo "</li>\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function entete()
|
||||||
|
{
|
||||||
|
$styleSheet = \Garradin\PLUGIN_ROOT . "/lib/pdf.css";
|
||||||
|
ob_start();
|
||||||
|
echo <<<FDD
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="{$styleSheet}" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="cartouche" id="entete">
|
||||||
|
<div id="logoCerfa">
|
||||||
|
<span class="centre">Cerfa</span>
|
||||||
|
</div>
|
||||||
|
<div id="numCerfa">
|
||||||
|
<span>N° 11580*4</span>
|
||||||
|
</div>
|
||||||
|
<p id="titre">Reçu au titre des dons à certains organismes d'intérêt général</p>
|
||||||
|
<p id="articles">Article 200, 238 bis et 885-0 V bis A du code général des impôts</p>
|
||||||
|
|
||||||
|
FDD;
|
||||||
|
return ob_get_clean();
|
||||||
|
}
|
||||||
|
}
|
121
lib/pdf.css
Normal file
121
lib/pdf.css
Normal file
@ -0,0 +1,121 @@
|
|||||||
|
/* organisation spatiale */
|
||||||
|
body
|
||||||
|
{
|
||||||
|
width : 21cm;
|
||||||
|
padding : 1cm 1cm;
|
||||||
|
display: grid;
|
||||||
|
grid-template-areas:
|
||||||
|
'entete'
|
||||||
|
'beneficiaire'
|
||||||
|
'donateur'
|
||||||
|
'versements'
|
||||||
|
'signature';
|
||||||
|
}
|
||||||
|
|
||||||
|
#entete
|
||||||
|
{
|
||||||
|
grid-area: entete;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#logoCerfa
|
||||||
|
{
|
||||||
|
line-height: 40px;
|
||||||
|
width: 100px;
|
||||||
|
background-color: rgb(0, 0, 128);
|
||||||
|
border-radius : 50%;
|
||||||
|
text-align : center;
|
||||||
|
margin : 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.centre
|
||||||
|
{
|
||||||
|
display : inline-block;
|
||||||
|
vertical-align : middle;
|
||||||
|
line-height: 20px; /* moitié de la hauteur du logo */
|
||||||
|
color : white;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size : 14pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
#numCerfa
|
||||||
|
{
|
||||||
|
width: 100px; /* largeur du logo */
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#titre
|
||||||
|
{
|
||||||
|
margin : 0 4cm 0 4cm;
|
||||||
|
text-align : center;
|
||||||
|
font-size : 140%;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
#articles
|
||||||
|
{
|
||||||
|
margin : 0 4cm 0 4cm; /* idem titre */
|
||||||
|
}
|
||||||
|
|
||||||
|
#numRecu
|
||||||
|
{
|
||||||
|
text-align : right;
|
||||||
|
/* display : inline;*/
|
||||||
|
}
|
||||||
|
|
||||||
|
#beneficiaire
|
||||||
|
{
|
||||||
|
grid-area: beneficiaire;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#donateur
|
||||||
|
{
|
||||||
|
grid-area: donateur;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#versements
|
||||||
|
{
|
||||||
|
grid-area: versements;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#final
|
||||||
|
{
|
||||||
|
grid-area: signature;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.rubrique
|
||||||
|
{
|
||||||
|
background-color : rgb(200, 200, 250);
|
||||||
|
padding : 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cartouche
|
||||||
|
{
|
||||||
|
margin : 0.5em auto;
|
||||||
|
padding : 0 0.5em;
|
||||||
|
border : 1px solid rgb(0, 0, 128);
|
||||||
|
border-radius : 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.titre, .important
|
||||||
|
{
|
||||||
|
font-weight:bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
#signature
|
||||||
|
{
|
||||||
|
display: block;
|
||||||
|
width : 7cm;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding-bottom : 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#fonction
|
||||||
|
{
|
||||||
|
text-align : center;
|
||||||
|
padding-bottom : 2em;
|
||||||
|
}
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
namespace Garradin;
|
namespace Garradin;
|
||||||
|
|
||||||
use Garradin\Plugin\RecusFiscaux\RecusPDF;
|
use Garradin\Plugin\RecusFiscaux\RecusHTML;
|
||||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
use Garradin\Plugin\RecusFiscaux\Utils;
|
||||||
use Garradin\Plugin\RecusFiscaux\Personne;
|
use Garradin\Plugin\RecusFiscaux\Personne;
|
||||||
|
|
||||||
@ -21,22 +21,16 @@ $totalPersonnes = cumulerVersements($versementsSelectionnes);
|
|||||||
$nomAsso = Utils::getNomAsso();
|
$nomAsso = Utils::getNomAsso();
|
||||||
$adresseAsso = Utils::getAdresseAsso();
|
$adresseAsso = Utils::getAdresseAsso();
|
||||||
|
|
||||||
// TODO
|
|
||||||
// - associer le taux de réduction à chaque montant total
|
|
||||||
|
|
||||||
// récupérer le logo CERFA (bôf) et la signature
|
|
||||||
$logoCERFA = PLUGIN_ROOT . "/data/logoCerfa.png";
|
|
||||||
$signature = PLUGIN_ROOT . "/data/default_signature.png";
|
$signature = PLUGIN_ROOT . "/data/default_signature.png";
|
||||||
$listeFichiers = [];
|
$listeFichiers = [];
|
||||||
|
|
||||||
foreach ($totalPersonnes as $idPersonne => $personne) {
|
foreach ($totalPersonnes as $idPersonne => $personne)
|
||||||
|
{
|
||||||
// générer un fichier par reçu
|
// générer un fichier par reçu
|
||||||
$pdf = new RecusPDF(
|
$html = new RecusHTML(
|
||||||
'DejaVu',
|
|
||||||
'SerifCondensed',
|
|
||||||
$nomAsso,
|
$nomAsso,
|
||||||
$adresseAsso,
|
$adresseAsso,
|
||||||
$logoCERFA,
|
$plugin->getConfig('objet_asso'),
|
||||||
$signature
|
$signature
|
||||||
);
|
);
|
||||||
// extraire les montants des versements
|
// extraire les montants des versements
|
||||||
@ -50,7 +44,7 @@ foreach ($totalPersonnes as $idPersonne => $personne) {
|
|||||||
$lesMontants[$versement->tauxReduction] = $versement->montant;
|
$lesMontants[$versement->tauxReduction] = $versement->montant;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$pdf->imprimer_recu(
|
$html->imprimer_recu(
|
||||||
$_SESSION['annee_recu'],
|
$_SESSION['annee_recu'],
|
||||||
$personne->id,
|
$personne->id,
|
||||||
$personne->nomPrenom,
|
$personne->nomPrenom,
|
||||||
@ -59,13 +53,13 @@ foreach ($totalPersonnes as $idPersonne => $personne) {
|
|||||||
$personne->codePostal,
|
$personne->codePostal,
|
||||||
$personne->ville
|
$personne->ville
|
||||||
);
|
);
|
||||||
// fabriquer le nom du fichier PDF
|
// fabriquer le fichier PDF
|
||||||
|
$nomPDF = \Garradin\Utils::filePDF($html->get());
|
||||||
|
// changer le nom du fichier
|
||||||
$nom = str_replace(' ', '_', $personne->nomPrenom);
|
$nom = str_replace(' ', '_', $personne->nomPrenom);
|
||||||
$nom = str_replace("'", "", $nom);
|
$nom = str_replace("'", "", $nom);
|
||||||
// $nomFichier = Utils::getPDFDirectory() . "/" . 'recu_' . $annee_recu . '_' . $nom . '.pdf';
|
$nomFichier = "recu_" . $_SESSION['annee_recu'] . "_" . $nom . ".pdf";
|
||||||
$nomFichier = PLUGIN_ROOT . '/pdf/recu_' . $_SESSION['annee_recu'] . '_' . $nom . '.pdf';
|
rename($nomPDF, $nomFichier);
|
||||||
|
|
||||||
$pdf->Output('F', $nomFichier);
|
|
||||||
// ajouter le nom du fichier à la liste pour mettre dans une archive
|
// ajouter le nom du fichier à la liste pour mettre dans une archive
|
||||||
$listeFichiers[] = $nomFichier;
|
$listeFichiers[] = $nomFichier;
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
namespace Garradin;
|
namespace Garradin;
|
||||||
|
|
||||||
use Garradin\Plugin\RecusFiscaux\RecusPDF;
|
use Garradin\Plugin\RecusFiscaux\RecusHTML;
|
||||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
use Garradin\Plugin\RecusFiscaux\Utils;
|
||||||
use Garradin\Plugin\RecusFiscaux\Personne;
|
use Garradin\Plugin\RecusFiscaux\Personne;
|
||||||
|
|
||||||
@ -19,44 +19,46 @@ foreach ($lesLignes as $ligne) {
|
|||||||
$nomAsso = Utils::getNomAsso();
|
$nomAsso = Utils::getNomAsso();
|
||||||
$adresseAsso = Utils::getAdresseAsso();
|
$adresseAsso = Utils::getAdresseAsso();
|
||||||
|
|
||||||
$logoCERFA = PLUGIN_ROOT . "/data/logoCerfa.png";
|
|
||||||
$signature = PLUGIN_ROOT . "/data/default_signature.png";
|
$signature = PLUGIN_ROOT . "/data/default_signature.png";
|
||||||
$listeFichiers = [];
|
$listeFichiers = [];
|
||||||
|
|
||||||
foreach ($versementsSelectionnes as $ligne) {
|
foreach ($versementsSelectionnes as $ligne)
|
||||||
|
{
|
||||||
// générer un fichier par reçu
|
// générer un fichier par reçu
|
||||||
$pdf = new RecusPDF(
|
$html = new RecusHTML(
|
||||||
'DejaVu',
|
|
||||||
'SerifCondensed',
|
|
||||||
$nomAsso,
|
$nomAsso,
|
||||||
$adresseAsso,
|
$adresseAsso,
|
||||||
$logoCERFA,
|
$plugin->getConfig('objet_asso'),
|
||||||
$signature
|
$signature
|
||||||
);
|
);
|
||||||
|
|
||||||
// extraire les montants des versements
|
// extraire les montants des versements
|
||||||
$lesMontants[$_SESSION['taux_reduction']] = $ligne->versement/100;
|
$lesMontants[$_SESSION['taux_reduction']] = $ligne->versement/100;
|
||||||
$pdf->imprimer_recu(
|
$personne = $_SESSION['membresDonateurs'][$ligne->idUser];
|
||||||
|
$html->imprimer_recu(
|
||||||
$_SESSION['annee_recu'],
|
$_SESSION['annee_recu'],
|
||||||
$ligne->idUser,
|
$personne->id,
|
||||||
$_SESSION['membresDonateurs'][$ligne->idUser]->nomPrenom,
|
$personne->nomPrenom,
|
||||||
$lesMontants,
|
$lesMontants,
|
||||||
$_SESSION['membresDonateurs'][$ligne->idUser]->adresse,
|
$personne->adresse,
|
||||||
$_SESSION['membresDonateurs'][$ligne->idUser]->codePostal,
|
$personne->codePostal,
|
||||||
$_SESSION['membresDonateurs'][$ligne->idUser]->ville
|
$personne->ville
|
||||||
);
|
);
|
||||||
// fabriquer le nom du fichier PDF
|
// fabriquer le fichier PDF
|
||||||
$nom = str_replace(' ', '_', $_SESSION['membresDonateurs'][$ligne->idUser]->nomPrenom);
|
$nomPDF = \Garradin\Utils::filePDF($html->get());
|
||||||
|
// changer le nom du fichier
|
||||||
|
$nom = str_replace(' ', '_', $personne->nomPrenom);
|
||||||
$nom = str_replace("'", "", $nom);
|
$nom = str_replace("'", "", $nom);
|
||||||
// $nomFichier = Utils::getPDFDirectory() . "/" . 'recu_' . $annee_recu . '_' . $nom . '.pdf';
|
$nomFichier = "recu_" . $_SESSION['annee_recu'] . "_" . $nom . ".pdf";
|
||||||
$nomFichier = PLUGIN_ROOT . '/pdf/recu_' . $_SESSION['annee_recu'] . '_' . $nom . '.pdf';
|
rename($nomPDF, $nomFichier);
|
||||||
|
|
||||||
$pdf->Output('F', $nomFichier);
|
|
||||||
// ajouter le nom du fichier à la liste pour mettre dans une archive
|
// ajouter le nom du fichier à la liste pour mettre dans une archive
|
||||||
$listeFichiers[] = $nomFichier;
|
$listeFichiers[] = $nomFichier;
|
||||||
}
|
}
|
||||||
|
|
||||||
// faire une archive zip
|
// faire une archive zip
|
||||||
$fichierZip = Utils::makeArchive(
|
$fichierZip = Utils::makeArchive(
|
||||||
$listeFichiers,
|
$listeFichiers,
|
||||||
$_SESSION['annee_recu'],
|
$_SESSION['annee_recu'],
|
||||||
PLUGIN_ROOT . "/zip"
|
PLUGIN_ROOT . "/zip"
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user