Skip to content

Commit

Permalink
[FIX] product_variant_default_code: reference mask template
Browse files Browse the repository at this point in the history
  • Loading branch information
adrip-s73 committed Jun 17, 2024
1 parent 5589406 commit 6a20d09
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions product_variant_default_code/models/product.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,8 @@ def _generate_default_code(self):
else:
product_attrs = defaultdict(str)
reference_mask = ReferenceMask(self.product_tmpl_id.reference_mask)
if reference_mask.template is False:
reference_mask.template = ""

Check warning on line 234 in product_variant_default_code/models/product.py

View check run for this annotation

Codecov / codecov/patch

product_variant_default_code/models/product.py#L234

Added line #L234 was not covered by tests
main_lang = self.product_tmpl_id._guess_main_lang()
for attr in self.product_template_attribute_value_ids:
value = attr.product_attribute_value_id
Expand Down

0 comments on commit 6a20d09

Please sign in to comment.