c2c-oerpscenario team mailing list archive
-
c2c-oerpscenario team
-
Mailing list archive
-
Message #11179
[Bug 566318] Re: switching from tree to form always takes the lowest priority
** Also affects: openobject-server/5.0
Importance: Undecided
Status: New
** Also affects: openobject-server/trunk
Importance: Undecided
Assignee: Jay (OpenERP) (jvo-openerp)
Status: Triaged
** Changed in: openobject-server/5.0
Status: New => Won't Fix
** Changed in: openobject-server/trunk
Importance: Undecided => Wishlist
** Changed in: openobject-server/trunk
Status: Triaged => Confirmed
** Changed in: openobject-server/trunk
Assignee: Jay (OpenERP) (jvo-openerp) => OpenERP's Framework R&D (openerp-dev-framework)
--
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/566318
Title:
switching from tree to form always takes the lowest priority
Status in OpenObject Server:
Confirmed
Status in OpenObject Server 5.0 series:
Won't Fix
Status in OpenObject Server trunk series:
Confirmed
Bug description:
IMHO if such a code is given the form with the id chricar_stock_care_act1_view1 and the view chricar_stock_care_form (priority=50) has to be taken
currently the standard stock picking form is used (priority 16)
<record model="ir.actions.act_window" id="chricar_stock_care_act1">
<field name="name">Stock Care</field>
<field name="res_model">stock.picking</field>
<field name="view_type">form</field>
<field name="view_mode">tree,form</field>
<field name="view_id" ref="chricar_stock_care_list"/>
<field name="domain">[('type','=','production')]</field>
</record>
<record model="ir.actions.act_window.view" id="chricar_stock_care_act1_view2">
<field name="sequence" eval="1"/>
<field name="view_mode">tree</field>
<field name="view_id" ref="chricar_stock_care_list"/>
<field name="act_window_id" ref="chricar_stock_care_act1"/>
</record>
<record model="ir.actions.act_window.view" id="chricar_stock_care_act1_view1">
<field name="sequence" eval="2"/>
<field name="view_mode">form</field>
<field name="view_id" ref="chricar_stock_care_form"/>
<field name="act_window_id" ref="chricar_stock_care_act1"/>
</record>