Merge lp:~tenshi20/openobject-addons/openobject-addons-6.1 into lp:openobject-addons/6.1

Proposed by LudoRA
Status: Needs review
Proposed branch: lp:~tenshi20/openobject-addons/openobject-addons-6.1
Merge into: lp:openobject-addons/6.1
Diff against target: 32 lines (+3/-1)
2 files modified
account/account_view.xml (+2/-0)
crm_partner_assign/__openerp__.py (+1/-1)
To merge this branch: bzr merge lp:~tenshi20/openobject-addons/openobject-addons-6.1
Reviewer Review Type Date Requested Status
OpenERP Core Team Pending
Review via email: mp+129529@code.launchpad.net
To post a comment you must log in.

Unmerged revisions

6949. By LudoRA

account: viewing account template nocreate field and filter it in search view

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'account/account_view.xml'
2--- account/account_view.xml 2012-05-28 06:02:51 +0000
3+++ account/account_view.xml 2012-10-12 22:27:19 +0000
4@@ -2115,6 +2115,7 @@
5 <field name="currency_id"/>
6 <field name="reconcile"/>
7 <field name="chart_template_id"/>
8+ <field name="nocreate"/>
9 <separator string="Default taxes" colspan="4"/>
10 <field name="tax_ids" colspan="4" nolabel="1"/>
11 </page>
12@@ -2149,6 +2150,7 @@
13 <group>
14 <filter icon="terp-sale" string="Receivale Accounts" domain="[('type','=','receivable')]"/>
15 <filter icon="terp-purchase" string="Payable Accounts" domain="[('type','=','payable')]"/>
16+ <filter string="Accounts to create" domain="[('nocreate','!=','true')]"/>
17 <separator orientation="vertical"/>
18 <field name="code"/>
19 <field name="name"/>
20
21=== modified file 'crm_partner_assign/__openerp__.py'
22--- crm_partner_assign/__openerp__.py 2012-01-31 13:36:57 +0000
23+++ crm_partner_assign/__openerp__.py 2012-10-12 22:27:19 +0000
24@@ -37,7 +37,7 @@
25 You can also use the geolocalization without using the GPS coordinates.
26 """,
27 'author': 'OpenERP SA',
28- 'depends': ['crm'],
29+ 'depends': ['account', 'crm'],
30 'demo_xml': [
31 'res_partner_demo.xml',
32 ],