How To Write "write" Function Without Effecting Inherited Class In Odoo 8?
The situation is as follows: This is my .py file class mom_meeting(osv.osv): _name = 'mom.meeting' _rec_name = 'meet_ref' _inherit = ['mail.thread'] and I had added t
Post a Comment for "How To Write "write" Function Without Effecting Inherited Class In Odoo 8?"