19 lines
647 B
Python
19 lines
647 B
Python
# Copyright 2024 Criptomart
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResCompany(models.Model):
|
|
_inherit = "res.company"
|
|
|
|
rappel_journal_id = fields.Many2one(
|
|
comodel_name="account.journal",
|
|
string="Rappel Journal",
|
|
domain="[('type', '=', 'sale'), ('company_id', '=', id)]",
|
|
help="Sales journal used to post rappel commission invoices.",
|
|
)
|
|
rappel_product_id = fields.Many2one(
|
|
comodel_name="product.product",
|
|
string="Commission Product",
|
|
help="Product used as invoice line in rappel commission invoices.",
|
|
)
|