{% extends 'admin/layout.html.twig' %} {% block title %}Receipt {{ receipt.receiptNumber }} - KitscoApp{% endblock %} {% block page_title %}Stock Receipt{% endblock %} {% block content %}
Back to Receipts

{{ receipt.receiptNumber }}

Created {{ receipt.createdAt|date('d/m/Y H:i') }} by {{ receipt.createdBy.fullName ?? receipt.createdBy.email }}

{# Product & Supplier Info #}

Product

{{ receipt.product.name }}

{% if receipt.product.sku %}

SKU: {{ receipt.product.sku }}

{% endif %}

Supplier

{% if receipt.supplier %}

{{ receipt.supplier.name }}

{% if receipt.supplier.contactPerson %}

{{ receipt.supplier.contactPerson }}

{% endif %} {% else %}

No supplier specified

{% endif %}
{# Quantity & Date #}

Quantity Received

+{{ receipt.quantity }}

Purchase Date

{{ receipt.purchaseDate|date('d/m/Y') }}

{# Cost Breakdown #}

Cost Breakdown

Purchase Cost
{{ receipt.purchaseCostInTzs|money }} {% if receipt.purchaseCostCurrency %}
({{ receipt.purchaseCostCurrency.code }} {{ receipt.purchaseCost|money }} @ {{ receipt.purchaseCostExchangeRate|money }})
{% endif %}
{% if receipt.shippingCost %}
Shipping/Transport
{{ receipt.shippingCostInTzs|money }} {% if receipt.shippingCostCurrency %}
({{ receipt.shippingCostCurrency.code }} {{ receipt.shippingCost|money }} @ {{ receipt.shippingCostExchangeRate|money }})
{% endif %}
{% endif %} {% if receipt.customsCost %}
Customs/Import Taxes
{{ receipt.customsCostInTzs|money }} {% if receipt.customsCostCurrency %}
({{ receipt.customsCostCurrency.code }} {{ receipt.customsCost|money }} @ {{ receipt.customsCostExchangeRate|money }})
{% endif %}
{% endif %} {% if receipt.otherCosts and receipt.otherCosts|length > 0 %}
Other Costs ({{ receipt.otherCosts|length }}) {{ receipt.otherCostsTotal|money }} TZS
{% for cost in receipt.otherCosts %}
{{ cost.description }}
{% if cost.currencyCode and cost.currencyCode != 'TZS' and cost.exchangeRate %} {{ (cost.amount * cost.exchangeRate)|money }}
({{ cost.currencyCode }} {{ cost.amount|money }} @ {{ cost.exchangeRate|money }})
{% else %} {{ cost.amount|money }} {% endif %}
{% endfor %}
{% endif %}
Total Cost (TZS) {{ receipt.totalCost|money }}
{# Landed Cost #}

Landed Cost Per Unit

Total Cost / Quantity = {{ receipt.totalCost|money }} / {{ receipt.quantity }}

{{ receipt.landedCostPerUnit|money }} TZS

{# Notes #} {% if receipt.notes %}

Notes

{{ receipt.notes }}

{% endif %} {# Documents #} {% if receipt.documents and receipt.documents|length > 0 %} {% endif %} {# Actions #}
{% endblock %}