[CLEAN] crm: removed minified file for sparkline as we use plain file; small changes in views.

bzr revid: tde@openerp.com-20130604105648-ytfhdb5wmdrzkyay
This commit is contained in:
Thibault Delavallée 2013-06-04 12:56:48 +02:00
parent 37fb148346
commit 8480636380
4 changed files with 8 additions and 11 deletions

View File

@ -81,6 +81,8 @@ Dashboard for CRM will include:
'crm_lead_view.xml',
'crm_lead_menu.xml',
'crm_case_section_view.xml',
'crm_meeting_menu.xml',
'crm_phonecall_view.xml',
@ -95,7 +97,6 @@ Dashboard for CRM will include:
'board_crm_view.xml',
'res_config_view.xml',
'crm_case_section_view.xml',
'base_partner_merge_view.xml',
],
'demo': [
@ -120,8 +121,8 @@ Dashboard for CRM will include:
'static/src/css/crm.css'
],
'js': [
'static/lib/sparkline/jquery.sparkline.js',
'static/src/js/crm_case_section.js',
'static/lib/sparkline/jquery.sparkline.min.js',
],
'installable': True,
'application': True,

View File

@ -125,8 +125,9 @@
<field name="parent_id"/>
<field name="user_id"/>
<field name="note"/>
<filter name="my" string="My" domain="['|', ('member_ids', '=', uid), ('user_id', '=', uid)]"/>
<filter name="personal" string="My Salesteams" domain="['|', ('member_ids', '=', uid), ('user_id', '=', uid)]"/>
<group expand="0" string="Group By...">
<filter string="Team Leader" domain="[]" context="{'group_by':'user_id'}"/>
<filter string="Parent Sales Teams" domain="[]" context="{'group_by':'parent_id'}"/>
</group>
</search>
@ -140,7 +141,7 @@
<field name="res_model">crm.case.section</field>
<field name="view_type">form</field>
<field name="view_mode">kanban,tree,form</field>
<field name="context">{'search_default_my': True}</field>
<field name="context">{'search_default_personal': True}</field>
<field name="view_id" ref="crm_case_section_salesteams_view_kanban"/>
<field name="help" type="html">
<p class="oe_view_nocontent_create">
@ -164,7 +165,7 @@
<div class="oe_title">
<label for="name" class="oe_edit_only" string="Sales team"/>
<h1>
<field name="name" string="Sales team"/>
<field name="name" string="Salesteam"/>
</h1>
<div name="group_alias"
attrs="{'invisible': [('alias_domain', '=', False)]}">

View File

@ -557,7 +557,7 @@
<filter string="Lost" name="lost" domain="[('state','=','cancel')]"/>
<filter string="Unassigned" name="unassigned" domain="[('user_id','=', False)]" help="No salesperson"/>
<filter string="Unread Messages" name="message_unread" domain="[('message_unread','=',True)]" help="Unread messages"/>
<filter string="Mine" name="assigned_to_me"
<filter string="My Opportunities" name="assigned_to_me"
domain="[('user_id','=',uid)]" context="{'invisible_section': False}"
help="Opportunities that are assigned to me"/>
<filter string="Assigned to My Team(s)"

File diff suppressed because one or more lines are too long