{{ p.name }} |
Type: {{ (p.item_type or "product")|title }} |
Selling: {{ currency_symbol }}{{ "%.2f"|format(p.price or 0) }} |
Buying: {{ currency_symbol }}{{ "%.2f"|format(p.buying_price or 0) }} |
Stock: {{ p.stock }}
Fund source:
{% if item.fund_breakdown %}
{% for fund in item.fund_breakdown %}
{{ fund.fund_source|title }}: {{ fund.quantity }} unit(s) at {{ currency_symbol }}{{ "%.2f"|format(fund.buying_price or 0) }}
{% endfor %}
{% else %}
{{ (p.fund_source or "business")|title }}
{% endif %}