Ajout génération de reçus pour les versements sélectionnés

FossilOrigin-Name: 2432aca0a12d32cf1e55e196df21fdb9da144420d6c1c3e21de4c46b018a2695
This commit is contained in:
engel 2022-01-19 15:04:42 +00:00
parent c2a3a77f24
commit 36060b71c8
8 changed files with 595 additions and 8 deletions

52
lib/Personne.php Normal file
View file

@ -0,0 +1,52 @@
<?php
namespace Garradin\Plugin\RecusFiscaux;
/**
* rassembler les infos d'une personne
*/
class Personne
{
public $id;
public $nomPrenom;
public $adresse;
public $ville;
public $codePostal;
public $courriel;
public $versements;
public function __construct(
$id,
$nomPrenom,
$adresse,
$ville,
$codePostal,
$courriel
) {
$this->id = $id;
$this->nomPrenom = $nomPrenom;
$this->adresse = $adresse;
$this->ville = $ville;
$this->codePostal = $codePostal;
$this->courriel = $courriel;
$this->versements = array();
}
/*
* ajouter un versement
*/
public function ajouterVersement(
$idActivite,
$idTarif,
$montant
) {
// var_dump($this);
$this->versements[] =
new Versement(
$idActivite,
$idTarif,
$montant
);
// var_dump($this);
}
}

174
lib/RecusPDF.php Normal file
View file

@ -0,0 +1,174 @@
<?php
namespace Garradin\Plugin\RecusFiscaux;
// class to generate PDF documents
require('tfpdf/tfpdf.php');
class RecusPDF extends tFPDF
{
private $nomAsso;
private $adresseAsso;
private $logoCerfa;
private $signature;
/**
* initialize header fonts
* @param : family (DejaVu, ...)
* @param : style (Sans, Serif, SansCondensed, SansMono, SerifCondensed...)
*/
function __construct($family, $style, $nomAsso, $adresseAsso, $logo, $signature)
{
parent::__construct();
// normal
$this->AddFont($family,
'',
$family.$style.".ttf",
true);
// bold
$this->AddFont($family,
'B',
$family.$style."-Bold.ttf",
true);
$this->nomAsso = $nomAsso;
$this->adresseAsso = $adresseAsso;
$this->logoCerfa = $logo;
$this->signature = $signature;
}
// Header
function Header()
{
parent::Header();
// Logo
$this->Image($this->logoCerfa, 10, 6, 30);
// document title
$this->SetTextColor(0, 0, 0);
$this->SetFont('DejaVu','B',12);
$titre = "Reçu au titre des dons à certains organismes d'intérêt général";
$this->SetXY(50, 10);
// Titre
$this->MultiCell(100,
6,
$titre,
0,
'C');
// numéro de Cerfa
$cerfa = "N° 11580*3";
$this->SetFont('DejaVu', 'B', 10);
$this->SetXY(10, 25);
$this->Cell(100, 0, $cerfa);
// Articles
$this->SetFont('DejaVu', '', 9);
$this->SetXY(50, 25);
$this->Cell(100, 0, 'Article 200, 238 bis et 885-0 V bis A du code général des impôts');
}
// imprimer les informations du bénéficiaire
function imprimer_beneficiaire($nom, $adresse)
{
$this->titre_rubrique("Bénéficiaire des versements");
$this->SetFont('DejaVu', 'B', 11);
$this->Cell(0, 6, 'Association « ' . $nom . ' »', 'LR', 1);
$this->Cell(0, 6, str_replace(array("\r\n", "\n", "\r"), " ", $adresse), 'LR', 1);
$this->imprimer_description("Objet : ",
"célébrer le culte protestant évangélique et pourvoir aux frais et besoins de ce culte.");
$this->Cell(0, 6, "", 'LRB', 1);
}
// imprimer un libellé précédé de son titre en gras
function imprimer_description($titre, $libelle)
{
$this->SetFont('DejaVu', 'B', 11);
$this->Cell($this->GetStringWidth($titre), 6, $titre, 'L', 0);
$this->SetFont('DejaVu', '', 11);
$this->Cell(0, 6, $libelle, 'R', 1);
}
function titre_rubrique($texte)
{
$this->SetFont('DejaVu','B',12);
$largeur_texte = $this->GetStringWidth($texte);
$this->setX(10);
$this->SetFillColor(0, 255, 255);
$this->Cell(0, 6, $texte, 'LTR', 1, 'C', true);
$this->Cell(0, 6, "", 'LR', 1);
}
// imprimer le reçu
function imprimer_recu($annee_recu,
$numero,
$nom,
$lesMontants,
$adresse,
$ville,
$code_postal)
{
$this->AddPage();
// Numéro de reçu
$this->SetFont('DejaVu', 'B', 11);
$this->MultiCell(0, 20, 'Reçu numéro ' . $annee_recu . '/' . $numero);
// bénéficiaire
$this->imprimer_beneficiaire($this->nomAsso, $this->adresseAsso);
// donateur
$this->Ln(10);
$this->titre_rubrique("Donateur");
$this->SetFont('DejaVu', 'B', 11);
$this->Cell(0, 6, $nom, 'LR', 1);
$this->Cell(0, 6, $adresse, 'LR', 1);
$this->Cell(0, 6, $code_postal . " " . $ville, 'LR', 1);
$this->Cell(0, 6, "", 'LRB', 1);
// Montant et autres informations
$this->Ln(10);
$this->SetFont('DejaVu', '', 11);
$this->Cell(0,
6,
"Le bénéficiaire reconnaît avoir reçu au titre des dons et versements ouvrant droit à réduction d'impôt",
'LTR',
1);
$this->Cell($this->GetStringWidth("la somme de "),
6,
"la somme de ",
'L',
0);
$this->SetFont('DejaVu','B');
foreach ($lesMontants as $montant) {
$this->Cell(0,
6,
number_format($montant, 2, "," , "") . " euros.",
'R',
1);
}
$this->Cell(0, 3, "", 'LR', 1);
$this->imprimer_description('Date du versement ou du don : ',
'année ' . $annee_recu);
$this->Cell(0, 3, "", 'LR', 1);
$this->MultiCell(0, 6,
"Le bénéficiaire certifie sur lhonneur que les dons et versements quil reçoit ouvrent droit à la réduction
d'impôt prévue à larticle 200 du CGI",
'LR');
$this->Cell(0, 3, "", 'LR', 1);
$this->imprimer_description("Forme du don : ", "Autre");
$this->Cell(0, 3, "", 'LR', 1);
$this->imprimer_description("Nature du don : ", "Numéraire");
$this->Cell(0, 3, "", 'LR', 1);
$this->imprimer_description("Mode de versement : ", "chèque et/ou virement");
$this->Cell(0, 0, "", 'LRB', 1);
// cartouche final
$this->Ln(10);
$this->Cell(0, 6, "", 'LRT', 1);
$this->Cell(0, 6, "Rennes le " . date("j/m/Y"), 'LR', 1, 'R');
$this->Cell(0, 36, "", 'LR', 1);
$this->Cell(0, 0, "", 'LBR', 1);
$this->SetXY(100, 220);
$this->Image($this->signature, null, null, 50);
}
} // class RecusPDF

180
lib/Services.php Normal file
View file

@ -0,0 +1,180 @@
<?php
namespace Garradin\Plugin\RecusFiscaux;
use Garradin\DB;
class Services
{
/**
* @return liste des activités
*/
public static function getActivites()
{
return DB::getInstance()->get(
"SELECT
id,
label,
description
FROM services
ORDER BY label"
);
}
/**
* @return liste des tarifs d'une activité
* @param $activite : identifiant de l'activité
*/
public static function getTarifs($activite)
{
return DB::getInstance()->get(
"SELECT
services_fees.id as idTarif,
services_fees.label as titreTarif,
services_fees.description as descTarif,
printf(\"%.2f\", services_fees.amount/100) as montantTarif
FROM services_fees
WHERE services_fees.id_service = ?",
$activite
);
}
/**
* @return liste de toutes les activités et tarifs
*/
public static function getActivitesEtTarifs()
{
return DB::getInstance()->get(
"SELECT
services.id as idService,
services.label as titreService,
services.description as descService,
services_fees.id as idTarif,
services_fees.label as titreTarif,
services_fees.description as descTarif
FROM services
LEFT JOIN services_fees ON services_fees.id_service = services.id
ORDER BY services.id, services_fees.id"
);
}
/**
* @return liste de toutes les activités, tarifs et comptes associés
*/
public static function getActivitesTarifsEtComptes()
{
return DB::getInstance()->get(
"SELECT
services.id as Id,
services.label,
services.description as descService,
services_fees.label as tarif,
services_fees.description as descTarif,
acc_accounts.code as numero_cpt,
acc_accounts.label as nom_cpt
FROM services
LEFT JOIN services_fees ON services_fees.id_service = services.id
LEFT JOIN acc_accounts ON services_fees.id_account = acc_accounts.id
ORDER BY services.label"
);
}
/**
* @return tous les versements de l'année
* @param $annee
*/
public static function getTousLesVersements($annee)
{
$sql =
"SELECT
services.id as idActivite,
services_fees.id as idTarif,
services.label as activite,
services_fees.label as tarif,
printf(\"%8.2f\", services_fees.amount/100) as montant,
acc_transactions_users.id_user as idUser,
printf(\"%8.2f\", acc_transactions_lines.credit/100) as versement,
membres.id as idMembre,
membres.nom as nom,
membres.adresse as adresse,
membres.ville as ville,
membres.code_postal as codePostal,
membres.email as courriel,
acc_transactions.date as Date,
acc_transactions_users.id_transaction as idTrans
FROM acc_transactions_users
INNER JOIN membres on acc_transactions_users.id_user = membres.id
INNER JOIN acc_transactions on acc_transactions_users.id_transaction = acc_transactions.id
INNER JOIN services_users on acc_transactions_users.id_service_user = services_users.id
INNER JOIN services on services_users.id_service = services.id
INNER JOIN services_fees on services_users.id_fee = services_fees.id
INNER JOIN acc_transactions_lines on acc_transactions_lines.id_transaction = acc_transactions.id
WHERE
(strftime(\"%Y\", acc_transactions.date) = ?
AND
acc_transactions_lines.credit > 0)
ORDER by services.id, services_fees.id, membres.nom, acc_transactions.date";
return DB::getInstance()->get($sql, $annee);
}
/**
* @return versements d'une année pour une activité et un tarif donnés
* @param $annee
* @param $activite
* @param $tarif
*/
public static function getVersementsActivite($annee, $activite, $tarif)
{
$sql =
"SELECT
services.id as idActivite,
services_fees.id as idTarif,
services.label as activite,
services_fees.label as tarif,
printf(\"%8.2f\", services_fees.amount/100) as montant,
acc_transactions_users.id_user as idUser,
printf(\"%8.2f\", acc_transactions_lines.credit/100) as versement,
membres.nom as nom,
acc_transactions.date as Date,
acc_transactions_users.id_transaction as idTrans
FROM acc_transactions_users
INNER JOIN membres on acc_transactions_users.id_user = membres.id
INNER JOIN acc_transactions on acc_transactions_users.id_transaction = acc_transactions.id
INNER JOIN services_users on acc_transactions_users.id_service_user = services_users.id
INNER JOIN services on services_users.id_service = services.id
INNER JOIN services_fees on services_users.id_fee = services_fees.id
INNER JOIN acc_transactions_lines on acc_transactions_lines.id_transaction = acc_transactions.id
WHERE
(strftime(\"%Y\", acc_transactions.date) = ?
AND
services.id = ?
AND
services_fees.id = ?
AND
acc_transactions_lines.credit > 0)
ORDER by membres.nom, acc_transactions.date";
return DB::getInstance()->get($sql, $annee, $activite, $tarif);
}
/**
* @return nom de l'association
*/
public static function getNomAsso() {
return DB::getInstance()->get(
"SELECT value
FROM config
WHERE key = 'nom_asso'"
)[0]->value;
}
/**
* @return adresse de l'association
*/
public static function getAdresseAsso() {
return DB::getInstance()->get(
"SELECT value
FROM config
WHERE key = 'adresse_asso'"
)[0]->value;
}
}

20
lib/Versement.php Normal file
View file

@ -0,0 +1,20 @@
<?php
namespace Garradin\Plugin\RecusFiscaux;
class Versement
{
public $idActivite;
public $idTarif;
public $montant;
public function __construct(
$idActivite,
$idTarif,
$montant
) {
$this->idActivite = $idActivite;
$this->idTarif = $idTarif;
$this->montant = $montant;
}
}