Compta et factures

This commit is contained in:
Guillaume Ayoub 2019-07-04 17:41:12 +02:00
parent 02abbd33dc
commit 282329ce12
6 changed files with 122 additions and 4 deletions

View File

@ -79,3 +79,29 @@
2019/06/12 160.00€ Transfer Cotisation X
2019/06/12 42.00€ Transfer Don X
2019/06/18 -41.98€ Order Hébergement X
Dédibox
2019/06/25 -10.20€ Order Banque X
2019/06/25 50.00€ Transfer PyConFr19 X
Mergify
2019/06/27 -47.00€ Transfer Meetup X
JP
-- Juillet
2019/07/01 1000.00€ Transfer PyConFr19 X
Logilab
2019/07/01 600.00€ Transfer Don X
Logilab
2019/07/01 200.00€ Transfer PyConFr19 X
OctopusMind
2019/07/02 2000.00€ Transfer PyConFr19 X
Clever Cloud

View File

@ -0,0 +1,11 @@
{% extends '_layout.jinja2' %}
{% set lines = [
['Soutien financier « Argent » à PyConFr 2019', 1000, 1],
] %}
{% block address_to %}
Entr'ouvert SCOP
169 rue du Château
75014 Paris
{% endblock address_to %}

BIN
factures/2019/1200.pdf Normal file

Binary file not shown.

View File

@ -0,0 +1,79 @@
{% set lines = [
['Don', 600, 1],
] %}
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8"/>
<title>AFPy Attestation de don</title>
<link type="text/css" rel="stylesheet" href="../commun/style.css" />
</head>
<body>
<header>
<address id="from">
{%- block address_from -%}
Association Francophone Python
2, rue Professeur Zimmermann
69007 LYON
FRANCE
504 398 355 00017
{%- endblock address_from -%}
</address>
<address id="to">
{%- block address_to -%}
Logilab
104 boulevard Louis-Auguste Blanqui
75013 Paris
{%- endblock address_to -%}
</address>
</header>
{% block content %}
<dl>
<dt>Objet</dt>
<dd>Attestation de don</dd>
<dt>Date</dt>
<dd>{{ date }}</dd>
</dl>
<table>
{% set total = [0] %}
{% for designation, price, quantity in lines %}
{% if loop.first %}
<thead>
<th>Désignation</th>
<th>Prix unitaire</th>
<th>Quantité</th>
<th>Total</th>
</thead>
<tbody>
{% endif %}
<tr>
<td>{{ designation }}</td>
<td>{{ price }} €</td>
<td>{{ quantity }}</td>
<td>{{ quantity * price }} €</td>
</tr>
{{ total.append(quantity * price) or '' }}
{% if loop.last %}
</tbody>
<tfoot>
<th colspan="3">Total</th>
<td>{{ total | sum }} €</td>
</tfoot>
{% endif %}
{% endfor %}
</table>
<footer>
<p>
Taxe sur la valeur ajoutée non applicable.
</p>
</footer>
{% endblock content %}
</body>
</html>

Binary file not shown.

View File

@ -6,15 +6,17 @@ Suivi de la facturation des sponsors PyCon 2019
+------------------------------------+-----------------------------+---------------------+---------------------+---------------------+
| Sponsor potentiel | Statut | Niveau | Numéro de facture | Montant |
+====================================+=============================+=====================+=====================+=====================+
| Python Software Foundation | En attente de réglement | Partenaire | 1195 | ≈ 4700 |
| Python Software Foundation | Payé | Partenaire | 1195 | ≈ 4700 |
+------------------------------------+-----------------------------+---------------------+---------------------+---------------------+
| Clever Cloud | En attente de réglement | Or | 1196 | 2000 |
| Clever Cloud | Payé | Or | 1196 | 2000 |
+------------------------------------+-----------------------------+---------------------+---------------------+---------------------+
| Mergify.io | Payé | Cœur | 1197 | 50 |
+------------------------------------+-----------------------------+---------------------+---------------------+---------------------+
| Logilab | En attente de réglement | Argent | 1198 | 1000 |
| Logilab | Payé | Argent | 1198 | 1000 |
+------------------------------------+-----------------------------+---------------------+---------------------+---------------------+
| OctopusMind | En attente de réglement | Cœur | 1199 | 200 |
| OctopusMind | Payé | Cœur | 1199 | 200 |
+------------------------------------+-----------------------------+---------------------+---------------------+---------------------+
| Entr'ouvert | En attente de réglement | Argent | 1200 | 1000 |
+------------------------------------+-----------------------------+---------------------+---------------------+---------------------+
| Algoo | En attente de contact | | | |
+------------------------------------+-----------------------------+---------------------+---------------------+---------------------+