Revenue to Amount label changed

This commit is contained in:
prakash 2022-03-14 20:08:07 +05:30
parent 66dc781dc0
commit 78ba4d48b1
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ class BudgetAmtAnalysis(models.Model):
#sub_project = fields.Many2one('project.project', string='Sub Project', readonly=True)
partner_id = fields.Many2one('res.partner', string='Client', readonly=True)
amount_type = fields.Char(string="Amount Type")
revenue = fields.Float("Revenue", digits=(16, 2), readonly=True, group_operator="sum")
revenue = fields.Float("Amount", digits=(16, 2), readonly=True, group_operator="sum")
pricing_type = fields.Selection([
('fixed_rate', 'Fixed rate'),
('employee_rate', 'Consultant rate')