Skip to content

Commit 9e76821

Browse files
authored
Fix optional fields
1 parent ef9b678 commit 9e76821

File tree

1 file changed

+1
-1
lines changed
  • website_sale_vat_required/controllers

1 file changed

+1
-1
lines changed

website_sale_vat_required/controllers/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def _get_mandatory_billing_fields(self):
1313
return result
1414

1515
def _get_optional_billing_fields(self):
16-
result = super(WebsiteSale, self)._get_mandatory_billing_fields()
16+
result = super(WebsiteSale, self)._get_optional_billing_fields()
1717
try:
1818
result.remove("vat")
1919
except ValueError: # pragma: no-cover

0 commit comments

Comments
 (0)