1
0
Fork 0
mirror of synced 2023-12-14 09:32:52 +01:00

Add missing Product class.

Task #072807
This commit is contained in:
Juanjo Garcia 2023-01-13 11:26:54 +01:00
parent 32f5a61c5d
commit 402d8824f3
2 changed files with 5 additions and 0 deletions

View file

@ -13,5 +13,6 @@ def register():
product.Category,
product.TemplateCompany,
product.Template,
product.Product,
stock.Lot,
module='stock_lot_sequence', type_='model')

View file

@ -123,3 +123,7 @@ class Template(metaclass=PoolMeta):
states={
'invisible': ~Eval('context', {}).get('company'),
}))
class Product(metaclass=PoolMeta):
__name__ = 'product.product'