Skip to content

Commit 4d950f6

Browse files
committed
[IMP] account_budget_oca: Add Practical/Planned in report
1 parent e6591e9 commit 4d950f6

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

account_budget_oca/report/report_budget_lines.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ def _prepare_report_lines(self):
3434
'practical_amount',
3535
'theoretical_amount',
3636
'percentage',
37+
'practical_on_planned_percentage',
3738
'company_id',
3839
],
3940
load=None,
@@ -114,6 +115,10 @@ class ReportBudgetLines (TransientModel):
114115
string='Achievement',
115116
readonly=True,
116117
)
118+
practical_on_planned_percentage = fields.Float(
119+
string='Practical/Planned',
120+
readonly=True,
121+
)
117122
company_id = fields.Many2one(
118123
comodel_name='res.company',
119124
string="Company",

0 commit comments

Comments
 (0)