[ADD] stock_picking_batch_custom: product summary

This commit is contained in:
snt 2026-03-05 20:29:02 +01:00
parent 9c14e1dc1a
commit ad8b759643
11 changed files with 348 additions and 10 deletions

View file

@ -10,8 +10,14 @@ class StockMoveLine(models.Model):
product_categ_id = fields.Many2one(
comodel_name="product.category",
string="Product Category",
string="Product Category (Batch)",
related="product_id.categ_id",
store=True,
readonly=True,
)
is_collected = fields.Boolean(
string="Collected",
default=False,
copy=False,
)