I have created a customized module for Sales CRM in OpenERP. While creating opportunity when I click on stage field, it gives me the following error:
list = super(crm_stage_claim, self)._get_type_value(cr, user, context)
AttributeError: 'super' object has no attribute '_get_type_value'
Any Help on this would be appreciated.
Regards sameer
crm_stage_claima class or an instance? By convention, class names are written as CamelCaseLikeThis, not underscore_separated_like_this. This is why following standard naming conventions will help you - when you ask others for help, they can make reasonable assumptions about your code without wasting a lot of your time and theirs with silly questions like 'is crm_stage_claim a class or an instance?' – Paul McGuire Nov 4 '11 at 14:45