recusfiscaux/templates/recu.skel
engel 24f489db3f Ajustement feuille de style reçus pour impression
FossilOrigin-Name: 458e766460451c3e96aa43e61551c73fc81bd59a2306490ea3200f467d99b305
2023-01-28 13:01:51 +00:00

173 lines
5.1 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
{
}
#logo
{
max-height : 4cm;
}
#titre
{
margin : 0 2.5cm 0 2.5cm;
text-align : center;
font-size : 14pt;
font-weight: bold;
}
#articles
{
margin : 0 2.5cm 0.5cm 2.5cm;
text-align : center;
}
#numRecu
{
text-align : right;
margin-right: 1em;
}
#beneficiaire, #donateur
{
}
#beneficiaire, #donateur, #versements, #final
{
}
#beneficiaire > h3
{
}
#donateur > h3
{
}
#versements
{
border-top: 1px solid rgb(0, 0, 128);
border-bottom: 1px solid rgb(0, 0, 128);
}
.rubrique
{
background-color : rgb(200, 200, 250);
padding : 0 0 0 1mm;
}
.titre, .important
{
font-weight:bold;
}
.libelle
{
font-weight: normal;
}
#ville
{
margin-bottom: 0;
}
#signature
{
display: block;
max-width : 7cm;
max-height : 4cm;
margin: 0 auto;
padding-bottom : 2mm;
}
#final
{
page-break-after: auto;
}
/*
@media print
{
div#imprimer {
display:none;
}
}
*/
</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 {{$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}}
{{if $courriel != ""}}
<br />courriel : <a href="mailto:{{$courriel}}">{{$courriel}}</a>
{{/if}}
</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 $cents != ""}}
(<b>{{$euros}} euros et {{$cents}} cents</b>)
{{else}}
(<b>{{$euros}} euros</b>)
{{/if}}
{{if $libelle != ""}}
({{$libelle}})
{{/if}}
<br />date des versements :
{{if $dateMin == $dateMax}}
le {{$dateMin}}
{{else}}
du {{$dateMin}} au {{$dateMax}}
{{/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 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 id="ville">{{$ville_asso}} le {{$date}}
<img id="signature" src="{{$signature}}" />
</p>
<div>
<span id="nom">{{$nom_responsable}}</span><br />
<span id="fonction">{{$fonction_responsable}}</span>
</div>
</div>
</body>
</html>