Files
funding-tools/funding_campaign/models/account_move.py
2024-01-24 09:29:45 +01:00

9 lines
258 B
Python

# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
from odoo import fields, models
class AccountMove(models.Model):
_inherit = "account.move"
funding_campaign_id = fields.Many2one('funding.campaign', string='Funding Campaign')