summaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorRomain Gonçalves <me@rgoncalves.se>2024-07-09 10:04:00 +0200
committerRomain Gonçalves <me@rgoncalves.se>2024-07-09 10:07:47 +0200
commit28d5c1c212a06d599160f96cbe0e6c88840ab367 (patch)
treee3504a070c0b212c93db5251c54b324c3ff39380 /contrib
downloadinvoiceg-28d5c1c212a06d599160f96cbe0e6c88840ab367.tar.gz
inittrunk
Diffstat (limited to 'contrib')
-rw-r--r--contrib/Makefile5
-rw-r--r--contrib/invoice-01.md28
-rw-r--r--contrib/metadata.yml13
-rw-r--r--contrib/template.html204
4 files changed, 250 insertions, 0 deletions
diff --git a/contrib/Makefile b/contrib/Makefile
new file mode 100644
index 0000000..e04d380
--- /dev/null
+++ b/contrib/Makefile
@@ -0,0 +1,5 @@
+invoice-01.pdf: invoice-01.md
+ pandoc -s -t html --template template.html --metadata-file metadata.yml $^ | tee invoice-01.html | weasyprint - $@
+
+clean:
+ - rm invoice-01.pdf invoice-01.html
diff --git a/contrib/invoice-01.md b/contrib/invoice-01.md
new file mode 100644
index 0000000..74705ae
--- /dev/null
+++ b/contrib/invoice-01.md
@@ -0,0 +1,28 @@
+---
+number: "0001"
+date: 2024-07-08
+due_date: 2024-08-01
+
+notes: ":3"
+
+currency: EUR
+
+client:
+ name: Example
+ address: Ex Ample, Elpam Xe
+ email: hello@example.org
+
+services:
+ - name: Programming
+ comment: Lorem ipsum
+ rate: 1
+ qty: 1
+ sum: 1
+
+ - name: System administration
+ rate: 2.5
+ qty: 10
+ sum: 25
+
+total: 26
+---
diff --git a/contrib/metadata.yml b/contrib/metadata.yml
new file mode 100644
index 0000000..61a633c
--- /dev/null
+++ b/contrib/metadata.yml
@@ -0,0 +1,13 @@
+---
+
+author:
+ name: John Smith
+ address: 123 Sesame St, Cloud, Earth
+ email: john@smi.th
+ website: https://smi.th
+ phone: "+101010101"
+
+bank:
+ name: ABC
+ iban: 2323232323
+ swift: LLLLLLXXX
diff --git a/contrib/template.html b/contrib/template.html
new file mode 100644
index 0000000..458af62
--- /dev/null
+++ b/contrib/template.html
@@ -0,0 +1,204 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <meta charset="utf-8"/>
+ <style>
+ * {
+ margin: 0;
+ padding: 0;
+ font-family: monospace, monospace;
+ font-size: 14px;
+ color: #111;
+ }
+
+ @page {
+ size: A4 portrait;
+ margin: 16mm;
+ }
+
+ h1, h2, h3 {
+ margin: 0;
+ color: #444;
+ }
+
+ h2 {
+ font-size: 1.2em;
+ }
+
+ ul li {
+ list-style: none;
+ }
+
+ a, a:visited {
+ color: #000;
+ }
+
+ article {
+ margin-top: 2em;
+ margin-bottom: 2em;
+ }
+
+ header article {
+ margin: 0;
+ }
+
+ header {
+ display: flex;
+ }
+
+ footer {
+ position: fixed;
+ bottom: 0;
+ width: 100%;
+ }
+
+ table * {
+ vertical-align: top;
+ }
+
+ p.comment {
+ color: #444;
+ margin-left: .5em;
+ }
+
+ #services table {
+ border-collapse: collapse;
+ margin: 2em 0 2em 0;
+ }
+
+ #services table tr th:last-child,
+ #services table tr td:last-child {
+ text-align: right;
+ }
+
+ #services table thead tr th:first-child {
+ width: 60%;
+ }
+
+ #services table tfoot, table thead {
+ border-bottom: solid 1px black;
+ }
+
+ #services table tfoot {
+ border-top: solid 1px black;
+ }
+
+ #services table tfoot td {
+ font-weight: 700;
+ }
+
+ #services table {
+ width: 100%;
+ }
+
+ #author {
+ width: 60%;
+ }
+
+ #header-title h2 {
+ width: 60%;
+ }
+
+ #bank table {
+ width: 50%;
+ }
+
+ #metadata {
+ width: 40%;
+ }
+
+ #metadata table {
+ width: 100%;
+ }
+
+ </style>
+</head>
+
+<body>
+
+ <header>
+ <article id="author">
+ <h2>Invoice from</h2>
+ <ul>
+ <li>${ author.name }</li>
+ <li>${ author.address }</li>
+ <li><a href="${ author.website }">${ author.website }</a></li>
+ <li><a href="mailto:${ author.email }">${ author.email }</a></li>
+ <li><a href="tel:${ author.phone }">${ author.phone }</a></li>
+ </ul>
+ </article>
+
+ <article id="metadata">
+ <table>
+ <tr><td><h2>Invoice</h2></td><td> #${ number }</td></tr>
+ <tr><td>issued at:</td><td> ${ date }</td></tr>
+ <tr><td>due at:</td><td> ${ due_date }</td></tr>
+ </table>
+ </article>
+ </header>
+
+ <section>
+ <article id="client">
+ <h2>Invoice for</h2>
+ <ul>
+ <li>${ client.name }</li>
+ <li>${ client.address }</li>
+ <li>${ client.email }</li>
+ </ul>
+ </article>
+ ${ if(notes) }
+ <article id="notes">
+ <p>${ notes }</p>
+ </article>
+ ${ endif }
+ </section>
+
+ <section>
+ <article id="services">
+ <table>
+ <thead>
+ <tr>
+ <th>Description</th>
+ <th>Rate</th>
+ <th>Quantity</th>
+ <th>Amount</th>
+ </tr>
+ </thead>
+ <tbody>
+ ${ for(services) }
+ <tr>
+ <td>
+ ${ it.name }
+ ${ if(it.comment) }
+ <p class="comment">${ it.comment }</p>
+ ${ endif }
+ </td>
+ <td>${ it.rate }</td>
+ <td>${ it.qty }</td>
+ <td>${ it.sum }</td>
+ </tr>
+ ${ endfor }
+ </tbody>
+ <tfoot>
+ <tr>
+ <td colspan="3">Total in ${ currency }</td>
+ <td>${ total }</td>
+ </tr>
+ </tfoot>
+ </table>
+ </article>
+ </section>
+
+ <footer>
+ <hr>
+ <article id="bank">
+ <h2>Bank details</h2>
+ <table>
+ <tr><td>name:</td><td> ${ bank.name }</td></tr>
+ <tr><td>SWIFT:</td><td> ${ bank.swift }</td></tr>
+ <tr><td>IBAN:</td><td> ${ bank.iban }</td></tr>
+ </table>
+ </article>
+ </footer>
+</body>
+</html>
remember that computers suck.