← Back to team overview

c2c-oerpscenario team mailing list archive

[Bug 753344] Re: domain on action causes an exception in form view

 

** Branch linked: lp:~openerp-dev/openobject-client-web/trunk-
bug-753344-jra

-- 
You received this bug notification because you are a member of C2C
OERPScenario, which is subscribed to the OpenERP Project Group.
https://bugs.launchpad.net/bugs/753344

Title:
  domain on action causes an exception in form view

Status in OpenERP GTK Client:
  Fix Released
Status in OpenERP Web Client:
  Fix Committed

Bug description:
  If i define an ir.action.act_window like this:
          <record model="ir.actions.act_window" id="action_id">
              <field name="name">My partners list</field>
              <field name="type">ir.actions.act_window</field>
              <field name="res_model">res.partner</field>
              <field name="domain">[('category_id','=','MyCategory')]</field>
              <field name="view_type">form</field>
              <field name="view_mode">tree,form</field>
              <field name="view_id" ref="view_id"/>
          </record>

  If i trigger the action from menu, it shows me the tree view of
  partners filtered by "MyCategory", but if i try to create a new
  partner from this view, clicking "New", it throws an exception,
  looking for an integer (id) instead of a string (name).

  Here's the stacktrace
  http://pastie.org/1767062

  
  Using 
  openerp-server v.6.0.1
  openerp-web v.6.0.1
  on
  Mac OS X v.10.6.6


References