Skip to content

Commit

Permalink
FIX prod_dim_net: explicitely store field
Browse files Browse the repository at this point in the history
  • Loading branch information
bealdav committed Jun 4, 2024
1 parent f5e6bac commit 21bdf41
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion product_dimension_net/models/product_product.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ class ProductProduct(models.Model):
store=True,
)
net_dimension = fields.Char(
compute="_compute_net_dimensions", help="String representing dimensions"
compute="_compute_net_dimensions",
store=True,
readonly=True,
help="String representing dimensions",
)

@api.depends(
Expand Down

0 comments on commit 21bdf41

Please sign in to comment.