{% extends 'admin/layout.html.twig' %} {% block title %}Expense {{ expense.referenceNumber }} - KitscoApp{% endblock %} {% block page_title %}Expense {{ expense.referenceNumber }}{% endblock %} {% block content %}
Back to Expenses
Edit

Expense Details

{% if expense.isReconciled %} Reconciled {% endif %}

Reference Number

{{ expense.referenceNumber }}

Date

{{ expense.expenseDate|date('d M Y') }}

Description

{{ expense.description }}

Category

{{ expense.category.fullName }}

Account

{{ expense.account.name }}

{% if expense.supplier %}

Supplier

{{ expense.supplier.name }}

{% endif %} {% if expense.relatedStockReceipt %}

Related Stock Receipt

{{ expense.relatedStockReceipt.receiptNumber }}

{% endif %} {% if expense.notes %}

Notes

{{ expense.notes }}

{% endif %}

Amount

{{ expense.formattedAmount }}

{% if expense.isForeignCurrency %}

TZS Equivalent: {{ expense.formattedAmountInTzs }}

Exchange rate: {{ expense.exchangeRate }}

{% endif %}

Currency

{{ expense.currency.code }} ({{ expense.currency.symbol }})

{% if expense.receiptPath %} {% endif %}

Audit Info

Created by: {{ expense.createdBy.fullName }}
Created: {{ expense.createdAt|date('d M Y H:i') }}
Updated: {{ expense.updatedAt|date('d M Y H:i') }}
{% endblock %}