{% extends 'pos_system/base.html' %}
{% load static %}
{% block content %}
Product Sale Report
| Description |
Date |
Total |
Paid |
Invoice Id |
Entity Id |
Product |
Price |
Qty |
Product Total |
{% for invoices in data %}
| {{invoices.des}} |
{% for details in invoices.detail %}
{% for detail in details.list %}
|
{{detail.invoice.created_at}} |
{{detail.invoice.total}} |
{{detail.invoice.paid}} |
{{detail.invoice.id}} |
{{detail.invoice.customer.id}} |
{{detail.product.name}} |
{{detail.amount}} |
{{detail.qty}} |
{{detail.total}} |
{% endfor %}
| Total for this product |
{{details.total}} |
{% endfor %}
{% endfor %}
{% endblock %}