| {{ _('Description') }} | {{ _('Quantity') }} | {{ _('Unit Price') }} | {{ _('Total Amount') }} |
|---|---|---|---|
| {% if item.display_name %}{{ item.display_name|e }}{% if item.description and item.description != item.display_name and item.description != '-' %} — {{ item.description|e }}{% endif %}{% else %}{{ item.description|e }}{% endif %} {% if item.line_kind == 'expense' and item.category %} ({{ item.category|e }}){% endif %} {% if item.line_kind == 'good' and item.sku %} [{{ _('SKU') }}: {{ item.sku|e }}]{% endif %} | {{ '%.2f' % item.quantity }} {% if item.unit %}{{ item.unit }}{% endif %} | {{ format_money(item.unit_price) }} | {{ format_money(item.total_amount) }} |
| {{ _('Subtotal:') }} | {{ format_money(quote.subtotal) }} | ||
| {{ _('Discount') }} {% if quote.discount_type == 'percentage' %} ({{ "%.2f"|format(quote.discount_amount) }}%) {% endif %} {% if quote.coupon_code %} - {{ quote.coupon_code }} {% endif %} | -{{ format_money(quote.discount_value) }} | ||
| {{ _('Subtotal After Discount:') }} | {{ format_money(quote.subtotal_after_discount) }} | ||
| {{ _('Tax (%(rate).2f%%):', rate=quote.tax_rate) }} | {{ format_money(quote.tax_amount) }} | ||
| {{ _('Total Amount:') }} | {{ format_money(quote.total_amount) }} | ||
{{ quote.description|e }}
{{ quote.terms|e }}