Launchpad automatic translations update.
[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_partner_manager', '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>
173                             <group string="Categorization" groups="base.group_multi_company,base.group_no_one" name="categorization">
174                                 <field name="company_id"
175                                     groups="base.group_multi_company"
176                                     widget="selection"/>
177                             </group>
178                             <group string="Mailings">
179                                 <field name="opt_out"/>
180                                 <field name="message_bounce"/>
181                             </group>
182                             <group string="Misc">
183                                 <field name="probability" groups="base.group_no_one"/>
184                                 <field name="active"/>
185                                 <field name="referred"/>
186                             </group>
187                             <group>
188                                 <field name="date_open" groups="base.group_no_one"/>
189                                 <field name="date_closed" groups="base.group_no_one"/>
190                             </group>
191                         </group>
192                     </page>
193                     </notebook>
194                 </sheet>
195                 <div class="oe_chatter">
196                     <field name="message_follower_ids" widget="mail_followers"/>
197                     <field name="message_ids" widget="mail_thread"/>
198                 </div>
199             </form>
200         </field>
201         </record>
202
203         <!-- CRM Lead Graph View -->
204         <record model="ir.ui.view" id="crm_case_graph_view_leads">
205             <field name="name">Opportunities</field>
206             <field name="model">crm.lead</field>
207             <field name="arch" type="xml">
208                 <graph string="Opportunities" type="bar">
209                     <field name="stage_id"/>
210                     <field name="planned_revenue" operator="+"/>
211                 </graph>
212             </field>
213         </record>
214
215         <!-- CRM Lead Tree View -->
216         <record model="ir.ui.view" id="crm_case_tree_view_leads">
217             <field name="name">Leads</field>
218             <field name="model">crm.lead</field>
219             <field name="arch" type="xml">
220                 <tree string="Leads" fonts="bold:message_unread==True" colors="grey:probability == 100">
221                     <field name="date_deadline" invisible="1"/>
222                     <field name="create_date"/>
223                     <field name="name"/>
224                     <field name="contact_name"/>
225                     <field name="country_id" invisible="context.get('invisible_country', True)"/>
226                     <field name="email_from"/>
227                     <field name="phone"/>
228                     <field name="stage_id"/>
229                     <field name="user_id" invisible="1"/>
230                     <field name="partner_id" invisible="1"/>
231                     <field name="section_id" invisible="context.get('invisible_section', True)" groups="base.group_multi_salesteams"/>
232                     <field name="probability" invisible="1"/>
233                     <field name="type_id" invisible="1"/>
234                     <field name="referred" invisible="1"/>
235                     <field name="channel_id" invisible="1"/>
236                     <field name="message_unread" invisible="1"/>
237                 </tree>
238             </field>
239         </record>
240
241
242         <!-- CRM Lead Calendar View -->
243         <record model="ir.ui.view" id="crm_case_calendar_view_leads">
244             <field name="name">CRM - Leads Calendar</field>
245             <field name="model">crm.lead</field>
246             <field name="priority" eval="2"/>
247             <field name="arch" type="xml">
248                 <calendar string="Leads Generation"
249                     date_start="date_action" color="user_id">
250                     <field name="name"/>
251                     <field name="partner_name"/>
252                 </calendar>
253             </field>
254         </record>
255
256         <!-- CRM Lead Kanban View  -->
257         <record model="ir.ui.view" id="crm_case_kanban_view_leads">
258             <field name="name">CRM - Leads Kanban</field>
259             <field name="model">crm.lead</field>
260             <field name="arch" type="xml">
261                 <kanban default_group_by="stage_id">
262                     <field name="stage_id"/>
263                     <field name="color"/>
264                     <field name="priority"/>
265                     <field name="planned_revenue" sum="Expected Revenues"/>
266                     <field name="user_email"/>
267                     <field name="user_id"/>
268                     <field name="partner_address_email"/>
269                     <field name="message_summary"/>
270                     <field name="message_unread"/>
271                     <templates>
272                         <field name="date_deadline"/>
273                         <t t-name="kanban-box">
274                             <div t-attf-class="oe_kanban_color_#{kanban_getcolor(record.color.raw_value)} oe_kanban_card oe_kanban_global_click">
275                                 <div class="oe_dropdown_toggle oe_dropdown_kanban">
276                                     <span class="oe_e">í</span>
277                                     <ul class="oe_dropdown_menu">
278                                         <t t-if="widget.view.is_action_enabled('edit')"><li><a type="edit">Edit...</a></li></t>
279                                         <t t-if="widget.view.is_action_enabled('delete')"><li><a type="delete">Delete</a></li></t>
280                                         <li><a name="%(mail.action_email_compose_message_wizard)d" type="action">Send Email</a></li>
281                                         <li><a name="%(opportunity2phonecall_act)d" type="action">Schedule/Log Call</a></li>
282                                         <li><a name="action_makeMeeting" type="object">Schedule Meeting</a></li>
283                                         <li><ul class="oe_kanban_colorpicker" data-field="color"/></li>
284                                     </ul>
285                                 </div>
286                                 <div class="oe_kanban_content">
287                                     <div>
288                                         <b><field name="name"/></b>
289                                         <t t-if="record.planned_revenue.raw_value">
290                                             - <b><t t-esc="record.planned_revenue.value"/>
291                                             <field name="company_currency"/></b>
292                                         </t>
293                                     </div>
294                                     <div>
295                                         <field name="partner_id"/>
296                                     </div>
297                                     <div style="padding-left: 0.5em">
298                                         <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>
299                                         <span t-attf-class="#{red || ''}"><field name="date_action"/></span>
300                                         <t t-if="record.date_action.raw_value"> : </t>
301                                         <field name="title_action"/>
302                                     </div>
303                                     <div class="oe_kanban_bottom_right">
304                                         <a t-if="record.priority.raw_value == 1" type="object" name="set_normal_priority" class="oe_e oe_star_on">7</a>
305                                         <a t-if="record.priority.raw_value != 1" type="object" name="set_high_priority" class="oe_e oe_star_off">7</a>
306                                         <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"/>
307                                     </div>
308                                     <div class="oe_kanban_footer_left">
309                                         <t t-raw="record.message_summary.raw_value"/>
310                                     </div>
311                                 </div>
312                                 <div class="oe_clear"></div>
313                             </div>
314                         </t>
315                     </templates>
316                 </kanban>
317             </field>
318         </record>
319
320         <!-- CRM Lead Search View -->
321         <record id="view_crm_case_leads_filter" model="ir.ui.view">
322             <field name="name">CRM - Leads Search</field>
323             <field name="model">crm.lead</field>
324             <field name="arch" type="xml">
325                 <search string="Search Leads">
326                     <field name="name" string="Lead / Customer" filter_domain="['|','|',('partner_name','ilike',self),('email_from','ilike',self),('name','ilike',self)]"/>
327                     <field name="categ_ids" string="Category" filter_domain="[('categ_ids','ilike',self)]"/>
328                     <field name="section_id" context="{'invisible_section': False}" groups="base.group_multi_salesteams"/>
329                     <field name="user_id"/>
330                     <field name="partner_id" filter_domain="[('partner_id','child_of',self)]"/>
331                     <field name="create_date"/>
332                     <field name="country_id" context="{'invisible_country': False}"/>
333                     <separator/>
334                     <filter string="Unassigned" name="unassigned"
335                             domain="[('user_id','=', False)]"
336                             help="No salesperson"/>
337                     <filter string="Assigned to Me"
338                             domain="[('user_id','=',uid)]" context="{'invisible_section': False}"
339                             help="Leads that are assigned to me"/>
340                     <filter string="Assigned to My Team(s)" groups="base.group_multi_salesteams"
341                             domain="[('section_id.member_ids', 'in', [uid])]" context="{'invisible_section': False}"
342                             help="Leads that are assigned to any sales teams I am member of"/>
343                     <filter string="Dead" name="dead"
344                             domain="[('probability', '=', '0'), ('stage_id.sequence', '!=', 1)]"/>
345                     <separator />
346                     <filter string="Available for mass mailing"
347                             name='not_opt_out' domain="[('opt_out', '=', False)]"
348                             help="Leads that did not ask not to be included in mass mailing campaigns"/>
349                     <separator />
350                     <group expand="0" string="Group By...">
351                         <filter string="Salesperson" domain="[]" context="{'group_by':'user_id'}"/>
352                         <filter string="Team" domain="[]" context="{'group_by':'section_id'}" groups="base.group_multi_salesteams"/>
353                         <filter string="Stage" domain="[]" context="{'group_by':'stage_id'}"/>
354                         <filter string="Customer" help="Partner" domain="[]" context="{'group_by':'partner_id'}"/>
355                         <filter string="Country" domain="[]" context="{'group_by':'country_id'}"/>
356                         <filter string="Referrer" domain="[]" context="{'group_by':'referred'}"/>
357                         <filter string="Campaign" domain="[]" context="{'group_by':'type_id'}"/>
358                         <filter string="Channel" domain="[]" context="{'group_by':'channel_id'}"/>
359                         <filter string="Creation" domain="[]" context="{'group_by':'create_date'}"/>
360                     </group>
361                     <group string="Display">
362                         <filter string="Show Countries" context="{'invisible_country': False}" help="Show Countries"/>
363                         <filter string="Show Sales Team" context="{'invisible_section': False}" domain="[]" help="Show Sales Team" groups="base.group_multi_salesteams"/>
364                     </group>
365                 </search>
366             </field>
367         </record>
368
369
370         <!--
371             OPPORTUNITY
372         -->
373
374         <!-- Opportunities Form View -->
375         <record model="ir.ui.view" id="crm_case_form_view_oppor">
376             <field name="name">Opportunities</field>
377             <field name="model">crm.lead</field>
378             <field name="priority">20</field>
379             <field name="arch" type="xml">
380                 <form string="Opportunities" version="7.0">
381                     <header>
382                         <button name="case_mark_won" string="Mark Won" type="object" class="oe_highlight"
383                                 attrs="{'invisible': [('probability', '=', 100)]}"/>
384                         <button name="case_mark_lost" string="Mark Lost" type="object" class="oe_highlight"
385                                 attrs="{'invisible': ['|', ('probability', '=', 0), ('probability', '=', 100)]}"/>
386                         <field name="stage_id" widget="statusbar" clickable="True"
387                                 domain="['&amp;', ('section_ids', '=', section_id), '|', ('type', '=', type), ('type', '=', 'both')]"/>
388                     </header>
389                     <sheet>
390                         <div class="oe_right oe_button_box">
391                             <button string="Schedule/Log Call" type="action"
392                                 name="%(opportunity2phonecall_act)d"/>
393                             <button string="Meeting" type="object"
394                                 name="action_makeMeeting"
395                                 context="{'search_default_attendee_id': active_id, 'default_attendee_id' : active_id}"/>
396                         </div>
397                         <div class="oe_title">
398                             <label for="name" class="oe_edit_only"/>
399                             <h1><field name="name"/></h1>
400                             <label for="planned_revenue" class="oe_edit_only"/>
401                             <h2>
402                                 <field name="company_currency" invisible="1"/>
403                                 <field name="planned_revenue" class="oe_inline" widget='monetary' options="{'currency_field': 'company_currency'}"/>
404                                 <span class="oe_grey"> at </span>
405                                 <field name="probability" class="oe_inline" widget="integer"/>%%
406                             </h2>
407                         </div>
408                         <group>
409                             <group>
410                                 <field name="partner_id"
411                                     on_change="on_change_partner_id(partner_id)"
412                                     string="Customer"
413                                     context="{'default_name': partner_name, 'default_email': email_from, 'default_phone': phone}"/>
414                                 <field name="email_from" string="Email"/>
415                                 <field name="phone"/>
416                             </group>
417
418                             <group>
419                                 <label for="title_action"/>
420                                 <div>
421                                     <field name="date_action" nolabel="1"/> <label string="-" attrs="{'invisible': ['|', ('date_action', '=', False), ('title_action', '=', False)]}"/>
422                                     <field name="title_action" class="oe_inline" nolabel="1" placeholder="e.g. Call for proposal"/>
423                                 </div>
424                                 <field name="date_deadline"/>
425                                 <field name="priority"/>
426                             </group>
427
428                             <group>
429                                 <field name="user_id" on_change="on_change_user(user_id, context)" context="{'default_groups_ref': ['base.group_user', 'base.group_partner_manager', 'base.group_sale_salesman_all_leads']}"/>
430                                 <label for="section_id" groups="base.group_multi_salesteams"/>
431                                 <div groups="base.group_multi_salesteams">
432                                     <field name="section_id" widget="selection"/>
433                                     <button name="case_escalate" string="Escalate" type="object" class="oe_link"
434                                             attrs="{'invisible': ['|', ('section_id','=',False), ('probability', '=', 100)]}"/>
435                                 </div>
436                             </group>
437                             <group>
438                                 <field name="categ_ids"
439                                     string="Categories" widget="many2many_tags"
440                                     context="{'object_name': 'crm.lead'}"
441                                     domain="[('object_id.model', '=', 'crm.lead')]"/>
442
443                             </group>
444                         </group>
445
446                         <notebook colspan="4">
447                         <page string="Internal Notes">
448                             <field name="description"/>
449                         </page>
450                         <page string="Lead">
451                             <group>
452                                 <group>
453                                     <field name="partner_name"/>
454                                     <label for="street" string="Address"/>
455                                     <div>
456                                         <field name="street" placeholder="Street..."/>
457                                         <field name="street2"/>
458                                         <div class="address_format">
459                                             <field name="city" placeholder="City" style="width: 40%%"/>
460                                             <field name="state_id" options='{"no_open": True}' on_change="onchange_state(state_id)" placeholder="State" style="width: 24%%"/>
461                                             <field name="zip" placeholder="ZIP" style="width: 34%%"/>
462                                         </div>
463                                         <field name="country_id" placeholder="Country" options='{"no_open": True}'/>
464                                     </div>
465                                 </group>
466
467                                 <group>
468                                     <label for="contact_name"/>
469                                     <div>
470                                         <field name="contact_name" class="oe_inline"/>
471                                         <field name="title" placeholder="Title" domain="[('domain', '=', 'contact')]" options='{"no_open": True}' class="oe_inline"/>
472                                     </div>
473                                     <field name="function"/>
474                                     <field name="mobile"/>
475                                     <field name="fax"/>
476                                 </group>
477                                 <group string="Mailings" name="mailings">
478                                     <field name="opt_out"/>
479                                 </group>
480                                 <group string="Misc">
481                                     <field name="active"/>
482                                     <field name="day_open" groups="base.group_no_one"/>
483                                     <field name="day_close" groups="base.group_no_one"/>
484                                     <field name="referred"/>
485                                     <field name="type" invisible="1"/>
486                                 </group>
487                                 <group string="References">
488                                     <field name="ref"/>
489                                     <field name="ref2"/>
490                                 </group>
491                             </group>
492                         </page>
493                         <page string="Fund Raising" groups="crm.group_fund_raising">
494                             <group>
495                                 <field name="payment_mode" widget="selection"/>
496                                 <field name="planned_cost"/>
497                             </group>
498                         </page>
499                         </notebook>
500                     </sheet>
501                     <div class="oe_chatter">
502                         <field name="message_follower_ids" widget="mail_followers"/>
503                         <field name="message_ids" widget="mail_thread"/>
504                     </div>
505                 </form>
506             </field>
507         </record>
508
509         <!-- Opportunities Tree View -->
510         <record model="ir.ui.view" id="crm_case_tree_view_oppor">
511             <field name="name">Opportunities Tree</field>
512             <field name="model">crm.lead</field>
513             <field name="arch" type="xml">
514                 <tree string="Opportunities" fonts="bold:message_unread==True" colors="gray:probability == 100;red:date_deadline and (date_deadline &lt; current_date)">
515                     <field name="date_deadline" invisible="1"/>
516                     <field name="create_date"/>
517                     <field name="name" string="Opportunity"/>
518                     <field name="partner_id" string="Customer"/>
519                     <field name="country_id" invisible="context.get('invisible_country', True)"/>
520                     <field name="date_action"/>
521                     <field name="title_action"/>
522                     <field name="channel_id" invisible="1"/>
523                     <field name="type_id" invisible="1"/>
524                     <field name="stage_id"/>
525                     <field name="planned_revenue" sum="Expected Revenues"/>
526                     <field name="probability" avg="Avg. of Probability"/>
527                     <field name="section_id" invisible="context.get('invisible_section', True)" groups="base.group_multi_salesteams"/>
528                     <field name="user_id"/>
529                     <field name="referred" invisible="1"/>
530                     <field name="priority" invisible="1"/>
531                     <field name="message_unread" invisible="1"/>
532                     <field name="probability" invisible="1"/>
533                     <field name="write_date" invisible="1"/>
534                 </tree>
535             </field>
536         </record>
537
538
539         <!-- Opportunities Search View -->
540         <record id="view_crm_case_opportunities_filter" model="ir.ui.view">
541             <field name="name">CRM - Opportunities Search</field>
542             <field name="model">crm.lead</field>
543             <field name="arch" type="xml">
544                 <search string="Search Opportunities">
545                     <field name="name" string="Opportunity" filter_domain="['|','|','|',('partner_id','ilike',self),('partner_name','ilike',self),('email_from','ilike',self),('name', 'ilike', self)]"/>
546                     <field name="categ_ids" string="Category" filter_domain="[('categ_ids','ilike', self)]"/>
547                     <field name="section_id" context="{'invisible_section': False}" groups="base.group_multi_salesteams"/>
548                     <field name="user_id"/>
549                     <field name="partner_id" filter_domain="[('partner_id','child_of',self)]"/>
550                     <field name="stage_id" domain="[]"/>
551                     <field name="probability"/>
552                     <separator/>
553                     <filter string="New" name="new"
554                             domain="[('probability', '=', 0), ('stage_id.sequence', '=', 1)]"/>
555                     <filter string="Won" name="won"
556                             domain="[('probability', '=', 100), ('stage_id.on_change', '=', 1)]"/>
557                     <filter string="Lost" name="lost"
558                             domain="[('probability', '=', 0), ('stage_id.sequence', '!=', 1)]"/>
559                     <filter string="Unassigned" name="unassigned"
560                             domain="[('user_id','=', False)]" help="No salesperson"/>
561                     <filter string="My Opportunities" name="assigned_to_me"
562                             domain="[('user_id', '=', uid)]" context="{'invisible_section': False}"
563                             help="Opportunities that are assigned to me"/>
564                     <filter string="Assigned to My Team(s)"
565                             domain="[('section_id.member_ids', 'in', [uid])]" context="{'invisible_section': False}"
566                             help="Opportunities that are assigned to any sales teams I am member of"/>
567                     <separator/>
568                     <group expand="0" string="Group By..." colspan="16">
569                         <filter string="Salesperson" domain="[]" context="{'group_by':'user_id'}"/>
570                         <filter string="Team" domain="[]" context="{'group_by':'section_id'}"/>
571                         <filter string="Stage" domain="[]" context="{'group_by':'stage_id'}"/>
572                         <filter string="Customer" help="Partner" domain="[]" context="{'group_by':'partner_id'}"/>
573                         <filter string="Country" domain="[]" context="{'group_by':'country_id'}"/>
574                         <filter string="Priority" domain="[]" context="{'group_by':'priority'}"/>
575                         <filter string="Expected Closing" domain="[]" context="{'group_by':'date_deadline'}"/>
576                         <filter string="Referrer" domain="[]" context="{'group_by':'referred'}"/>
577                         <filter string="Campaign" domain="[]" context="{'group_by':'type_id'}"/>
578                         <filter string="Channel" domain="[]" context="{'group_by':'channel_id'}"/>
579                         <filter string="Creation" domain="[]" context="{'group_by':'create_date'}"/>
580                         <filter string="Last Update Month" domain="[]" context="{'group_by':'write_date'}"/>
581                     </group>
582                     <group string="Display">
583                         <filter string="Show Sales Team" context="{'invisible_section': False}" domain="[]" help="Show Sales Team" groups="base.group_multi_salesteams"/>
584                         <filter string="Show Countries" context="{'invisible_country': False}" help="Show Countries"/>
585                     </group>
586                 </search>
587             </field>
588         </record>
589
590         <!--
591             MASS MAILING
592         -->
593         <act_window name="Lead/Opportunity Mass Mail"
594                 res_model="mail.compose.message"
595                 src_model="crm.lead"
596                 view_mode="form"
597                 multi="True"
598                 target="new"
599                 key2="client_action_multi"
600                 id="crm.action_lead_mass_mail"
601                 context="{
602                             'default_composition_mode': 'mass_mail',
603                             'default_email_to':'{$object.email or \'\'}',
604                             'default_use_template': True,
605                             'default_template_id': ref('crm.email_template_opportunity_mail'),
606                         }"
607                 groups="base.group_sale_salesman"
608                 />
609
610         <!--Update of email_template defined in crm_lead_data, to add ref_ir_act_window
611             allowing to have a well formed email template (context action considered as set). -->
612         <record id="email_template_opportunity_mail" model="email.template">
613             <field name="ref_ir_act_window" ref="crm.action_lead_mass_mail"/>
614         </record>
615
616         <record id="action_mark_as_lost" model="ir.actions.server">
617             <field name="name">Mark As Lost</field>
618             <field name="model_id" ref="model_crm_lead"/>
619             <field name="state">code</field>
620             <field name="code">
621                 if context.get('active_model') == 'crm.lead' and context.get('active_ids'):
622                     self.case_mark_lost(cr, uid, context['active_ids'], context=context)
623             </field>
624             <field name="groups_id" eval="[(4,ref('base.group_sale_salesman'))]"/>
625         </record>
626
627         <record id="ir_mark_as_lost" model="ir.values">
628             <field eval="'client_action_multi'" name="key2"/>
629             <field eval="'crm.lead'" name="model"/>
630             <field name="name">Mark As Lost</field>
631             <field eval="'ir.actions.server,%d'%action_mark_as_lost" name="value"/>
632         </record>
633
634     </data>
635 </openerp>