You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
550 B
17 lines
550 B
# Copyright 2016 GRAP (http://www.grap.coop)
|
|
# Sylvain LE GAL (https://twitter.com/legalsylvain)
|
|
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
_inherit = "res.partner"
|
|
|
|
default_supplierinfo_discount = fields.Float(
|
|
string="Default Supplier Discount (%)",
|
|
digits="Discount",
|
|
help="This value will be used as the default one, for each new"
|
|
" supplierinfo line depending on that supplier.",
|
|
tracking=True,
|
|
)
|