diff --git a/addons/web/static/src/js/view_form.js b/addons/web/static/src/js/view_form.js index 58067c5e4d1..ee15592c924 100644 --- a/addons/web/static/src/js/view_form.js +++ b/addons/web/static/src/js/view_form.js @@ -282,9 +282,9 @@ instance.web.FormView = instance.web.View.extend(instance.web.form.FieldManagerM this.$el.add(this.$buttons).removeClass('oe_form_dirty'); var shown = this.has_been_loaded; - if (options.reload !== false || !this.datarecord.id) { + if (options.reload !== false) { shown = shown.then(function() { - if (self.dataset.index === null || !self.datarecord.id) { + if (self.dataset.index === null) { // null index means we should start a new record return self.on_button_new(); } diff --git a/addons/web/static/test/list-editable.js b/addons/web/static/test/list-editable.js index 3032ae7e5f0..a91d5012123 100644 --- a/addons/web/static/test/list-editable.js +++ b/addons/web/static/test/list-editable.js @@ -9,9 +9,6 @@ openerp.testing.section('editor', { mock('test.model:onchange', function () { return {}; }); - mock('test.model:default_get', function () { - return {}; - }); } }, function (test) { /** @@ -214,7 +211,7 @@ openerp.testing.section('list.edition', { }); } }, function (test) { - test('newrecord', {asserts: 7}, function (instance, $fix, mock) { + test('newrecord', {asserts: 6}, function (instance, $fix, mock) { var got_defaults = false; mock('demo:default_get', function (args) { var fields = args[0];