{% extends "ui/templates/base/layout.html" %} {% block content %}

Fee Structure

Client-wise billing packages with multiple services grouped for future invoice generation.

{% for row in rows %} {% else %} {% endfor %}
Group Code Client Package Mode Frequency Fee Services
{{ row.group_code }} {{ row.client.client_name if row.client else row.client_id }} {{ row.group_name }} {{ row.billing_mode }} {{ row.frequency }} ₹ {{ '%.2f'|format(row.fee_amount or 0) }} {% for item in row.services %}
{{ item.service.service_code if item.service else item.service_id }} - {{ item.line_description or (item.service.service_name if item.service else '') }}
{% else %} No services mapped {% endfor %}
No fee structures found.
{% endblock %}