Revert removal of cr.commit()

pull/59/head
Andrea Stirpe 2016-07-11 17:49:19 +02:00 committed by Andrea
parent 44579cc451
commit 926647065b
1 changed files with 4 additions and 8 deletions

View File

@ -256,14 +256,10 @@ class BveView(models.Model):
[x for x in self.name.lower()
if x.isalnum()]).replace("_", ".").replace(" ", ".")
try:
with self.env.cr.savepoint():
_build_query()
obj = _build_object()
_build_access_rules(obj)
except Exception, e:
raise UserError(
_('Generic error. Unable to create the view! %s') % e)
_build_query()
obj = _build_object()
_build_access_rules(obj)
self.env.cr.commit()
self.env.registry = RegistryManager.new(self.env.cr.dbname)
RegistryManager.signal_registry_change(self.env.cr.dbname)