{% extends 'base.html' %} {% load subscription_tags %} {% block title %}{{ form.instance.pk|yesno:"Edit,New" }} Product - POS{% endblock %} {% block content %}

{% if form.instance.pk %} Edit Product: {{ form.instance.name }} {% else %} New Product {% endif %}

Back to List
{% csrf_token %} {% if form.errors %} {% endif %}
Basic Information
{{ form.sku }} Stock Keeping Unit - unique code
{{ form.barcode }} Optional barcode for scanning
{{ form.name }}
{{ form.name_bm }}
{{ form.description }}
{{ form.category }}
{{ form.product_type }}
Pricing
{{ form.cost_price }} Your purchase/production cost
{{ form.selling_price }} Price to customer
{% if form.instance.pk %}
Profit Margin: {{ form.instance.get_profit_margin|floatformat:2 }}%
{% endif %}
Inventory
{{ form.track_inventory }} Uncheck for services or non-tracked items
{{ form.current_stock }}
{{ form.reorder_level }} Alert when stock below this
{{ form.unit_of_measure }} e.g., pcs, kg, litre
Tax & Accounting
{{ form.include_sst }}
{{ form.income_account }} Account for revenue recognition
{{ form.is_active }} Inactive products won't appear in sales
Cancel
{% endblock %}