Génération reçus avec squelette brindille
FossilOrigin-Name: d9f628dbf847efbfe4cbd9fbaf67a88c50375b0edafd9e7fe4259eb0d03e0230
This commit is contained in:
parent
5033a3bce6
commit
8bde972727
@ -1,257 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Garradin\Plugin\RecusFiscaux;
|
|
||||||
|
|
||||||
// génération du formulaire
|
|
||||||
|
|
||||||
class RecusHTML
|
|
||||||
{
|
|
||||||
private $nomAsso;
|
|
||||||
private $adresseAsso;
|
|
||||||
private $logoAsso;
|
|
||||||
private $objetAsso;
|
|
||||||
private $nomResponsable;
|
|
||||||
private $fonctionResponsable;
|
|
||||||
private $villeAsso;
|
|
||||||
private $articlesCGI;
|
|
||||||
private $signature;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* initialize global data
|
|
||||||
*/
|
|
||||||
function __construct($nomAsso,
|
|
||||||
$adresseAsso,
|
|
||||||
$logoAsso,
|
|
||||||
$objetAsso,
|
|
||||||
$nomResponsable,
|
|
||||||
$fonctionResponsable,
|
|
||||||
$villeAsso,
|
|
||||||
$articlesCGI,
|
|
||||||
$signature)
|
|
||||||
{
|
|
||||||
$this->nomAsso = $nomAsso;
|
|
||||||
$this->adresseAsso = $adresseAsso;
|
|
||||||
$this->logoAsso = $logoAsso;
|
|
||||||
$this->objetAsso = $objetAsso;
|
|
||||||
$this->nomResponsable = $nomResponsable;
|
|
||||||
$this->fonctionResponsable = $fonctionResponsable;
|
|
||||||
$this->villeAsso = $villeAsso;
|
|
||||||
$this->signature = $signature;
|
|
||||||
$this->articlesCGI = $articlesCGI;
|
|
||||||
$this->html = $this->entete();
|
|
||||||
}
|
|
||||||
|
|
||||||
function get()
|
|
||||||
{
|
|
||||||
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} »<br />
|
|
||||||
{$this->adresseAsso}<br />
|
|
||||||
<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}<br />
|
|
||||||
{$adresse}<br />
|
|
||||||
{$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($montant,
|
|
||||||
Utils::getLigneReduction($taux));
|
|
||||||
}
|
|
||||||
echo "</ul>\n";
|
|
||||||
$this->imprimer_description("Date des versements :",
|
|
||||||
"année {$annee_recu}");
|
|
||||||
$this->imprimer_description("Nature du don : ",
|
|
||||||
"Numéraire");
|
|
||||||
$this->imprimer_description("Mode de versement : ",
|
|
||||||
"chèque et/ou virement");
|
|
||||||
|
|
||||||
// articles du CGI
|
|
||||||
$nbArticles = count($this->articlesCGI);
|
|
||||||
if ($nbArticles == 1)
|
|
||||||
{
|
|
||||||
echo "<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 ";
|
|
||||||
printf("%s du code général des impôts</p>\n", $this->articlesCGI[0]);
|
|
||||||
}
|
|
||||||
else if ($nbArticles > 1)
|
|
||||||
{
|
|
||||||
echo "<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 aux articles ";
|
|
||||||
for ($i = 0; $i < $nbArticles; ++$i) {
|
|
||||||
printf("%s", $this->articlesCGI[$i]);
|
|
||||||
if ($i < $nbArticles - 2) {
|
|
||||||
echo ", ";
|
|
||||||
}
|
|
||||||
else if ($i == $nbArticles - 2) {
|
|
||||||
echo " et ";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
echo " du code général des impôts</p>\n";
|
|
||||||
}
|
|
||||||
echo "</div>\n";
|
|
||||||
|
|
||||||
// cartouche final
|
|
||||||
$date = date("j/m/Y");
|
|
||||||
echo <<<FDD
|
|
||||||
<div class="cartouche" id="final">
|
|
||||||
<p>{$this->villeAsso} le {$date}<br />
|
|
||||||
<img id="signature" src="$this->signature" />
|
|
||||||
</p>
|
|
||||||
<div>
|
|
||||||
<span id="nom">$this->nomResponsable</span><br />
|
|
||||||
<span id="fonction">$this->fonctionResponsable</span>
|
|
||||||
</div>
|
|
||||||
</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 du versement et un libellé
|
|
||||||
function imprimer_montant($montant, $libelle = "")
|
|
||||||
{
|
|
||||||
$valeur = number_format($montant, 2, ',', '');
|
|
||||||
echo "<li>la somme de <b>***{$valeur}*** euros</b>";
|
|
||||||
if ($libelle != "") {
|
|
||||||
echo " ({$libelle})";
|
|
||||||
}
|
|
||||||
echo "</li>\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function entete()
|
|
||||||
{
|
|
||||||
ob_start();
|
|
||||||
echo <<<FDD
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<style>
|
|
||||||
@page
|
|
||||||
{
|
|
||||||
size: A4 portrait;
|
|
||||||
margin: 1cm;
|
|
||||||
}
|
|
||||||
body
|
|
||||||
{
|
|
||||||
font-family: Serif;
|
|
||||||
font-size: 11pt;
|
|
||||||
background-color: white;
|
|
||||||
width : 19cm;
|
|
||||||
}
|
|
||||||
#entete
|
|
||||||
{
|
|
||||||
position : relative;
|
|
||||||
}
|
|
||||||
#logo
|
|
||||||
{
|
|
||||||
position : fixed;
|
|
||||||
max-width : 4cm;
|
|
||||||
max-height : 4cm;
|
|
||||||
}
|
|
||||||
#titre
|
|
||||||
{
|
|
||||||
position : fixed;
|
|
||||||
margin : 0 4.5cm 0 4.5cm;
|
|
||||||
top : 1cm;
|
|
||||||
text-align : center;
|
|
||||||
font-size : 14pt;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
#articles
|
|
||||||
{
|
|
||||||
position : fixed;
|
|
||||||
margin : 0 4.5cm 0 4.5cm; /* idem titre */
|
|
||||||
top : 6em;
|
|
||||||
text-align : center;
|
|
||||||
}
|
|
||||||
#numRecu
|
|
||||||
{
|
|
||||||
position : relative;
|
|
||||||
text-align : right;
|
|
||||||
top : 8em;
|
|
||||||
right: 1em;
|
|
||||||
}
|
|
||||||
#beneficiaire, #donateur, #versements, #final
|
|
||||||
{
|
|
||||||
position : relative;
|
|
||||||
top : 9em;
|
|
||||||
}
|
|
||||||
#versements
|
|
||||||
{
|
|
||||||
position : relative;
|
|
||||||
top : 9em;
|
|
||||||
border-top: 1px solid rgb(0, 0, 128);
|
|
||||||
border-bottom: 1px solid rgb(0, 0, 128);
|
|
||||||
}
|
|
||||||
.rubrique
|
|
||||||
{
|
|
||||||
background-color : rgb(200, 200, 250);
|
|
||||||
padding : 2mm;
|
|
||||||
}
|
|
||||||
.titre, .important
|
|
||||||
{
|
|
||||||
font-weight:bold;
|
|
||||||
}
|
|
||||||
.libelle
|
|
||||||
{
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
||||||
#signature
|
|
||||||
{
|
|
||||||
display: block;
|
|
||||||
max-width : 7cm;
|
|
||||||
max-height : 4cm;
|
|
||||||
margin: 0 auto;
|
|
||||||
padding-bottom : 2mm;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="cartouche" id="entete">
|
|
||||||
<img id="logo" src="$this->logoAsso" />
|
|
||||||
<p id="titre">Reçu au titre des dons à certains organismes d'intérêt général</p>
|
|
||||||
<p id="articles">Articles 200, 238 bis et 978 du code général des impôts</p>
|
|
||||||
|
|
||||||
FDD;
|
|
||||||
return ob_get_clean();
|
|
||||||
}
|
|
||||||
}
|
|
141
templates/recu.skel
Normal file
141
templates/recu.skel
Normal file
@ -0,0 +1,141 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<style>
|
||||||
|
@page
|
||||||
|
{
|
||||||
|
size: A4 portrait;
|
||||||
|
margin: 1cm;
|
||||||
|
}
|
||||||
|
body
|
||||||
|
{
|
||||||
|
font-family: Serif;
|
||||||
|
font-size: 11pt;
|
||||||
|
background-color: white;
|
||||||
|
width : 19cm;
|
||||||
|
}
|
||||||
|
#entete
|
||||||
|
{
|
||||||
|
position : relative;
|
||||||
|
}
|
||||||
|
#logo
|
||||||
|
{
|
||||||
|
position : fixed;
|
||||||
|
max-width : 4cm;
|
||||||
|
max-height : 4cm;
|
||||||
|
}
|
||||||
|
#titre
|
||||||
|
{
|
||||||
|
position : fixed;
|
||||||
|
margin : 0 4.5cm 0 4.5cm;
|
||||||
|
top : 1cm;
|
||||||
|
text-align : center;
|
||||||
|
font-size : 14pt;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
#articles
|
||||||
|
{
|
||||||
|
position : fixed;
|
||||||
|
margin : 0 4.5cm 0 4.5cm; /* idem titre */
|
||||||
|
top : 6em;
|
||||||
|
text-align : center;
|
||||||
|
}
|
||||||
|
#numRecu
|
||||||
|
{
|
||||||
|
position : relative;
|
||||||
|
text-align : right;
|
||||||
|
top : 8em;
|
||||||
|
right: 1em;
|
||||||
|
}
|
||||||
|
#beneficiaire, #donateur, #versements, #final
|
||||||
|
{
|
||||||
|
position : relative;
|
||||||
|
top : 9em;
|
||||||
|
}
|
||||||
|
#versements
|
||||||
|
{
|
||||||
|
position : relative;
|
||||||
|
top : 9em;
|
||||||
|
border-top: 1px solid rgb(0, 0, 128);
|
||||||
|
border-bottom: 1px solid rgb(0, 0, 128);
|
||||||
|
}
|
||||||
|
.rubrique
|
||||||
|
{
|
||||||
|
background-color : rgb(200, 200, 250);
|
||||||
|
padding : 2mm;
|
||||||
|
}
|
||||||
|
.titre, .important
|
||||||
|
{
|
||||||
|
font-weight:bold;
|
||||||
|
}
|
||||||
|
.libelle
|
||||||
|
{
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
#signature
|
||||||
|
{
|
||||||
|
display: block;
|
||||||
|
max-width : 7cm;
|
||||||
|
max-height : 4cm;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding-bottom : 2mm;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="cartouche" id="entete">
|
||||||
|
<img id="logo" src="{{$logo_asso}}" />
|
||||||
|
<p id="titre">Reçu au titre des dons à certains organismes d'intérêt général</p>
|
||||||
|
<p id="articles">Articles 200, 238 bis et 978 du code général des impôts</p>
|
||||||
|
<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 « {{$config.nom_asso}} »<br />
|
||||||
|
{{$config.adresse_asso}}<br />
|
||||||
|
<span class="titre">Objet : </span><span class="libelle">{{$objet_asso}}</span></p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="cartouche" id="donateur">
|
||||||
|
<h3 class="rubrique">Donateur</h3>
|
||||||
|
<p>{{$nom}}<br />
|
||||||
|
{{$adresse}}<br />
|
||||||
|
{{$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>
|
||||||
|
{{#versements}}
|
||||||
|
<li>
|
||||||
|
la somme de <b>***{{$montant|raw|money}}*** euros</b>
|
||||||
|
{{if $libelle != ""}}
|
||||||
|
({{$libelle}})
|
||||||
|
{{/if}}
|
||||||
|
</li>
|
||||||
|
{{/versements}}
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
{{#informations}}
|
||||||
|
<p><span class="titre">{{$titre}}</span><span class="libelle"> {{$libelle}}</span></p>
|
||||||
|
{{/informations}}
|
||||||
|
|
||||||
|
<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 {{$texteArticles}} du code général des impôts.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="cartouche" id="final">
|
||||||
|
<p>{{$ville_asso}} le {{$date}}<br />
|
||||||
|
<img id="signature" src="{{$signature}}" />
|
||||||
|
</p>
|
||||||
|
<div>
|
||||||
|
<span id="nom">{{$nom_responsable}}</span><br />
|
||||||
|
<span id="fonction">{{$fonction_responsable}}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -130,6 +130,7 @@ $tpl->register_function('afficher_versement', function ($params)
|
|||||||
});
|
});
|
||||||
|
|
||||||
// ------------------------------------------------------------------------
|
// ------------------------------------------------------------------------
|
||||||
|
// aiguillage
|
||||||
// ------------------------------------------------------------------------
|
// ------------------------------------------------------------------------
|
||||||
|
|
||||||
if ($_GET['action'] == 'personne') {
|
if ($_GET['action'] == 'personne') {
|
||||||
|
@ -4,15 +4,54 @@ namespace Garradin;
|
|||||||
|
|
||||||
use Garradin\Files\Files;
|
use Garradin\Files\Files;
|
||||||
use Garradin\Entities\Files\File;
|
use Garradin\Entities\Files\File;
|
||||||
|
use Garradin\UserTemplate\UserTemplate;
|
||||||
|
|
||||||
use Garradin\Plugin\RecusFiscaux\RecusHTML;
|
//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;
|
||||||
|
|
||||||
// récupérer les lignes sélectionnées
|
// signature
|
||||||
$lesLignes = f('selected');
|
$signature =
|
||||||
|
(null !== $plugin->getConfig('signature')) ?
|
||||||
|
Files::get($plugin->getConfig('signature'))->fullpath() :
|
||||||
|
"";
|
||||||
|
|
||||||
|
// logo
|
||||||
|
$logo_file = Files::get(File::CONTEXT_CONFIG . '/logo.png');
|
||||||
|
$logo_asso =
|
||||||
|
(null !== $logo_file) ?
|
||||||
|
Files::get($logo_file->path)->fullpath() :
|
||||||
|
"";
|
||||||
|
|
||||||
|
// articles du CGI
|
||||||
|
$articlesCGI = array();
|
||||||
|
foreach ($plugin->getConfig('articlesCGI') as $article)
|
||||||
|
{
|
||||||
|
if ($article->valeur == 1) {
|
||||||
|
$articlesCGI[] = $article->titre;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$nbArticles = count($articlesCGI);
|
||||||
|
if ($nbArticles == 1)
|
||||||
|
{
|
||||||
|
$texteArticles = 'à l’article ' . $articlesCGI[0];
|
||||||
|
}
|
||||||
|
elseif ($nbArticles > 1)
|
||||||
|
{
|
||||||
|
$texteArticles = 'aux articles ';
|
||||||
|
for ($i = 0; $i < $nbArticles; ++$i) {
|
||||||
|
$texteArticles .= $articlesCGI[$i];
|
||||||
|
if ($i < $nbArticles - 2) {
|
||||||
|
$texteArticles .= ", ";
|
||||||
|
}
|
||||||
|
else if ($i == $nbArticles - 2) {
|
||||||
|
$texteArticles .= " et ";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// filtrer les versements sélectionnés
|
// filtrer les versements sélectionnés
|
||||||
|
$lesLignes = f('selected');
|
||||||
$versementsSelectionnes = array();
|
$versementsSelectionnes = array();
|
||||||
foreach ($lesLignes as $ligne) {
|
foreach ($lesLignes as $ligne) {
|
||||||
$versementsSelectionnes[] = $_SESSION['lesVersements'][$ligne];
|
$versementsSelectionnes[] = $_SESSION['lesVersements'][$ligne];
|
||||||
@ -28,69 +67,77 @@ elseif ($_GET['type'] == 'activite')
|
|||||||
$totalPersonnes = cumulerVersementsTarif($versementsSelectionnes);
|
$totalPersonnes = cumulerVersementsTarif($versementsSelectionnes);
|
||||||
}
|
}
|
||||||
|
|
||||||
// informations pour les reçus
|
|
||||||
$nomAsso = $config->get('nom_asso');
|
|
||||||
$adresseAsso = $config->get('adresse_asso');
|
|
||||||
$signature =
|
|
||||||
(null !== $plugin->getConfig('signature')) ?
|
|
||||||
Files::get($plugin->getConfig('signature'))->fullpath() :
|
|
||||||
"";
|
|
||||||
|
|
||||||
// logo
|
|
||||||
$logo_file = Files::get(File::CONTEXT_CONFIG . '/logo.png');
|
|
||||||
$logoAsso =
|
|
||||||
(null !== $logo_file) ?
|
|
||||||
Files::get($logo_file->path)->fullpath() :
|
|
||||||
"";
|
|
||||||
|
|
||||||
// articles du CGI
|
|
||||||
$articlesCGI = array();
|
|
||||||
foreach ($plugin->getConfig('articlesCGI') as $article)
|
|
||||||
{
|
|
||||||
if ($article->valeur == 1) {
|
|
||||||
$articlesCGI[] = $article->titre;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// générer les reçus
|
// générer les reçus
|
||||||
$listeFichiers = array(); // fichiers pdf générés
|
$listeFichiersPDF = array();
|
||||||
foreach ($totalPersonnes as $idPersonne => $personne)
|
foreach ($totalPersonnes as $idPersonne => $personne)
|
||||||
{
|
{
|
||||||
$html = new RecusHTML(
|
$tpl = new UserTemplate();
|
||||||
$nomAsso,
|
$tpl->setSource(PLUGIN_ROOT . '/templates/recu.skel');
|
||||||
$adresseAsso,
|
|
||||||
$logoAsso,
|
|
||||||
$plugin->getConfig('objet_asso'),
|
|
||||||
$plugin->getConfig('nom_responsable'),
|
|
||||||
$plugin->getConfig('fonction_responsable'),
|
|
||||||
$plugin->getConfig('ville_asso'),
|
|
||||||
$articlesCGI,
|
|
||||||
$signature
|
|
||||||
);
|
|
||||||
|
|
||||||
$html->imprimer_recu(
|
$tpl->assignArray(compact('signature', 'logo_asso', 'texteArticles'));
|
||||||
$_SESSION['annee_recu'],
|
$tpl->assign('objet_asso', $plugin->getConfig('objet_asso'));
|
||||||
$personne->id,
|
$tpl->assign('nom_responsable', $plugin->getConfig('nom_responsable'));
|
||||||
$personne->nomPrenom,
|
$tpl->assign('fonction_responsable', $plugin->getConfig('fonction_responsable'));
|
||||||
$personne->versements,
|
$tpl->assign('ville_asso', $plugin->getConfig('ville_asso'));
|
||||||
$personne->adresse,
|
$tpl->assign('annee_recu', $_SESSION['annee_recu']);
|
||||||
$personne->codePostal,
|
$tpl->assign('numero', $personne->id);
|
||||||
$personne->ville
|
$tpl->assign('nom', $personne->nomPrenom);
|
||||||
|
$tpl->assign('adresse', $personne->adresse);
|
||||||
|
$tpl->assign('code_postal', $personne->codePostal);
|
||||||
|
$tpl->assign('ville', $personne->ville);
|
||||||
|
$tpl->assign('date', date("j/m/Y"));
|
||||||
|
|
||||||
|
// les versements
|
||||||
|
$tpl->registerSection('versements',
|
||||||
|
function () use($personne)
|
||||||
|
{
|
||||||
|
foreach ($personne->versements as $taux => $montant)
|
||||||
|
{
|
||||||
|
$ligne['montant'] = $montant;
|
||||||
|
$ligne['libelle'] = Utils::getLigneReduction($taux);
|
||||||
|
yield $ligne;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// mentions complémentaires
|
||||||
|
$donnees = array(
|
||||||
|
'Date des versements : ' => "année " . $_SESSION['annee_recu'],
|
||||||
|
'Nature du don : ' => "Numéraire",
|
||||||
|
'Mode de versement : ' => "chèque et/ou virement"
|
||||||
);
|
);
|
||||||
|
$infos = array();
|
||||||
|
foreach ($donnees as $titre => $libelle)
|
||||||
|
{
|
||||||
|
$elem = new \stdClass();
|
||||||
|
$elem->titre = $titre;
|
||||||
|
$elem->libelle = $libelle;
|
||||||
|
$infos[] = $elem;
|
||||||
|
}
|
||||||
|
|
||||||
|
$tpl->registerSection('informations',
|
||||||
|
function () use ($infos)
|
||||||
|
{
|
||||||
|
foreach ($infos as $elem)
|
||||||
|
{
|
||||||
|
yield (array) $elem;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
// fabriquer le fichier PDF
|
// fabriquer le fichier PDF
|
||||||
$nomPDF = \Garradin\Utils::filePDF($html->get());
|
$result = $tpl->fetch();
|
||||||
|
$nomPDF = \Garradin\Utils::filePDF($result);
|
||||||
// changer le nom du fichier
|
// changer le nom du fichier
|
||||||
$nom = str_replace(' ', '_', $personne->nomPrenom);
|
$nom = str_replace(' ', '_', $personne->nomPrenom);
|
||||||
$nom = str_replace("'", "", $nom);
|
$nom = str_replace("'", "", $nom);
|
||||||
$nomFichier = "recu_" . $_SESSION['annee_recu'] . "_" . $nom . ".pdf";
|
$nomFichier = "recu_" . $_SESSION['annee_recu'] . "_" . $nom . ".pdf";
|
||||||
rename($nomPDF, $nomFichier);
|
rename($nomPDF, $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;
|
$listeFichiersPDF[] = $nomFichier;
|
||||||
}
|
}
|
||||||
|
|
||||||
// faire une archive zip
|
// faire une archive zip
|
||||||
$fichierZip = Utils::makeArchive(
|
$fichierZip = Utils::makeArchive(
|
||||||
$listeFichiers,
|
$listeFichiersPDF,
|
||||||
$_SESSION['annee_recu'],
|
$_SESSION['annee_recu'],
|
||||||
PLUGIN_ROOT . "/zip"
|
PLUGIN_ROOT . "/zip"
|
||||||
);
|
);
|
||||||
@ -114,7 +161,7 @@ function cumulerVersementsPersonne($versements)
|
|||||||
{
|
{
|
||||||
$totalPersonnes[$idPersonneCourant]->ajouterVersement(
|
$totalPersonnes[$idPersonneCourant]->ajouterVersement(
|
||||||
$_SESSION['taux_reduction'],
|
$_SESSION['taux_reduction'],
|
||||||
$totalVersements/100
|
$totalVersements
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
$idPersonneCourant = $ligne->idUser;
|
$idPersonneCourant = $ligne->idUser;
|
||||||
@ -132,7 +179,7 @@ function cumulerVersementsPersonne($versements)
|
|||||||
// et le dernier
|
// et le dernier
|
||||||
$totalPersonnes[$idPersonneCourant]->ajouterVersement(
|
$totalPersonnes[$idPersonneCourant]->ajouterVersement(
|
||||||
$_SESSION['taux_reduction'],
|
$_SESSION['taux_reduction'],
|
||||||
$totalVersements/100
|
$totalVersements
|
||||||
);
|
);
|
||||||
return $totalPersonnes;
|
return $totalPersonnes;
|
||||||
}
|
}
|
||||||
@ -160,7 +207,7 @@ function cumulerVersementsTarif($versements)
|
|||||||
// changement de tarif ou de personne
|
// changement de tarif ou de personne
|
||||||
$totalPersonnes[$idPersonneCourant]->ajouterVersement(
|
$totalPersonnes[$idPersonneCourant]->ajouterVersement(
|
||||||
$_SESSION['tauxSelectionnes'][$idTarifCourant],
|
$_SESSION['tauxSelectionnes'][$idTarifCourant],
|
||||||
$totalVersements/100
|
$totalVersements
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
$idTarifCourant = $ligne->idTarif;
|
$idTarifCourant = $ligne->idTarif;
|
||||||
@ -179,7 +226,7 @@ function cumulerVersementsTarif($versements)
|
|||||||
// et le dernier
|
// et le dernier
|
||||||
$totalPersonnes[$idPersonneCourant]->ajouterVersement(
|
$totalPersonnes[$idPersonneCourant]->ajouterVersement(
|
||||||
$_SESSION['tauxSelectionnes'][$idTarifCourant],
|
$_SESSION['tauxSelectionnes'][$idTarifCourant],
|
||||||
$totalVersements/100
|
$totalVersements
|
||||||
);
|
);
|
||||||
return $totalPersonnes;
|
return $totalPersonnes;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user