[IMP]improve help in setting/configuration/sales
[odoo/odoo.git] / addons / crm / crm_lead_view.xml
1 <?xml version="1.0"?>
2 <openerp>
3     <data>
4
5         <!--
6             CRM CASE STAGE
7         -->
8
9         <!-- Stage Search view -->
10         <record id="crm_lead_stage_search" model="ir.ui.view">
11             <field name="name">Stage - Search</field>
12             <field name="model">crm.case.stage</field>
13             <field name="arch" type="xml">
14                 <search string="Stage Search">
15                     <field name="name"/>
16                     <field name="type"/>
17                     <field name="sequence"/>
18                     <field name="probability"/>
19                 </search>
20             </field>
21         </record>
22
23         <!-- Stage Form view -->
24         <record id="crm_lead_stage_act" model="ir.actions.act_window">
25             <field name="name">Stages</field>
26             <field name="res_model">crm.case.stage</field>
27             <field name="view_type">form</field>
28             <field name="view_id" ref="crm.crm_case_stage_tree"/>
29             <field name="help" type="html">
30               <p class="oe_view_nocontent_create">
31                 Click to set a new stage in your lead/opportunity pipeline.
32               </p><p>
33                 Stages will allow salespersons to easily track how a specific
34                 lead or opportunity is positioned in the sales cycle.
35               </p>
36             </field>
37         </record>
38
39         <menuitem action="crm_lead_stage_act" id="menu_crm_lead_stage_act" name="Stages" sequence="0" parent="base.menu_crm_config_lead" groups="base.group_no_one"/>
40
41         <!--
42             LEADS/OPPORTUNITIES CATEGORIES
43         -->
44
45         <!-- Categories Form View -->
46         <record id="crm_lead_categ_action" model="ir.actions.act_window">
47             <field name="name">Sales Tags</field>
48             <field name="res_model">crm.case.categ</field>
49             <field name="view_type">form</field>
50             <field name="view_id" ref="crm_case_categ_tree-view"/>
51             <field name="context" eval="{'object_id': ref('model_crm_lead')}"/>
52             <field name="domain">[('object_id.model', '=', 'crm.lead')]</field>
53             <field name="help" type="html">
54               <p class="oe_view_nocontent_create">
55                 Click to define a new sales tag.
56               </p><p>
57                 Create specific tags that fit your company's activities
58                 to better classify and analyse your leads and opportunities.
59                 Such categories could for instance reflect your product
60                 structure or the different types of sales you do.
61               </p>
62             </field>
63         </record>
64
65         <menuitem action="crm_lead_categ_action"
66             id="menu_crm_lead_categ" name="Sales Tags"
67             parent="base.menu_crm_config_lead" sequence="1" groups="base.group_no_one"/>
68
69         <!--
70             LEADS
71         -->
72         <act_window
73                 id="act_crm_opportunity_crm_phonecall_new"
74                 name="Phone calls"
75                 groups="base.group_sale_salesman"
76                 res_model="crm.phonecall"
77                 view_mode="tree,calendar,form"
78                 context="{'default_duration': 1.0 ,'default_opportunity_id': active_id}"
79                 view_type="form"/>
80
81         <act_window
82                 id="act_crm_opportunity_crm_meeting_new"
83                 name="Meetings"
84                 res_model="crm.meeting"
85                 view_mode="tree,form,calendar"
86                 context="{'default_duration': 4.0, 'default_opportunity_id': active_id}"
87                 view_type="form"/>
88
89
90         <!-- CRM Lead Form View  -->
91         <record model="ir.ui.view" id="crm_case_form_view_leads">
92         <field name="name">CRM - Leads Form</field>
93         <field name="model">crm.lead</field>
94         <field name="arch" type="xml">
95             <form string="Leads Form" version="7.0">
96                 <header>
97                     <button name="%(crm.action_crm_lead2opportunity_partner)d" string="Convert to Opportunity" type="action"
98                             attrs="{'invisible': [('probability', '=', 100)]}"
99                             help="Convert to Opportunity" class="oe_highlight"/>
100                     <field name="stage_id" widget="statusbar" clickable="True"
101                             domain="['&amp;', '|', ('case_default', '=', True), ('section_ids', '=', section_id), '|', ('type', '=', type), ('type', '=', 'both')]"
102                             on_change="onchange_stage_id(stage_id)"/>
103                 </header>
104                 <sheet>
105                     <div class="oe_right oe_button_box" name="buttons">
106                         <button string="Schedule/Log Call" 
107                                 name="%(opportunity2phonecall_act)d"
108                                 type="action"/>
109                     </div>
110                     <div class="oe_title">
111                         <label for="name" class="oe_edit_only"/>
112                         <h1><field name="name" placeholder="Describe the lead..."/></h1>
113                     </div>
114                     <group>
115                         <group>
116                             <field name="partner_name" string="Company Name"/>
117                             <!-- Preload all the partner's information -->
118                             <field name="partner_id" string="Customer"
119                                 on_change="on_change_partner_id(partner_id)"
120                                 options='{"create_name_field": "name"}'
121                                 context="{'default_name': contact_name, 'default_street': street, 'default_city': city, 'default_state_id': state_id, 'default_zip': zip, 'default_country_id': country_id, 'default_function': function, 'default_phone': phone, 'default_mobile': mobile, 'default_fax': fax, 'default_email': email_from, 'default_user_id': user_id, 'default_section_id': section_id}"/>
122                             <label for="street" string="Address"/>
123                             <div>
124                                 <field name="street" placeholder="Street..."/>
125                                 <field name="street2"/>
126                                 <div class="address_format">
127                                     <field name="city" placeholder="City" style="width: 40%%"/>
128                                     <field name="state_id" on_change="onchange_state(state_id)" options='{"no_open": True}' placeholder="State" style="width: 24%%"/>
129                                     <field name="zip" placeholder="ZIP" style="width: 34%%"/>
130                                 </div>
131                                 <field name="country_id" placeholder="Country" options='{"no_open": True}'/>
132                             </div>
133                         </group>
134                         <group>
135                             <label for="contact_name"/>
136                             <div>
137                                 <field name="contact_name" class="oe_inline"/><span attrs="{'invisible': [('title', '=', '')]}">, </span>
138                                 <field name="title" placeholder="Title" domain="[('domain', '=', 'contact')]" class="oe_inline" options='{"no_open": True}'/>
139                             </div>
140                             <field name="email_from" widget="email"/>
141                             <field name="function"/>
142                             <field name="phone"/>
143                             <field name="mobile"/>
144                             <field name="fax"/>
145                         </group>
146                         <group>
147                             <field name="user_id" on_change="on_change_user(user_id, context)"
148                                 context="{'default_groups_ref': ['base.group_user', 'base.group_sale_salesman_all_leads'] }"/>
149                             <label for="section_id" groups="base.group_multi_salesteams"/>
150                             <div groups="base.group_multi_salesteams">
151                                 <field name="section_id"/>
152                                 <button name="case_escalate" string="Escalate"
153                                         type="object" class="oe_link"
154                                         attrs="{'invisible': ['|', ('section_id','=',False), ('probability', '=', 100)]}"/>
155                             </div>
156                             <field name="type" invisible="1"/>
157                         </group>
158                         <group>
159                             <field name="priority"/>
160                             <field name="categ_ids"
161                                 widget="many2many_tags"
162                                 domain="[('object_id.model','=','crm.lead')]"
163                                 context="{'object_name': 'crm.lead'}"
164                             />
165                         </group>
166                     </group>
167                     <notebook colspan="4">
168                     <page string="Internal Notes">
169                         <field name="description"/>
170                     </page>
171                     <page string="Extra Info">
172                         <group string="Categorization" groups="base.group_multi_company,base.group_no_one" name="categorization">
173                             <field name="company_id"
174                                 groups="base.group_multi_company"
175                                 widget="selection" colspan="2"/>
176                         </group>
177                         <group string="Mailings">
178                             <field name="opt_out"/>
179                         </group>
180                         <group string="Misc">
181                             <group>
182                                 <field name="probability" groups="base.group_no_one"/>
183                                 <field name="active"/>
184                                 <field name="referred"/>
185                             </group>
186                             <group>
187                                 <field name="date_open" groups="base.group_no_one"/>
188                                 <field name="date_closed" groups="base.group_no_one"/>
189                             </group>
190                         </group>
191                     </page>
192                     </notebook>
193                 </sheet>
194                 <div class="oe_chatter">
195                     <field name="message_follower_ids" widget="mail_followers"/>
196                     <field name="message_ids" widget="mail_thread"/>
197                 </div>
198             </form>
199         </field>
200         </record>
201
202         <!-- CRM Lead Graph View -->
203         <record model="ir.ui.view" id="crm_case_graph_view_leads">
204             <field name="name">Opportunities</field>
205             <field name="model">crm.lead</field>
206             <field name="arch" type="xml">
207                 <graph string="Opportunities" type="bar">
208                     <field name="stage_id"/>
209                     <field name="planned_revenue" operator="+"/>
210                 </graph>
211             </field>
212         </record>
213
214         <!-- CRM Lead Tree View -->
215         <record model="ir.ui.view" id="crm_case_tree_view_leads">
216             <field name="name">Leads</field>
217             <field name="model">crm.lead</field>
218             <field name="arch" type="xml">
219                 <tree string="Leads" fonts="bold:message_unread==True" colors="grey:probability == 100">
220                     <field name="date_deadline" invisible="1"/>
221                     <field name="create_date"/>
222                     <field name="name"/>
223                     <field name="contact_name"/>
224                     <field name="country_id" invisible="context.get('invisible_country', True)"/>
225                     <field name="email_from"/>
226                     <field name="phone"/>
227                     <field name="stage_id"/>
228                     <field name="user_id" invisible="1"/>
229                     <field name="partner_id" invisible="1"/>
230                     <field name="section_id" invisible="context.get('invisible_section', True)" groups="base.group_multi_salesteams"/>
231                     <field name="probability" invisible="1"/>
232                     <field name="type_id" invisible="1"/>
233                     <field name="referred" invisible="1"/>
234                     <field name="channel_id" invisible="1"/>
235                     <field name="message_unread" invisible="1"/>
236                 </tree>
237             </field>
238         </record>
239
240
241         <!-- CRM Lead Calendar View -->
242         <record model="ir.ui.view" id="crm_case_calendar_view_leads">
243             <field name="name">CRM - Leads Calendar</field>
244             <field name="model">crm.lead</field>
245             <field name="priority" eval="2"/>
246             <field name="arch" type="xml">
247                 <calendar string="Leads Generation"
248                     date_start="date_action" color="user_id">
249                     <field name="name"/>
250                     <field name="partner_name"/>
251                 </calendar>
252             </field>
253         </record>
254
255         <!-- CRM Lead Kanban View  -->
256         <record model="ir.ui.view" id="crm_case_kanban_view_leads">
257             <field name="name">CRM - Leads Kanban</field>
258             <field name="model">crm.lead</field>
259             <field name="arch" type="xml">
260                 <kanban default_group_by="stage_id">
261                     <field name="stage_id"/>
262                     <field name="color"/>
263                     <field name="priority"/>
264                     <field name="planned_revenue" sum="Expected Revenues"/>
265                     <field name="user_email"/>
266                     <field name="user_id"/>
267                     <field name="partner_address_email"/>
268                     <field name="message_summary"/>
269                     <field name="message_unread"/>
270                     <templates>
271                         <field name="date_deadline"/>
272                         <t t-name="kanban-box">
273                             <div t-attf-class="oe_kanban_color_#{kanban_getcolor(record.color.raw_value)} oe_kanban_card oe_kanban_global_click">
274                                 <div class="oe_dropdown_toggle oe_dropdown_kanban">
275                                     <span class="oe_e">í</span>
276                                     <ul class="oe_dropdown_menu">
277                                         <t t-if="widget.view.is_action_enabled('edit')"><li><a type="edit">Edit...</a></li></t>
278                                         <t t-if="widget.view.is_action_enabled('delete')"><li><a type="delete">Delete</a></li></t>
279                                         <li><a name="%(mail.action_email_compose_message_wizard)d" type="action">Send Email</a></li>
280                                         <li><a name="%(opportunity2phonecall_act)d" type="action">Schedule/Log Call</a></li>
281                                         <li><a name="action_makeMeeting" type="object">Schedule Meeting</a></li>
282                                         <li><ul class="oe_kanban_colorpicker" data-field="color"/></li>
283                                     </ul>
284                                 </div>
285                                 <div class="oe_kanban_content">
286                                     <div>
287                                         <b><field name="name"/></b>
288                                         <t t-if="record.planned_revenue.raw_value">
289                                             - <b><t t-esc="record.planned_revenue.value"/>
290                                             <field name="company_currency"/></b>
291                                         </t>
292                                     </div>
293                                     <div>
294                                         <field name="partner_id"/>
295                                     </div>
296                                     <div style="padding-left: 0.5em">
297                                         <t t-if="record.date_deadline.raw_value and record.date_deadline.raw_value lt (new Date())" t-set="red">oe_kanban_text_red</t>
298                                         <span t-attf-class="#{red || ''}"><field name="date_action"/></span>
299                                         <t t-if="record.date_action.raw_value"> : </t>
300                                         <field name="title_action"/>
301                                     </div>
302                                     <div class="oe_kanban_bottom_right">
303                                         <a t-if="record.priority.raw_value == 1" type="object" name="set_normal_priority" class="oe_e oe_star_on">7</a>
304                                         <a t-if="record.priority.raw_value != 1" type="object" name="set_high_priority" class="oe_e oe_star_off">7</a>
305                                         <img t-att-src="kanban_image('res.users', 'image_small', record.user_id.raw_value)" t-att-title="record.user_id.value" width="24" height="24" class="oe_kanban_avatar" t-if="record.user_id.value"/>
306                                     </div>
307                                     <div class="oe_kanban_footer_left">
308                                         <t t-raw="record.message_summary.raw_value"/>
309                                     </div>
310                                 </div>
311                                 <div class="oe_clear"></div>
312                             </div>
313                         </t>
314                     </templates>
315                 </kanban>
316             </field>
317         </record>
318
319         <!-- CRM Lead Search View -->
320         <record id="view_crm_case_leads_filter" model="ir.ui.view">
321             <field name="name">CRM - Leads Search</field>
322             <field name="model">crm.lead</field>
323             <field name="arch" type="xml">
324                 <search string="Search Leads">
325                     <field name="name" string="Lead / Customer" filter_domain="['|','|',('partner_name','ilike',self),('email_from','ilike',self),('name','ilike',self)]"/>
326                     <field name="categ_ids" string="Category" filter_domain="[('categ_ids','ilike',self)]"/>
327                     <field name="section_id" context="{'invisible_section': False}" groups="base.group_multi_salesteams"/>
328                     <field name="user_id"/>
329                     <field name="partner_id" filter_domain="[('partner_id','child_of',self)]"/>
330                     <field name="create_date"/>
331                     <field name="country_id" context="{'invisible_country': False}"/>
332                     <separator/>
333                     <filter string="Unassigned" name="unassigned"
334                             domain="[('user_id','=', False)]"
335                             help="No salesperson"/>
336                     <filter string="Assigned to Me"
337                             domain="[('user_id','=',uid)]" context="{'invisible_section': False}"
338                             help="Leads that are assigned to me"/>
339                     <filter string="Assigned to My Team(s)" groups="base.group_multi_salesteams"
340                             domain="[('section_id.member_ids', 'in', [uid])]" context="{'invisible_section': False}"
341                             help="Leads that are assigned to any sales teams I am member of"/>
342                     <filter string="Dead" name="dead"
343                             domain="[('probability', '=', '0'), ('stage_id.sequence', '!=', 1)]"/>
344                     <separator />
345                     <filter string="Available for mass mailing"
346                             name='not_opt_out' domain="[('opt_out', '=', False)]"
347                             help="Leads that did not ask not to be included in mass mailing campaigns"/>
348                     <separator />
349                     <group expand="0" string="Group By...">
350                         <filter string="Salesperson" domain="[]" context="{'group_by':'user_id'}"/>
351                         <filter string="Team" domain="[]" context="{'group_by':'section_id'}" groups="base.group_multi_salesteams"/>
352                         <filter string="Stage" domain="[]" context="{'group_by':'stage_id'}"/>
353                         <filter string="Customer" help="Partner" domain="[]" context="{'group_by':'partner_id'}"/>
354                         <filter string="Country" domain="[]" context="{'group_by':'country_id'}"/>
355                         <filter string="Referrer" domain="[]" context="{'group_by':'referred'}"/>
356                         <filter string="Campaign" domain="[]" context="{'group_by':'type_id'}"/>
357                         <filter string="Channel" domain="[]" context="{'group_by':'channel_id'}"/>
358                         <filter string="Creation" domain="[]" context="{'group_by':'create_date'}"/>
359                     </group>
360                     <group string="Display">
361                         <filter string="Show Countries" context="{'invisible_country': False}" help="Show Countries"/>
362                         <filter string="Show Sales Team" context="{'invisible_section': False}" domain="[]" help="Show Sales Team" groups="base.group_multi_salesteams"/>
363                     </group>
364                 </search>
365             </field>
366         </record>
367
368
369         <!--
370             OPPORTUNITY
371         -->
372
373         <!-- Opportunities Form View -->
374         <record model="ir.ui.view" id="crm_case_form_view_oppor">
375             <field name="name">Opportunities</field>
376             <field name="model">crm.lead</field>
377             <field name="priority">20</field>
378             <field name="arch" type="xml">
379                 <form string="Opportunities" version="7.0">
380                     <header>
381                         <button name="case_mark_won" string="Mark Won" type="object" class="oe_highlight"
382                                 attrs="{'invisible': [('probability', '=', 100)]}"/>
383                         <button name="case_mark_lost" string="Mark Lost" type="object" class="oe_highlight"
384                                 attrs="{'invisible': ['|', ('probability', '=', 0), ('probability', '=', 100)]}"/>
385                         <field name="stage_id" widget="statusbar" clickable="True"
386                                 domain="['&amp;', ('section_ids', '=', section_id), '|', ('type', '=', type), ('type', '=', 'both')]"/>
387                     </header>
388                     <sheet>
389                         <div class="oe_right oe_button_box">
390                             <button string="Schedule/Log Call" type="action"
391                                 name="%(opportunity2phonecall_act)d"/>
392                             <button string="Meeting" type="object"
393                                 name="action_makeMeeting"
394                                 context="{'search_default_attendee_id': active_id, 'default_attendee_id' : active_id}"/>
395                         </div>
396                         <div class="oe_title">
397                             <label for="name" class="oe_edit_only"/>
398                             <h1><field name="name"/></h1>
399                             <label for="planned_revenue" class="oe_edit_only"/>
400                             <h2>
401                                 <field name="company_currency" invisible="1"/>
402                                 <field name="planned_revenue" class="oe_inline" widget='monetary' options="{'currency_field': 'company_currency'}"/>
403                                 <span class="oe_grey"> at </span>
404                                 <field name="probability" class="oe_inline" widget="integer"/>%%
405                             </h2>
406                         </div>
407                         <group>
408                             <group>
409                                 <field name="partner_id"
410                                     on_change="on_change_partner_id(partner_id)"
411                                     string="Customer"
412                                     context="{'default_name': partner_name, 'default_email': email_from, 'default_phone': phone}"/>
413                                 <field name="email_from" string="Email"/>
414                                 <field name="phone"/>
415                             </group>
416
417                             <group>
418                                 <label for="title_action"/>
419                                 <div>
420                                     <field name="date_action" nolabel="1"/> <label string="-" attrs="{'invisible': ['|', ('date_action', '=', False), ('title_action', '=', False)]}"/>
421                                     <field name="title_action" class="oe_inline" nolabel="1" placeholder="e.g. Call for proposal"/>
422                                 </div>
423                                 <field name="date_deadline"/>
424                                 <field name="priority"/>
425                             </group>
426
427                             <group>
428                                 <field name="user_id" on_change="on_change_user(user_id, context)" context="{'default_groups_ref': ['base.group_user', 'base.group_sale_salesman_all_leads']}"/>
429                                 <label for="section_id" groups="base.group_multi_salesteams"/>
430                                 <div groups="base.group_multi_salesteams">
431                                     <field name="section_id" widget="selection"/>
432                                     <button name="case_escalate" string="Escalate" type="object" class="oe_link"
433                                             attrs="{'invisible': ['|', ('section_id','=',False), ('probability', '=', 100)]}"/>
434                                 </div>
435                             </group>
436                             <group>
437                                 <field name="categ_ids"
438                                     string="Categories" widget="many2many_tags"
439                                     context="{'object_name': 'crm.lead'}"
440                                     domain="[('object_id.model', '=', 'crm.lead')]"/>
441
442                             </group>
443                         </group>
444
445                         <notebook colspan="4">
446                         <page string="Internal Notes">
447                             <field name="description"/>
448                         </page>
449                         <page string="Lead">
450                             <group>
451                                 <group>
452                                     <field name="partner_name"/>
453                                     <label for="street" string="Address"/>
454                                     <div>
455                                         <field name="street" placeholder="Street..."/>
456                                         <field name="street2"/>
457                                         <div class="address_format">
458                                             <field name="city" placeholder="City" style="width: 40%%"/>
459                                             <field name="state_id" options='{"no_open": True}' on_change="onchange_state(state_id)" placeholder="State" style="width: 24%%"/>
460                                             <field name="zip" placeholder="ZIP" style="width: 34%%"/>
461                                         </div>
462                                         <field name="country_id" placeholder="Country" options='{"no_open": True}'/>
463                                     </div>
464                                 </group>
465
466                                 <group>
467                                     <label for="contact_name"/>
468                                     <div>
469                                         <field name="contact_name" class="oe_inline"/>
470                                         <field name="title" placeholder="Title" domain="[('domain', '=', 'contact')]" options='{"no_open": True}' class="oe_inline"/>
471                                     </div>
472                                     <field name="function"/>
473                                     <field name="mobile"/>
474                                     <field name="fax"/>
475                                 </group>
476                                 <group string="Mailings" name="mailings">
477                                     <field name="opt_out"/>
478                                 </group>
479                                 <group string="Misc">
480                                     <field name="active"/>
481                                     <field name="day_open" groups="base.group_no_one"/>
482                                     <field name="day_close" groups="base.group_no_one"/>
483                                     <field name="referred"/>
484                                     <field name="type" invisible="1"/>
485                                 </group>
486                                 <group string="References">
487                                     <field name="ref"/>
488                                     <field name="ref2"/>
489                                 </group>
490                             </group>
491                         </page>
492                         <page string="Fund Raising" groups="crm.group_fund_raising">
493                             <group>
494                                 <field name="payment_mode" widget="selection"/>
495                                 <field name="planned_cost"/>
496                             </group>
497                         </page>
498                         </notebook>
499                     </sheet>
500                     <div class="oe_chatter">
501                         <field name="message_follower_ids" widget="mail_followers"/>
502                         <field name="message_ids" widget="mail_thread"/>
503                     </div>
504                 </form>
505             </field>
506         </record>
507
508         <!-- Opportunities Tree View -->
509         <record model="ir.ui.view" id="crm_case_tree_view_oppor">
510             <field name="name">Opportunities Tree</field>
511             <field name="model">crm.lead</field>
512             <field name="arch" type="xml">
513                 <tree string="Opportunities" fonts="bold:message_unread==True" colors="gray:probability == 100;red:date_deadline and (date_deadline &lt; current_date)">
514                     <field name="date_deadline" invisible="1"/>
515                     <field name="create_date"/>
516                     <field name="name" string="Opportunity"/>
517                     <field name="partner_id" string="Customer"/>
518                     <field name="country_id" invisible="context.get('invisible_country', True)"/>
519                     <field name="date_action"/>
520                     <field name="title_action"/>
521                     <field name="channel_id" invisible="1"/>
522                     <field name="type_id" invisible="1"/>
523                     <field name="stage_id"/>
524                     <field name="planned_revenue" sum="Expected Revenues"/>
525                     <field name="probability" avg="Avg. of Probability"/>
526                     <field name="section_id" invisible="context.get('invisible_section', True)" groups="base.group_multi_salesteams"/>
527                     <field name="user_id"/>
528                     <field name="referred" invisible="1"/>
529                     <field name="priority" invisible="1"/>
530                     <field name="message_unread" invisible="1"/>
531                     <field name="probability" invisible="1"/>
532                     <field name="write_date" invisible="1"/>
533                 </tree>
534             </field>
535         </record>
536
537
538         <!-- Opportunities Search View -->
539         <record id="view_crm_case_opportunities_filter" model="ir.ui.view">
540             <field name="name">CRM - Opportunities Search</field>
541             <field name="model">crm.lead</field>
542             <field name="arch" type="xml">
543                 <search string="Search Opportunities">
544                     <field name="name" string="Opportunity" filter_domain="['|','|','|',('partner_id','ilike',self),('partner_name','ilike',self),('email_from','ilike',self),('name', 'ilike', self)]"/>
545                     <field name="categ_ids" string="Category" filter_domain="[('categ_ids','ilike', self)]"/>
546                     <field name="section_id" context="{'invisible_section': False}" groups="base.group_multi_salesteams"/>
547                     <field name="user_id"/>
548                     <field name="partner_id" filter_domain="[('partner_id','child_of',self)]"/>
549                     <field name="stage_id" domain="[]"/>
550                     <field name="probability"/>
551                     <separator/>
552                     <filter string="New" name="new"
553                             domain="[('probability', '=', 0), ('stage_id.sequence', '=', 1)]"/>
554                     <filter string="Won" name="won"
555                             domain="[('probability', '=', 100), ('stage_id.on_change', '=', 1)]"/>
556                     <filter string="Lost" name="lost"
557                             domain="[('probability', '=', 0), ('stage_id.sequence', '!=', 1)]"/>
558                     <filter string="Unassigned" name="unassigned"
559                             domain="[('user_id','=', False)]" help="No salesperson"/>
560                     <filter string="My Opportunities" name="assigned_to_me"
561                             domain="[('user_id', '=', uid)]" context="{'invisible_section': False}"
562                             help="Opportunities that are assigned to me"/>
563                     <filter string="Assigned to My Team(s)"
564                             domain="[('section_id.member_ids', 'in', [uid])]" context="{'invisible_section': False}"
565                             help="Opportunities that are assigned to any sales teams I am member of"/>
566                     <separator/>
567                     <group expand="0" string="Group By..." colspan="16">
568                         <filter string="Salesperson" domain="[]" context="{'group_by':'user_id'}"/>
569                         <filter string="Team" domain="[]" context="{'group_by':'section_id'}"/>
570                         <filter string="Stage" domain="[]" context="{'group_by':'stage_id'}"/>
571                         <filter string="Customer" help="Partner" domain="[]" context="{'group_by':'partner_id'}"/>
572                         <filter string="Country" domain="[]" context="{'group_by':'country_id'}"/>
573                         <filter string="Priority" domain="[]" context="{'group_by':'priority'}"/>
574                         <filter string="Expected Closing" domain="[]" context="{'group_by':'date_deadline'}"/>
575                         <filter string="Referrer" domain="[]" context="{'group_by':'referred'}"/>
576                         <filter string="Campaign" domain="[]" context="{'group_by':'type_id'}"/>
577                         <filter string="Channel" domain="[]" context="{'group_by':'channel_id'}"/>
578                         <filter string="Creation" domain="[]" context="{'group_by':'create_date'}"/>
579                         <filter string="Last Update Month" domain="[]" context="{'group_by':'write_date'}"/>
580                     </group>
581                     <group string="Display">
582                         <filter string="Show Sales Team" context="{'invisible_section': False}" domain="[]" help="Show Sales Team" groups="base.group_multi_salesteams"/>
583                         <filter string="Show Countries" context="{'invisible_country': False}" help="Show Countries"/>
584                     </group>
585                 </search>
586             </field>
587         </record>
588
589         <!--
590             MASS MAILING
591         -->
592         <act_window name="Lead/Opportunity Mass Mail"
593                 res_model="mail.compose.message"
594                 src_model="crm.lead"
595                 view_mode="form"
596                 multi="True"
597                 target="new"
598                 key2="client_action_multi"
599                 id="crm.action_lead_mass_mail"
600                 context="{
601                             'default_composition_mode': 'mass_mail',
602                             'default_email_to':'{$object.email or \'\'}',
603                             'default_use_template': True,
604                             'default_template_id': ref('crm.email_template_opportunity_mail'),
605                         }"
606                 groups="base.group_sale_salesman"
607                 />
608
609         <!--Update of email_template defined in crm_lead_data, to add ref_ir_act_window
610             allowing to have a well formed email template (context action considered as set). -->
611         <record id="email_template_opportunity_mail" model="email.template">
612             <field name="ref_ir_act_window" ref="crm.action_lead_mass_mail"/>
613         </record>
614
615         <record id="action_mark_as_lost" model="ir.actions.server">
616             <field name="name">Mark As Lost</field>
617             <field name="model_id" ref="model_crm_lead"/>
618             <field name="state">code</field>
619             <field name="code">
620                 if context.get('active_model') == 'crm.lead' and context.get('active_ids'):
621                     self.case_mark_lost(cr, uid, context['active_ids'], context=context)
622             </field>
623             <field name="groups_id" eval="[(4,ref('base.group_sale_salesman'))]"/>
624         </record>
625
626         <record id="ir_mark_as_lost" model="ir.values">
627             <field eval="'client_action_multi'" name="key2"/>
628             <field eval="'crm.lead'" name="model"/>
629             <field name="name">Mark As Lost</field>
630             <field eval="'ir.actions.server,%d'%action_mark_as_lost" name="value"/>
631         </record>
632
633     </data>
634 </openerp>