Related questions
Many2many relation in Odoo 10 (python)
I have to create a STudent Management module by Odoo 10.0 in windows. So I'd like to know exactly how to establish a "many2many" relation in Odoo (not Openerp). I have searched a lot of solutions on the Internet, but …
Odoo 10 selection fields value
How can i get selection fields value in odoo 10?
def compute_default_value(self):
return self.get_value("field")
I tried this,
def compute_default_value(self):
return dict(self._fields['field'].selection).get(self.type)
Also tried this,but …
How to raise a custom exception in Odoo 10?
Can i have a custom title in validation error/warning in odoo,I don't want Odoo in the title.
I have tried this code
raise odoo.osv.osv.except_osv('title', 'description')
But the title gets ignored.