Mayur Maheshwari(OpenERP) has proposed merging
lp:~openerp-dev/openobject-addons/trunk-review_all_search-view-mma into
lp:~openerp-dev/openobject-addons/trunk-review_all_search.
Requested reviews:
OpenERP R&D Team (openerp-dev)
For more details, see:
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-review_all_search-view-mma/+merge/107618
Hello Sir,
I have removed default filters and select as per specification of pad
Thanks,
mma
--
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-review_all_search-view-mma/+merge/107618
Your team OpenERP R&D Team is requested to review the proposed merge of
lp:~openerp-dev/openobject-addons/trunk-review_all_search-view-mma into
lp:~openerp-dev/openobject-addons/trunk-review_all_search.
=== modified file 'crm/crm_lead_menu.xml'
--- crm/crm_lead_menu.xml 2012-05-21 16:07:45 +0000
+++ crm/crm_lead_menu.xml 2012-05-28 12:44:19 +0000
@@ -66,7 +66,7 @@
<field name="res_model">crm.lead</field>
<field name="view_mode">kanban,tree,form,graph,calendar</field>
<field name="domain">[('type','=','opportunity')]</field>
- <field name="context">{'search_default_new':1, 'search_default_open':1, 'stage_type': 'opportunity', 'default_type': 'opportunity'}</field>
+ <field name="context">{'stage_type': 'opportunity', 'default_type': 'opportunity'}</field>
<field name="view_id" eval="False"/>
<field name="search_view_id" ref="crm.view_crm_case_opportunities_filter"/>
<field name="help">With opportunities you can manage and keep track of your sales pipeline by creating specific customer- or prospect-related sales documents to follow up potential sales. Information such as expected revenue, opportunity stage, expected closing date, communication history and much more can be stored. Opportunities can be connected to the email gateway: new emails may create opportunities, each of them automatically gets the history of the conversation with the customer.
=== modified file 'crm/crm_lead_view.xml'
--- crm/crm_lead_view.xml 2012-05-24 16:07:52 +0000
+++ crm/crm_lead_view.xml 2012-05-28 12:44:19 +0000
@@ -615,6 +615,7 @@
<filter string="Salesperson" icon="terp-personal" domain="[]" context="{'group_by':'user_id'}" />
<filter string="Team" help="Sales Team" icon="terp-personal+" domain="[]" context="{'group_by':'section_id'}"/>
<filter string="Customer" help="Partner" icon="terp-personal+" domain="[]" context="{'group_by':'partner_id'}"/>
+ <filter string="Country" help="Country" icon="terp-go-home" domain="[]" context="{'group_by':'country_id'}"/>
<separator orientation="vertical" />
<filter string="Stage" icon="terp-stage" domain="[]" context="{'group_by':'stage_id'}" />
<filter string="Priority" icon="terp-rating-rated" domain="[]" context="{'group_by':'priority'}" />
=== modified file 'crm/res_partner_view.xml'
--- crm/res_partner_view.xml 2012-05-22 14:50:05 +0000
+++ crm/res_partner_view.xml 2012-05-28 12:44:19 +0000
@@ -39,6 +39,9 @@
<field name="category_id" position="after">
<field name="section_id" completion="1" widget="selection"/>
</field>
+ <xpath expr="//filter[@string='Company']" position="after">
+ <filter string="Country" icon="terp-go-home" help="Country" domain="[]" context="{'group_by':'country_id'}"/>
+ </xpath>
</field>
</record>
=== modified file 'hr/hr_view.xml'
--- hr/hr_view.xml 2012-05-22 16:10:55 +0000
+++ hr/hr_view.xml 2012-05-28 12:44:19 +0000
@@ -108,7 +108,7 @@
<field name="department_id" widget="selection">
</field>
<field name="job_id" widget="selection"/>
- <field name="category_ids" select="1"/>
+ <field name="category_ids"/>
<field name="parent_id"/>
<newline />
<group expand="0" string="Group By...">
=== modified file 'hr_payroll/hr_payroll_view.xml'
--- hr_payroll/hr_payroll_view.xml 2012-05-22 09:14:45 +0000
+++ hr_payroll/hr_payroll_view.xml 2012-05-28 12:44:19 +0000
@@ -654,7 +654,7 @@
<search string="Search Salary Rule">
<group col="8" colspan="4">
<field name="name"/>
- <field name="code" select="1"/>
+ <field name="code"/>
<field name="category_id"/>
<field name="condition_range_min"/>
</group>
=== modified file 'hr_recruitment/hr_recruitment_menu.xml'
--- hr_recruitment/hr_recruitment_menu.xml 2012-05-22 16:10:55 +0000
+++ hr_recruitment/hr_recruitment_menu.xml 2012-05-28 12:44:19 +0000
@@ -8,7 +8,6 @@
<field name="res_model">hr.applicant</field>
<field name="view_mode">kanban,tree,form,graph,calendar</field>
<field name="view_id" eval="False"/>
- <field name="context">{'search_default_filter_inprogress':1,'search_default_filter_new':1}</field>
<field name="search_view_id" ref="view_crm_case_jobs_filter"/>
<field name="help">From this menu you can track applicants in the recruitment process and manage all operations: meetings, interviews, phone calls, etc. If you setup the email gateway, applicants and their attached CV are created automatically when an email is sent to [email protected]. If you install the document management modules, all documents (CV and motivation letters) are indexed automatically, so that you can easily search through their content.</field>
</record>
=== modified file 'hr_timesheet_sheet/hr_timesheet_sheet_view.xml'
--- hr_timesheet_sheet/hr_timesheet_sheet_view.xml 2012-05-22 09:14:45 +0000
+++ hr_timesheet_sheet/hr_timesheet_sheet_view.xml 2012-05-28 12:44:19 +0000
@@ -253,7 +253,7 @@
<field name="inherit_id" ref="hr_attendance.view_hr_attendance_filter" />
<field name="arch" type="xml">
<field name="action" position="after">
- <field name="sheet_id" select="1" />
+ <field name="sheet_id"/>
</field>
</field>
</record>
=== modified file 'project_issue/project_issue_menu.xml'
--- project_issue/project_issue_menu.xml 2012-05-21 16:07:45 +0000
+++ project_issue/project_issue_menu.xml 2012-05-28 12:44:19 +0000
@@ -12,7 +12,6 @@
<field name="view_mode">kanban,tree,calendar</field>
<field name="view_id" eval="False"/>
<field name="domain" eval=""/>
- <field name="context">{"search_default_user_id": uid, "search_default_draft": 1,"search_default_todo": 1}</field>
<field name="search_view_id" ref="view_project_issue_filter"/>
<field name="help">Issues such as system bugs, customer complaints, and material breakdowns are collected here. You can define the stages assigned when solving the project issue (analysis, development, done). With the mailgateway module, issues can be integrated through an email address (example: [email protected])</field>
</record>
=== modified file 'project_issue/report/project_issue_report_view.xml'
--- project_issue/report/project_issue_report_view.xml 2012-05-04 11:57:48 +0000
+++ project_issue/report/project_issue_report_view.xml 2012-05-28 12:44:19 +0000
@@ -81,7 +81,7 @@
<separator orientation="vertical" />
<field name="project_id"/>
- <field name="user_id" select="1" widget="selection" filter_domain="[('user_id','ilike',self)]"/>
+ <field name="user_id" widget="selection" filter_domain="[('user_id','ilike',self)]"/>
<field name="partner_id"/>
<field name="version_id" widget="selection" />
</group>
=== modified file 'project_long_term/project_long_term_view.xml'
--- project_long_term/project_long_term_view.xml 2012-05-23 15:10:54 +0000
+++ project_long_term/project_long_term_view.xml 2012-05-28 12:44:19 +0000
@@ -331,7 +331,7 @@
<field name="inherit_id" ref="project.view_task_search_form"/>
<field name="arch" type="xml">
<field name="project_id" position="after">
- <field name="phase_id" select="1"/>
+ <field name="phase_id"/>
</field>
</field>
</record>
=== modified file 'purchase/purchase_view.xml'
--- purchase/purchase_view.xml 2012-05-22 16:10:55 +0000
+++ purchase/purchase_view.xml 2012-05-28 12:44:19 +0000
@@ -325,7 +325,7 @@
<field name="type">ir.actions.act_window</field>
<field name="res_model">purchase.order</field>
<field name="view_mode">tree,form,graph,calendar</field>
- <field name="context">{'search_default_approved': 1,'search_default_create_uid':uid}</field>
+ <field name="context">{'search_default_approved': 1}</field>
<field name="search_view_id" ref="view_purchase_order_filter"/>
<field name="help">Use this menu to search within your purchase orders by references, supplier, products, etc. For each purchase order, you can track the products received, and control the supplier invoices.</field>
</record>
_______________________________________________
Mailing list: https://launchpad.net/~openerp-dev-gtk
Post to : [email protected]
Unsubscribe : https://launchpad.net/~openerp-dev-gtk
More help : https://help.launchpad.net/ListHelp