Ecocentral/ecocentral#172: migrate purchase_rappel to 18.0
This commit is contained in:
parent
1d6747e703
commit
a754df3914
24 changed files with 1588 additions and 0 deletions
19
purchase_rappel/models/res_partner.py
Normal file
19
purchase_rappel/models/res_partner.py
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# Copyright 2024 Criptomart
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class ResPartner(models.Model):
|
||||
_inherit = "res.partner"
|
||||
|
||||
rappel_commission = fields.Boolean(
|
||||
string="Rappel Commission",
|
||||
help="If enabled, vendor bills from this partner will be eligible for rappel "
|
||||
"commission invoicing.",
|
||||
)
|
||||
rappel_commission_rate = fields.Float(
|
||||
string="Commission Rate (%)",
|
||||
digits=(5, 4),
|
||||
help="Percentage applied on the taxable base of vendor bills to calculate the "
|
||||
"rappel commission amount.",
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue