|
@ -173,7 +173,10 @@ class WebsiteSubscription(http.Controller): |
|
|
sub_req_obj = request.env["subscription.request"] |
|
|
sub_req_obj = request.env["subscription.request"] |
|
|
company = request.website.company_id |
|
|
company = request.website.company_id |
|
|
products = self.get_products_share(is_company) |
|
|
products = self.get_products_share(is_company) |
|
|
|
|
|
|
|
|
|
|
|
icp_obj = request.env["ir.config_parameter"].sudo() |
|
|
|
|
|
values["recaptcha_enabled"] = icp_obj.get_param( |
|
|
|
|
|
"emc_website.captcha_enabled", default="True" |
|
|
|
|
|
) |
|
|
if load_from_user: |
|
|
if load_from_user: |
|
|
values = self.get_values_from_user(values, is_company) |
|
|
values = self.get_values_from_user(values, is_company) |
|
|
if is_company: |
|
|
if is_company: |
|
@ -245,7 +248,7 @@ class WebsiteSubscription(http.Controller): |
|
|
def validation(self, kwargs, logged, values, post_file): |
|
|
def validation(self, kwargs, logged, values, post_file): |
|
|
user_obj = request.env["res.users"] |
|
|
user_obj = request.env["res.users"] |
|
|
sub_req_obj = request.env["subscription.request"] |
|
|
sub_req_obj = request.env["subscription.request"] |
|
|
|
|
|
|
|
|
|
|
|
icp_obj = request.env["ir.config_parameter"].sudo() |
|
|
redirect = "easy_my_coop_website.becomecooperator" |
|
|
redirect = "easy_my_coop_website.becomecooperator" |
|
|
|
|
|
|
|
|
email = kwargs.get("email") |
|
|
email = kwargs.get("email") |
|
@ -256,6 +259,7 @@ class WebsiteSubscription(http.Controller): |
|
|
redirect = "easy_my_coop_website.becomecompanycooperator" |
|
|
redirect = "easy_my_coop_website.becomecompanycooperator" |
|
|
email = kwargs.get("company_email") |
|
|
email = kwargs.get("company_email") |
|
|
|
|
|
|
|
|
|
|
|
if icp_obj.get_param('emc_website.captcha_enabled')=="True": |
|
|
if ( |
|
|
if ( |
|
|
"g-recaptcha-response" not in kwargs |
|
|
"g-recaptcha-response" not in kwargs |
|
|
or kwargs["g-recaptcha-response"] == "" |
|
|
or kwargs["g-recaptcha-response"] == "" |
|
|