[FIX] web: avoid incoherent actual_mode after refresh
authorMartin Trigaux <mat@odoo.com>
Fri, 24 Oct 2014 13:36:58 +0000 (15:36 +0200)
committerMartin Trigaux <mat@odoo.com>
Fri, 24 Oct 2014 13:36:58 +0000 (15:36 +0200)
When accessing an existing record in form mode directly (enter the url or refresh a page), the daterecord has not been initialized yet. This means that the value of actual_mode will be set to 'edit' before loading the current record (method _actualize_mode() called from do_show()).
This was problematic for one2many fields that we loaded in edit mode, showing add/delete icons/buttons in readonly views. (opw 607910)

addons/web/static/src/js/view_form.js

index 7fbd8cc..307edec 100644 (file)
@@ -257,7 +257,7 @@ instance.web.FormView = instance.web.View.extend(instance.web.form.FieldManagerM
                 this.dataset.ids.push(state.id);
             }
             this.dataset.select_id(state.id);
-            this.do_show({ reload: warm });
+            this.do_show();
         }
     },
     /**