Génération reçus avec squelette brindille
FossilOrigin-Name: d9f628dbf847efbfe4cbd9fbaf67a88c50375b0edafd9e7fe4259eb0d03e0230
This commit is contained in:
parent
5033a3bce6
commit
8bde972727
4 changed files with 243 additions and 311 deletions
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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue