14 lines
425 B
Python
Executable File
14 lines
425 B
Python
Executable File
# Copyright 2021 Akretion France (http://www.akretion.com/)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ProductTemplate(models.Model):
|
|
_inherit = "product.template"
|
|
|
|
primeship_activation = fields.Boolean(string="Activates primeship", default=False)
|
|
primeship_duration = fields.Integer(
|
|
string="Primeship duration (in months)", default=12
|
|
)
|