We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6591e9 commit 4d950f6Copy full SHA for 4d950f6
1 file changed
account_budget_oca/report/report_budget_lines.py
@@ -34,6 +34,7 @@ def _prepare_report_lines(self):
34
'practical_amount',
35
'theoretical_amount',
36
'percentage',
37
+ 'practical_on_planned_percentage',
38
'company_id',
39
],
40
load=None,
@@ -114,6 +115,10 @@ class ReportBudgetLines (TransientModel):
114
115
string='Achievement',
116
readonly=True,
117
)
118
+ practical_on_planned_percentage = fields.Float(
119
+ string='Practical/Planned',
120
+ readonly=True,
121
+ )
122
company_id = fields.Many2one(
123
comodel_name='res.company',
124
string="Company",
0 commit comments