Browse Source

[FIX] product_visibility_website: Error fix.

Avoid positioning parameter issues while calling super.
pull/232/head
Juan Carlos 3 years ago
committed by GitHub
parent
commit
32057075fe
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      product_visibility_website/controllers/main.py

2
product_visibility_website/controllers/main.py

@ -129,7 +129,7 @@ class ProductVisibilityCon(WebsiteSale):
# supering shop***
if not available_categ and not available_products:
return super(ProductVisibilityCon, self).shop(page, category, search, ppg, **post)
return super(ProductVisibilityCon, self).shop(page=page, category=category, search=search, ppg=ppg, **post)
add_qty = int(post.get('add_qty', 1))
if category:

Loading…
Cancel
Save