Merge lp:~openerp-dev/openobject-addons/7.0-opw-603330-jam into lp:openobject-addons/7.0

Proposed by Jigar A.
Status: Needs review
Proposed branch: lp:~openerp-dev/openobject-addons/7.0-opw-603330-jam
Merge into: lp:openobject-addons/7.0
Diff against target: 21 lines (+12/-0)
1 file modified
portal/portal_view.xml (+12/-0)
To merge this branch: bzr merge lp:~openerp-dev/openobject-addons/7.0-opw-603330-jam
Reviewer Review Type Date Requested Status
Naresh(OpenERP) Pending
Review via email: mp+202957@code.launchpad.net

Description of the change

Steps to re-produce :

- Public Portal activated
- Multi company enabled (1 parent company and 3 child companies)[optional]
- Portal user assigned to one of the child companies
- Clicking the Compose New Message in the top bar opens the 'Full Mail Composer' without the ability to select a partner .

Kindly check the changes.

To post a comment you must log in.
9789. By Jigar A.

[MERGE] Parent Sync

Unmerged revisions

9789. By Jigar A.

[MERGE] Parent Sync

9788. By Jigar A.

[FIX] Portal Users access to Recipients field over mail compose

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'portal/portal_view.xml'
2--- portal/portal_view.xml 2013-03-28 08:51:40 +0000
3+++ portal/portal_view.xml 2014-02-21 17:58:21 +0000
4@@ -141,5 +141,17 @@
5 </field>
6 </record>
7
8+
9+ <record model="ir.ui.view" id="portal_email_compose_message_wizard_form_inherit">
10+ <field name="name">portal.mail.compose.message.form.inherit</field>
11+ <field name="model">mail.compose.message</field>
12+ <field name="inherit_id" ref="mail.email_compose_message_wizard_form"/>
13+ <field name="arch" type="xml">
14+ <xpath expr="//div[@groups='base.group_user']" position="attributes">
15+ <attribute name="groups">base.group_user,portal.group_portal</attribute>
16+ </xpath>
17+ </field>
18+ </record>
19+
20 </data>
21 </openerp>