Merge lp:~openerp-dev/openobject-addons/6.1-opw-579908-msh into lp:openobject-addons/6.1

Proposed by Mohammed Shekha(Open ERP)
Status: Needs review
Proposed branch: lp:~openerp-dev/openobject-addons/6.1-opw-579908-msh
Merge into: lp:openobject-addons/6.1
Diff against target: 19 lines (+2/-0)
1 file modified
stock/stock_view.xml (+2/-0)
To merge this branch: bzr merge lp:~openerp-dev/openobject-addons/6.1-opw-579908-msh
Reviewer Review Type Date Requested Status
OpenERP Core Team Pending
Review via email: mp+127942@code.launchpad.net

Description of the change

Hello,

Fixed the issue of claim_from_delivery act_window which has partner_id in context but partner_id is not shown on the view incoming shipment or in delivery order.

Currently Web-Client evaluates the context of action(act_window) based on fields of current view i.e. fields of current view not based on fields_get, What GTK do it reads the record and read all the fields of fields_get but web only reads the record with field only displayed on the view, which might be design decision, Hence just added partner_id field in the view so that context of action evaluated.

Thanks.

To post a comment you must log in.
Revision history for this message
Naresh(OpenERP) (nch-openerp) wrote :

Hello,

This bug was qualified as Not reproducible on Trunk. If this Merge Proposal could not be merged in v6.1 at the release of v7.0, it will be closed.

Thanks,
Naresh Soni

Unmerged revisions

7013. By Mohammed Shekha(Open ERP)

[FIX]Fixed the issue of claim_from_delivery act_window which has partner_id in context but partner_id is not shown on the view incoming shipment or in delivery order.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'stock/stock_view.xml'
2--- stock/stock_view.xml 2012-03-02 15:26:24 +0000
3+++ stock/stock_view.xml 2012-10-04 07:12:22 +0000
4@@ -895,6 +895,7 @@
5 </group>
6 <group colspan="2" col="2">
7 <field name="date"/>
8+ <field name="partner_id" invisible="1"/>
9 <field name="min_date" readonly="1"/>
10 <field name="stock_journal_id" groups="base.group_extended" widget="selection"/>
11 </group>
12@@ -1116,6 +1117,7 @@
13 </group>
14 <group colspan="2" col="2">
15 <field name="date"/>
16+ <field name="partner_id" invisible="1"/>
17 <field name="min_date" readonly="1"/>
18 <field name="stock_journal_id" groups="base.group_extended" widget="selection"/>
19 </group>