{% extends 'base.html' %} {% block title %}{{ product.name }}{% endblock %} {% block content %}

{{ product.name }}

📦 Adjust Stock ✏ Edit
Current Stock
{{ product.stock_quantity }}
{{ product.get_unit_display }}
Cost Price
{{ business.currency }} {{ product.cost_price|floatformat:0 }}
Per {{ product.get_unit_display }}
Selling Price
{{ business.currency }} {{ product.selling_price|floatformat:0 }}
Stock value: {{ business.currency }} {{ product.stock_value|floatformat:0 }}

Stock History

{% if scoped_branch %}

Showing movements for branch: {{ scoped_branch.name }}

{% endif %} {% for move in movements %} {% empty %} {% endfor %}
TypeQtyReferenceNoteDateBy
{{ move.get_movement_type_display }} {{ move.quantity }} {{ move.reference|default:"—" }} {{ move.note|default:"—" }} {{ move.date|date:"d M Y" }} {{ move.created_by.username|default:"—" }}
No movements yet
{% endblock %}