Criptomart/red-supermercados-coop#6 add stock_valuation_layer_category_groupby

This commit is contained in:
Luis 2025-12-04 18:28:18 +01:00
parent 18f98defeb
commit 19af717773
8 changed files with 167 additions and 0 deletions

View file

@ -0,0 +1 @@
from . import stock_valuation_layer

View file

@ -0,0 +1,11 @@
# Copyright 2025 Criptomart
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import fields, models
class StockValuationLayer(models.Model):
_inherit = "stock.valuation.layer"
# Make categ_id stored to allow grouping in reports
categ_id = fields.Many2one(store=True, index=True)