Warning!
You are about to permanently delete this expense. This action cannot be undone.
The following information will be permanently removed:
- Expense details and items
- Associated attachments and files
- Audit history and activity logs
- Reference:
- {{ object.reference }}
- Date:
- {{ object.date|date:"M d, Y" }}
- Category:
- {{ object.category }}
- Status:
-
{{ object.get_status_display }}
- Total Amount:
- ${{ object.total_amount|floatformat:2|intcomma }}
- Items:
- {{ object.items.count }}
{% if object.description %}
Description:
{{ object.description|linebreaksbr }}
{% endif %}
| # |
Description |
Qty |
Unit Price |
Amount |
{% for item in object.items.all %}
| {{ forloop.counter }} |
{{ item.description }} |
{{ item.quantity|floatformat:2|intcomma }} {{ item.unit|default:'' }} |
${{ item.unit_price|floatformat:2|intcomma }} |
${{ item.amount|floatformat:2|intcomma }} |
{% empty %}
| No items found |
{% endfor %}
{% if object.attachments.exists %}
Note: This expense has {{ object.attachments.count }} attachment(s) that will also be deleted.
{% endif %}