Merge lp:~openerp-dev/openobject-addons/trunk-bug-877136-mdi into lp:openobject-addons

Proposed by DJ Patel (OpenERP)
Status: Merged
Merged at revision: 5455
Proposed branch: lp:~openerp-dev/openobject-addons/trunk-bug-877136-mdi
Merge into: lp:openobject-addons
Diff against target: 38 lines (+4/-4)
1 file modified
base_setup/base_setup.py (+4/-4)
To merge this branch: bzr merge lp:~openerp-dev/openobject-addons/trunk-bug-877136-mdi
Reviewer Review Type Date Requested Status
Purnendu Singh (OpenERP) (community) Approve
qdp (OpenERP) Pending
OpenERP Core Team Pending
Review via email: mp+80052@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Purnendu Singh (OpenERP) (purnendu-singh) wrote :

Hello,

Good work :)

Thanks,
Purnendu

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'base_setup/base_setup.py'
--- base_setup/base_setup.py 2011-10-14 13:56:29 +0000
+++ base_setup/base_setup.py 2011-10-21 11:46:27 +0000
@@ -39,7 +39,7 @@
39 'Accounting & Finance' : ['account'],39 'Accounting & Finance' : ['account'],
40 'Purchase Management' : ['purchase'],40 'Purchase Management' : ['purchase'],
41 'Human Resources' : ['hr',],41 'Human Resources' : ['hr',],
42 'Point of Sales' : ['pos',],42 'Point of Sales' : ['point_of_sale',],
43 'Marketing' : ['marketing',],43 'Marketing' : ['marketing',],
44}44}
4545
@@ -58,7 +58,7 @@
58 if fields is None:58 if fields is None:
59 fields = {}59 fields = {}
6060
61 fields = {} 61 fields = {}
62 category_proxy = self.pool.get('ir.module.category')62 category_proxy = self.pool.get('ir.module.category')
63 domain = [('parent_id', '=', False),63 domain = [('parent_id', '=', False),
64 ('name', '!=', 'Uncategorized'),64 ('name', '!=', 'Uncategorized'),
@@ -389,14 +389,14 @@
389 ('extended','Extended')],389 ('extended','Extended')],
390 'Interface', required=True, help= "If you use OpenERP for the first time we strongly advise you to select the simplified interface, which has less features but is easier. You can always switch later from the user preferences." ),390 'Interface', required=True, help= "If you use OpenERP for the first time we strongly advise you to select the simplified interface, which has less features but is easier. You can always switch later from the user preferences." ),
391 'menu_tips': fields.boolean('Display Tips', help="Check out this box if you want to always display tips on each menu action"),391 'menu_tips': fields.boolean('Display Tips', help="Check out this box if you want to always display tips on each menu action"),
392 392
393 }393 }
394 _defaults={394 _defaults={
395 'view' : lambda self,cr,uid,*args: self.pool.get('res.users').browse(cr, uid, uid).view or 'simple',395 'view' : lambda self,cr,uid,*args: self.pool.get('res.users').browse(cr, uid, uid).view or 'simple',
396 'context_lang' : 'en_US',396 'context_lang' : 'en_US',
397 'menu_tips' : True397 'menu_tips' : True
398 }398 }
399 399
400 def default_get(self, cr, uid, fields, context=None):400 def default_get(self, cr, uid, fields, context=None):
401 if context is None:401 if context is None:
402 context = {}402 context = {}

Subscribers

People subscribed via source and target branches

to all changes: