TovaHasi commited on
Commit
2a78576
1 Parent(s): a8d1ee8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -101,7 +101,7 @@ def get_revenue(idx):
101
  def get_costs(idx):
102
  indexation = math.floor(idx / 12)
103
 
104
- wage_fund_with_indexation = math.pow((Social_benefits_for_one_employee + Monthly_salary_rate), indexation)
105
 
106
  if genre == 'Покупка автоматизированного ричтрака':
107
  Expected_repair_costs_per_month = Number_machines * Equipment_breakdown_rate * The_cost_of_repairing_one_car
 
101
  def get_costs(idx):
102
  indexation = math.floor(idx / 12)
103
 
104
+ wage_fund_with_indexation = (Social_benefits_for_one_employee + Monthly_salary_rate) * math.pow(Rate_CPI, indexation)
105
 
106
  if genre == 'Покупка автоматизированного ричтрака':
107
  Expected_repair_costs_per_month = Number_machines * Equipment_breakdown_rate * The_cost_of_repairing_one_car