Initial commit: Sale packages

This commit is contained in:
Ernad Husremovic 2025-08-29 15:20:49 +02:00
commit 14e3d26998
6469 changed files with 2479670 additions and 0 deletions

View file

@ -0,0 +1,10 @@
from odoo import fields, models
class WebsiteBaseUnit(models.Model):
_name = "website.base.unit"
_description = "Unit of Measure for price per unit on eCommerce products."
_order = "name"
name = fields.Char(help="Define a custom unit to display in the price per unit of measure field.",
required=True, translate=True)