← Back to team overview

c2c-oerpscenario team mailing list archive

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

 

Public bug reported:

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

** Affects: openobject-server
     Importance: Undecided
         Status: New


** Tags: action domain server window

-- 
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 Server:
  New

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



Follow ups

References