Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] product_variant_default_code: reference mask template #361

Open
wants to merge 1 commit into
base: 16.0
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@
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
Loading