recusfiscaux/templates/recu.skel
engel 4eb8b7c61d gestion date début et fin versements
FossilOrigin-Name: 323bbe3ae892ca099aac2f897e592b35b7224c22ce25bd813e9a11dca0cf9f19
2022-05-20 19:43:38 +00:00

148 lines
4.6 KiB
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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}}
<br />date des versements :
{{if $dateMin == $dateMax}}
le {{$dateMin}}
{{else}}
du {{$dateMin}} au {{$dateMax}}
{{/if}}
</li>
<br />
{{/versements}}
</ul>
{{#informations}}
<p><span class="titre">{{$titre}}</span><span class="libelle"> {{$libelle}}</span></p>
{{/informations}}
<p>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 {{$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>