You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
914 B
20 lines
914 B
# -*- coding: utf-8 -*-
|
|
from openerp import http
|
|
from openerp.http import request
|
|
|
|
from openerp.addons.easy_my_coop.controllers.main import WebsiteSubscription as Base
|
|
|
|
class WebsiteSubscription(Base):
|
|
|
|
def fill_values(self, values, is_company, logged, load_from_user=False):
|
|
values = super(WebsiteSubscription, self).fill_values(values,
|
|
is_company,
|
|
logged,
|
|
load_from_user)
|
|
cmp = request.env['res.company']._company_default_get()
|
|
values.update({
|
|
'display_info_session': cmp.display_info_session_confirmation,
|
|
'info_session_required': cmp.info_session_confirmation_required,
|
|
'info_session_text': cmp.info_session_confirmation_text,
|
|
})
|
|
return values
|