[REM] not using the ir.module.module 'virtual' field after all

fp said the non existent module warning is not a problem

bzr revid: fme@openerp.com-20140327115759-a20gqydv2oro4rmr
This commit is contained in:
Fabien Meghazi 2014-03-27 12:57:59 +01:00
parent e6aadeb58c
commit 9ab3ed7c27
1 changed files with 0 additions and 2 deletions

View File

@ -292,7 +292,6 @@ class module(osv.osv):
'reports_by_module': fields.function(_get_views, string='Reports', type='text', multi="meta", store=True),
'views_by_module': fields.function(_get_views, string='Views', type='text', multi="meta", store=True),
'application': fields.boolean('Application', readonly=True),
'virtual': fields.boolean('Virtual module', readonly=True),
'icon': fields.char('Icon URL', size=128),
'icon_image': fields.function(_get_icon_image, string='Icon', type="binary"),
}
@ -302,7 +301,6 @@ class module(osv.osv):
'sequence': 100,
'demo': False,
'license': 'AGPL-3',
'virtual': False,
}
_order = 'sequence,name'