Files
odoo-usability/product_editable_sequence/models/product_template.py
2025-01-23 12:14:40 +01:00

12 lines
333 B
Python

# Copyright 2024 Akretion (https://www.akretion.com).
# @author Sébastien BEAU <sebastien.beau@akretion.com>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
from odoo import _, api, fields, models
class ProductTemplate(models.Model):
_inherit = 'product.template'
sequence = fields.Integer(default=100)