I inherit crm module and add a button.when i click that button the following error occur
"Traceback (most recent call last): File "/opt/odoo/openerp/http.py", line 536, in _handle_exception return super(JsonRequest, self)._handle_exception(exception) File "/opt/odoo/openerp/http.py", line 573, in dispatch result = self._call_function(**self.params) File "/opt/odoo/openerp/http.py", line 309, in _call_function return checked_call(self.db, *args, **kwargs) File "/opt/odoo/openerp/service/model.py", line 113, in wrapper return f(dbname, *args, **kwargs) File "/opt/odoo/openerp/http.py", line 306, in checked_call return self.endpoint(*a, **kw) File "/opt/odoo/openerp/http.py", line 802, in __call__ return self.method(*args, **kw) File "/opt/odoo/openerp/http.py", line 402, in response_wrap response = f(*args, **kw) File "/opt/odoo/openerp/addons/web/controllers/main.py", line 948, in call_button action = self._call_kw(model, method, args, {}) File "/opt/odoo/openerp/addons/web/controllers/main.py", line 936, in _call_kw return getattr(request.registry.get(model), method)(request.cr, request.uid, *args, **kwargs) AttributeError: 'crm.lead' object has no attribute 'timesheet1_create' "
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Kế toán
- Tồn kho
- PoS
- Project
- MRP
Câu hỏi này đã bị gắn cờ
2
Trả lời
3455
Lượt xem
.py file
class crm_lead_inheritance(osv.osv):
_inherit = "crm.lead"
def timesheet1_create(self,cr, uid, ids, context=None):
action="action_mark_as_lost"
def timesheet1_create(self, cr, uid, ids, context=None):
mod_obj = self.pool.get('ir.model.data')
act_obj = self.pool.get('ir.actions.act_window')
result = mod_obj.get_object_reference(cr, uid, 'timesheet1', 'action_timesheet')
id = result and result[1] or False
result = act_obj.read(cr, uid, [id], context=context)[0]
for so in self.browse(cr, uid, ids, context=context):
res = mod_obj.get_object_reference(cr, uid, 'timesheet1', 'timesheet_form')
result['views'] = [(res and res[1] or False, 'form')]
obj3 = self.pool.get('crm.lead')
return result
crm_lead_inheritance()
.xml file<record id="view_crm_lead_form" model="ir.ui.view">
<field name="name">crm.lead.form</field>
<field name="model">crm.lead</field>
<field name="inherit_id" ref="crm.crm_case_form_view_oppor"/>
<field eval="18" name="priority"/>
<field name="arch" type="xml">
<xpath expr="//form/header/button[@string='Mark Won']" position="after">
<button string="Timesheet1" name="timesheet1_create" type="object" class="oe_highlight"> </xpath>
</field>
</record>
Is there two methods with same name and parameters ?
Bạn có hứng thú với cuộc thảo luận không? Đừng chỉ đọc, hãy tham gia nhé!
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng ký
can you post your code here ?