~ubuntu-branches/ubuntu/lucid/openerp-client/lucid

« back to all changes in this revision

Viewing changes to bin/widget/view/form_gtk/action.py

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2009-08-24 20:13:33 UTC
  • mfrom: (1.1.7 upstream)
  • mto: (11.1.1 sid)
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: james.westby@ubuntu.com-20090824201333-5at7951slr8uhcyw
Tags: upstream-5.0.3-0
ImportĀ upstreamĀ versionĀ 5.0.3-0

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
    def display(self, model, model_field):
102
102
        res_id = rpc.session.rpc_exec_auth('/object', 'execute',
103
103
                self.action['res_model'], 'search', self.domain, 0,
104
 
                self.action.get('limit', 80))
 
104
                self.action.get('limit', 80),False,self.context)
105
105
        self.screen.clear()
106
106
        self.screen.load(res_id)
107
107
        return True
108
108
 
109
 
 
110
109
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
111
110