---
name: standard-invoice
title: Facture
description: Modèle de facture commerciale standard
category: invoices
locale: fr
layout: invoice
outputFormat: pdf
pageSize: A4
orientation: portrait
metadata:
  author: Plyaz Storage Package
  subject: Facture
---

## Facturer à

<div class="customer-info">
  <p><strong>{{customerName}}</strong></p>
  {{#if customerCompany}}<p>{{customerCompany}}</p>{{/if}}
  {{#if customerAddress}}<p>{{customerAddress}}</p>{{/if}}
  {{#if customerCity}}<p>{{customerCity}}, {{customerState}} {{customerZip}}</p>{{/if}}
  {{#if customerEmail}}<p>Email: {{customerEmail}}</p>{{/if}}
  {{#if customerPhone}}<p>Téléphone: {{customerPhone}}</p>{{/if}}
</div>

---

## Articles

| Description | Quantité | Prix unitaire | Montant |
|-------------|----------|---------------|---------|
{{#each items}}
| {{description}} | {{quantity}} | {{formatCurrency unitPrice}} | {{formatCurrency (multiply quantity unitPrice)}} |
{{/each}}

---

## Récapitulatif

<div class="totals">
  <div class="totals-box">
    <div class="totals-row">
      <span>Sous-total:</span>
      <span>{{formatCurrency (invoiceTotal items taxRate discountPercent shippingCost "subtotal")}}</span>
    </div>
    {{#if discountPercent}}
    <div class="totals-row">
      <span>Remise ({{discountPercent}}%):</span>
      <span>-{{formatCurrency (invoiceTotal items taxRate discountPercent shippingCost "discount")}}</span>
    </div>
    {{/if}}
    {{#if taxRate}}
    <div class="totals-row">
      <span>TVA ({{taxRate}}%):</span>
      <span>{{formatCurrency (invoiceTotal items taxRate discountPercent shippingCost "tax")}}</span>
    </div>
    {{/if}}
    {{#if shippingCost}}
    <div class="totals-row">
      <span>Frais de port:</span>
      <span>{{formatCurrency shippingCost}}</span>
    </div>
    {{/if}}
    <div class="totals-row total">
      <span><strong>Total dû:</strong></span>
      <span><strong>{{formatCurrency (invoiceTotal items taxRate discountPercent shippingCost "total")}}</strong></span>
    </div>
  </div>
</div>

---

{{#if notes}}
## Notes

{{notes}}
{{/if}}
