← Back to team overview

openerp-dev-web team mailing list archive

lp:~openerp-dev/openobject-addons/trunk-openerp_crm_imp-phonecalls_stages-rme into lp:~openerp-dev/openobject-addons/trunk-openerp_crm_imp

 

Ravindra Mekhiya(OpenERP) has proposed merging lp:~openerp-dev/openobject-addons/trunk-openerp_crm_imp-phonecalls_stages-rme into lp:~openerp-dev/openobject-addons/trunk-openerp_crm_imp.

Requested reviews:
  OpenERP R&D Addons Team 1 (openerp-dev-addons1)

For more details, see:
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-openerp_crm_imp-phonecalls_stages-rme/+merge/54522

Hello,

    * Added a "Schedule a phone call" button on lead form view

    * rename inbound into "Log A Call" 

    * rename outbound into "Schedules Calls"

    * remove (hide) stage from lead

    * Improve Tooltip on Change Probability Automatically (Satges) : If checked, OpenERP will set the probability of the opportunity to the probability defined in the stage. If you set a probability of 0%/100% on check the 'Change Probability Automatically' field, OpenERP will assign this stage when the opportunity is marked as Lost/Won.

Thanks.

-- 
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-openerp_crm_imp-phonecalls_stages-rme/+merge/54522
Your team OpenERP R&D Team is subscribed to branch lp:~openerp-dev/openobject-addons/trunk-openerp_crm_imp.
=== modified file 'crm/crm.py'
--- crm/crm.py	2011-03-11 08:33:48 +0000
+++ crm/crm.py	2011-03-23 13:38:26 +0000
@@ -570,7 +570,7 @@
         'sequence': fields.integer('Sequence', help="Gives the sequence order when displaying a list of case stages."),
         'probability': fields.float('Probability (%)', required=True, help="This percentage depicts the default/average probability of the Case for this stage to be a success"),
         'on_change': fields.boolean('Change Probability Automatically', \
-                         help="Change Probability on next and previous stages."),
+                         help="If checked, OpenERP will set the probability of the opportunity to the probability defined in the stage. If you set a probability of 0%/100% on check the 'Change Probability Automatically' field, OpenERP will assign this stage when the opportunity is marked as Lost/Won."),
         'requirements': fields.text('Requirements'),
         'type': fields.selection(_get_type_value, 'Type', required=True),
     }

=== modified file 'crm/crm_lead_view.xml'
--- crm/crm_lead_view.xml	2011-03-10 13:25:37 +0000
+++ crm/crm_lead_view.xml	2011-03-23 13:38:26 +0000
@@ -71,19 +71,16 @@
                          string="Convert to Opportunity"
                          help="Convert to Opportunity" icon="gtk-go-forward"
                          type="object"/>
-                    <newline />
+                    <newline/>
                     <field name="user_id" />
                     <field name="section_id" widget="selection" />
-                    <field name="stage_id" domain="[('type','=','lead'),('section_ids', '=', section_id)]" />
-                    <group col="2" colspan="1">
-                        <button name="stage_previous" string=""
-                            states="open,pending,draft" type="object"
-                            icon="gtk-go-back" context="{'stage_type': 'lead'}" />
-                        <button name="stage_next" string=""
-                            states="open,pending,draft" type="object"
-                            icon="gtk-go-forward" context="{'stage_type': 'lead'}" />
-                    </group>
                     <field name="type" invisible="1"/>
+                    <label string="" colspan="2"/>
+                    <button 
+                    	string="Schedule/Log Call"
+                        name="%(opportunity2phonecall_act)d" 
+                        icon="terp-call-start" 
+                        type="action"/>
                 </group>
                 <notebook colspan="4">
                 <page string="Lead">

=== modified file 'crm/crm_phonecall_menu.xml'
--- crm/crm_phonecall_menu.xml	2011-01-27 09:49:39 +0000
+++ crm/crm_phonecall_menu.xml	2011-03-23 13:38:26 +0000
@@ -94,7 +94,7 @@
         <field name="act_window_id" ref="crm_case_categ_phone_incoming0"/>
     </record>
 
-    <menuitem name="Inbound" id="menu_crm_case_phone_inbound"
+    <menuitem name="Log A Call" id="menu_crm_case_phone_inbound"
         parent="crm.menu_crm_case_phone"
         action="crm_case_categ_phone_incoming0" />
 
@@ -131,7 +131,7 @@
         <field name="act_window_id" ref="crm_case_categ_phone_outgoing0"/>
     </record>
 
-    <menuitem name="Outbound" id="menu_crm_case_phone_outbound"
+    <menuitem name="Schedules Calls" id="menu_crm_case_phone_outbound"
         parent="crm.menu_crm_case_phone"
         action="crm_case_categ_phone_outgoing0" />
 


Follow ups