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

Income Details

{% if income.isAutoGenerated %} Auto-Generated {% endif %} {% if income.isReconciled %} Reconciled {% endif %}

Reference Number

{{ income.referenceNumber }}

Date

{{ income.incomeDate|date('d M Y') }}

Description

{{ income.description }}

Category

{{ income.category.name }}

Account

{{ income.account.name }}

{% if income.customer %}

Customer

{{ income.customer.name }}

{% endif %} {% if income.relatedInvoice %} {% endif %} {% if income.notes %}

Notes

{{ income.notes }}

{% endif %}

Amount

{{ income.formattedAmount }}

{% if income.isForeignCurrency %}

TZS Equivalent: {{ income.formattedAmountInTzs }}

Exchange rate: {{ income.exchangeRate }}

{% endif %}

Currency

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

Audit Info

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