From a77bc836c8ccf91580c1bd25b159479d75763127 Mon Sep 17 00:00:00 2001 From: Pawan Kumar Date: Mon, 4 Jan 2021 19:02:52 +0530 Subject: [PATCH] made field changes --- cor_custom/models/project.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/cor_custom/models/project.py b/cor_custom/models/project.py index 591bae7..22170af 100755 --- a/cor_custom/models/project.py +++ b/cor_custom/models/project.py @@ -49,9 +49,6 @@ class Project(models.Model): profit_amt = fields.Float(string='Profit Amount', digits=(16, 2), compute='_compute_calc', store=True) profit_per = fields.Float(string='Porfit Percentage', digits=(16, 2), compute='_compute_calc', store=True) consultant_cost = fields.Float("Sum of Cost", compute='onchange_compute_values', store=True) - total_cost = fields.Float("Cost") - total_hourly_rate = fields.Float("Cost") - total_budgeted_hour_week = fields.Float("Cost") @api.onchange('budgeted_revenue', 'expenses_per') def onchange_expenses_per(self):