
The “Heating/Water Billing” shows the billing details based on Heating Meaters, Heating Cost Allocators, and Water Meters.
User can select the “Group”.
It shows the Company Billing Setup. User can update if the User Permission is allowed.
It shows the selected Group Billing Setup. User can update if the permission is allowed.
It shows the Meters:
User can create/update/delete meters if the permission is allowed.

User can change the Billing Date (Year and Month), and it shows the Meter’s consumption (Power Consumption, Consumption Units, Water Consumption) in Period.
It’s also updated the annual billing for selected Group by Billing Date.

Case 1. Heating Cost Calculation (Use Heating Meters)
power_consumption_i)company_power_consumption) and Group (group_power_consumption) *shared_variable_cost) and fixed cost (shared_fixed_cost) are calculated:total_variable_cost = company_annual_cost * variable_percent / 100
total_fixed_cost = company_annual_cost * fixed_percent / 100
shared_variable_cost = total_variable_cost * group_power_consumption / company_power_consumption
shared_fixed_cost = total_fixed_cost * group_area / company_area
group_heating_cost) is calculated:group_heating_cost = shared_variable_cost + shared_fixed_cost
<aside>
group_power_consumption if the Heating Meter is to heat water. We will use it for Case 3 - Heating Water Cost Calculation</aside>