[IMP]:allowed default_get method to throw exception for osv_memory wizards

bzr revid: rvo@tinyerp.co.in-20100316130517-z5ojbxincq62mkle
This commit is contained in:
Rvo (Open ERP) 2010-03-16 18:35:17 +05:30
parent bf77cfe005
commit d5ce03433a
1 changed files with 5 additions and 0 deletions

View File

@ -370,6 +370,10 @@ class orm_template(object):
CONCURRENCY_CHECK_FIELD = '__last_update'
def view_init(self, cr , uid , fields_list, context=None):
"""Override this method to do specific things when a view on the object is opened."""
pass
def read_group(self, cr, uid, domain, fields, groupby, offset=0, limit=None, context=None):
raise _('The read_group method is not implemented on this object !')
@ -1697,6 +1701,7 @@ class orm_memory(orm_template):
return id_new
def default_get(self, cr, uid, fields_list, context=None):
self.view_init(cr, uid, fields_list, context)
if not context:
context = {}
value = {}