Browse Source

[FIX] set default value to the first share if no default one is defined

pull/1/head
houssine 5 years ago
parent
commit
8c99920ce8
  1. 13
      easy_my_coop/controllers/main.py

13
easy_my_coop/controllers/main.py

@ -139,6 +139,8 @@ class WebsiteSubscription(http.Controller):
if product.default_share_product is True:
values['share_product_id'] = product.id
break
if not values.get('share_product_id', False) and products:
values['share_product_id'] = products[0].id
if not values.get('country_id'):
if company.default_country_id:
values['country_id'] = company.default_country_id.id
@ -173,8 +175,15 @@ class WebsiteSubscription(http.Controller):
auth="public",
methods=['POST'], website=True)
def get_share_product(self, share_product_id, **kw):
product = request.env['product.template'].sudo().browse(int(share_product_id))
return {product.id: {'list_price': product.list_price, 'min_qty': product.minimum_quantity, 'force_min_qty': product.force_min_qty}}
product_template = request.env['product.template']
product = product_template.sudo().browse(int(share_product_id))
return {
product.id: {
'list_price': product.list_price,
'min_qty': product.minimum_quantity,
'force_min_qty': product.force_min_qty
}
}
@http.route(['/subscription/subscribe_share'],
type='http',

Loading…
Cancel
Save