Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odgovori
6690 Prikazi

Dear all,

Here i want inherit auth_signup controller class "AuthSignupHome" in a custom module. i tried this following codes, but i got error which is 

class custom_signup(openerp.addons.auth_signup.controllers.main.AuthSignupHome):

a) 'module' object has no attribute 'auth_signup'

b)Couldn't load module 'custom_module'


Please give any suggestions

thanks in advance

Avatar
Opusti
Best Answer

Hello Jothimani

Try following:

import openerp

from openerp.addons.auth_signup.controllers.main import AuthSignupHome

class my_class(AuthSignupHome):

    <custom code>


Hope this helps !!.

Avatar
Opusti
Related Posts Odgovori Prikazi Aktivnost
1
feb. 23
12058
0
dec. 15
6387
0
jun. 15
3113
0
apr. 15
3604
0
mar. 15
9666