Merge lp:~openerp-dev/openobject-addons/6.1-opw-575213-skh into lp:openobject-addons/6.1

Proposed by Somesh Khare
Status: Approved
Approved by: Naresh(OpenERP)
Approved revision: 6816
Proposed branch: lp:~openerp-dev/openobject-addons/6.1-opw-575213-skh
Merge into: lp:openobject-addons/6.1
Diff against target: 12 lines (+1/-1)
1 file modified
crm_claim/crm_claim_view.xml (+1/-1)
To merge this branch: bzr merge lp:~openerp-dev/openobject-addons/6.1-opw-575213-skh
Reviewer Review Type Date Requested Status
Naresh(OpenERP) Pending
Review via email: mp+107614@code.launchpad.net

Description of the change

Hello Sir,

[FIX] Crm Claim:Inconsistency in process of setting Stage in a claim.

Steps to reproduce:
1. Install crm_claim module.
2. Create new record "Sales/After-Sale Services/Claims" and do not select "Sales Team". Try to select the stage from many2one field (No stages found), now try with the "Next/Previous" Button (stages changed).

Current Bevaiour:
No stages when using the many2one (search on the stages)

Expected bevaiour:
All stages should be shown here if No Sales Team defined (As in Crm Lead) or according to stages defined on the Sales team.

This branch fixes the issue.

Thanks,
Somesh Khare

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 Relevant on Trunk (means that architecture on trunk has changed and so this bug has no meaning anymore). 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

6816. By Somesh Khare

[FIX] Crm Claim:Inconsistency in process of setting Stage in a claim(Case: Ref 575213)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'crm_claim/crm_claim_view.xml'
--- crm_claim/crm_claim_view.xml 2012-01-31 13:36:57 +0000
+++ crm_claim/crm_claim_view.xml 2012-05-28 12:34:24 +0000
@@ -75,7 +75,7 @@
75 <field name="user_id"/>75 <field name="user_id"/>
76 <field name="section_id" widget="selection" />76 <field name="section_id" widget="selection" />
77 <group colspan="2" col="4">77 <group colspan="2" col="4">
78 <field name="stage_id" domain="[('section_ids','=',section_id)]"/>78 <field name="stage_id" domain="section_id and [('section_ids', '=', section_id)] or []"/>
79 <button name="stage_previous" string="" type="object" icon="gtk-go-back" />79 <button name="stage_previous" string="" type="object" icon="gtk-go-back" />
80 <button name="stage_next" string="" type="object" icon="gtk-go-forward" />80 <button name="stage_next" string="" type="object" icon="gtk-go-forward" />
81 </group>81 </group>