Files
2024-02-07 10:01:29 +01:00

10 lines
213 B
Python

from odoo import api, fields, models
from odoo.exceptions import UserError
class FundingCampaign(models.Model):
_inherit = 'funding.campaign'
project_id = fields.Many2one('project.project', 'Project')