Ecocentral/ecocentral#172: migrate purchase_rappel to 18.0

This commit is contained in:
Luis 2026-06-23 14:28:38 +02:00
parent 1d6747e703
commit a754df3914
24 changed files with 1588 additions and 0 deletions

View file

@ -0,0 +1,23 @@
# Copyright 2024 Criptomart
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
from odoo import api, fields, models
class ResConfigSettings(models.TransientModel):
_inherit = "res.config.settings"
rappel_journal_id = fields.Many2one(
comodel_name="account.journal",
string="Rappel Journal",
related="company_id.rappel_journal_id",
domain=[("type", "=", "sale")],
readonly=False,
help="Sales journal used to post rappel commission invoices.",
)
rappel_product_id = fields.Many2one(
comodel_name="product.product",
string="Commission Product",
related="company_id.rappel_product_id",
readonly=False,
help="Product used as invoice line in rappel commission invoices.",
)