---
name: purchase-receipt
title: Reçu
description: Reçu d'achat pour transactions de vente au détail
category: receipts
locale: fr
layout: receipt
outputFormat: pdf
pageSize: A4
orientation: portrait
metadata:
  author: Plyaz Storage Package
  subject: Reçu
---

## Articles achetés

| Article | Prix |
|---------|------|
{{#each items}}
| {{name}} {{#if quantity}}x{{quantity}}{{/if}} | {{formatCurrency price}} |
{{/each}}

---

<div class="totals">
  <div class="totals-row">
    <span>Sous-total:</span>
    <span>{{formatCurrency (receiptTotal items taxRate discount "subtotal")}}</span>
  </div>
  {{#if taxRate}}
  <div class="totals-row">
    <span>TVA ({{taxRate}}%):</span>
    <span>{{formatCurrency (receiptTotal items taxRate discount "tax")}}</span>
  </div>
  {{/if}}
  {{#if discount}}
  <div class="totals-row">
    <span>Remise:</span>
    <span>-{{formatCurrency discount}}</span>
  </div>
  {{/if}}
  <div class="totals-row total">
    <span><strong>TOTAL:</strong></span>
    <span><strong>{{formatCurrency (receiptTotal items taxRate discount "total")}}</strong></span>
  </div>
</div>

---

{{#if paymentMethod}}
**Mode de paiement:** {{paymentMethod}}
{{/if}}

{{#if changeGiven}}
**Espèces reçues:** {{formatCurrency cashTendered}}
**Monnaie rendue:** {{formatCurrency changeGiven}}
{{/if}}
