~jfb-tempo-consulting/unifield-web/us-4005

« back to all changes in this revision

Viewing changes to addons/openerp/controllers/form.py

  • Committer: jf
  • Date: 2017-10-27 12:14:43 UTC
  • mfrom: (4863.9.1 unifield-web)
  • Revision ID: jfb@tempo-consulting.fr-20171027121443-zi5oypd8l5mq0yg3
US-3381 [IMP] New attribute auto_refresh on tree view to auto reload page

lp:~fabien-morin/unifield-web/fm-us-3381

Show diffs side-by-side

added added

removed removed

Lines of Context:
273
273
            tips = tips
274
274
 
275
275
        is_dashboard = form.screen.is_dashboard or False
276
 
        return dict(form=form, pager=pager, buttons=buttons, path=self.path, can_shortcut=can_shortcut, shortcut_ids=shortcut_ids, display_name=display_name, title=title, tips=tips, obj_process=obj_process, is_dashboard=is_dashboard, sidebar_closed=params._terp_sidebar_closed, sidebar_open=params.sidebar_open, tg_errors=tg_errors)
 
276
 
 
277
        return dict(form=form, pager=pager, buttons=buttons, path=self.path, can_shortcut=can_shortcut, shortcut_ids=shortcut_ids, display_name=display_name, title=title, tips=tips, obj_process=obj_process, is_dashboard=is_dashboard, sidebar_closed=params._terp_sidebar_closed, sidebar_open=params.sidebar_open, auto_refresh=params.auto_refresh, tg_errors=tg_errors)
277
278
 
278
279
    @expose('json', methods=('POST',))
279
280
    def close_or_disable_tips(self):