You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
349 B
Python

8 months ago
from odoo import fields, models
class AccountReportExternalValue(models.Model):
_inherit = "account.report.external.value"
# _description = 'Accounting Report External Value'
# _check_company_auto = True
# _order = 'date, id'
report_id = fields.Many2one('account.report', relate='target_report_line_id.report_id')