You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
3.4 KiB
69 lines
3.4 KiB
# -*- encoding: utf-8 -*-
|
|
##############################################################################
|
|
#
|
|
# OpenERP, Open Source Management Solution
|
|
# This module copyright (C) 2010 - 2014 Savoir-faire Linux
|
|
# (<http://www.savoirfairelinux.com>).
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
##############################################################################
|
|
from openerp.osv import fields, osv
|
|
|
|
|
|
class prototype(osv.osv):
|
|
_name = "prototype"
|
|
_description = "Prototype"
|
|
|
|
_columns = {
|
|
'name': fields.char('Technical Name', required=True),
|
|
'category_id': fields.many2one('ir.module.category', 'Category'),
|
|
'shortdesc': fields.char('Module Name', required=True),
|
|
'summary': fields.char('Summary', required=True),
|
|
'description': fields.html('Description', required=True),
|
|
'author': fields.char('Author', required=True),
|
|
'maintainer': fields.char('Maintainer'),
|
|
'website': fields.char('Website'),
|
|
'icon_image': fields.binary('Icon'),
|
|
'version': fields.char('Version', size=3),
|
|
'auto_install': fields.boolean('Auto Install'),
|
|
# Relations
|
|
'depends': fields.many2many('ir.module.module', 'prototype_module_rel',
|
|
'prototype_id', 'module_id',
|
|
'Dependencies'),
|
|
'data': fields.many2many('ir.filters', 'prototype_data_rel',
|
|
'prototype_id', 'filter_id',
|
|
'Data filters', help="The records matching the filters will be added as data."),
|
|
'demo': fields.many2many('ir.filters', 'prototype_demo_rel',
|
|
'prototype_id', 'filter_id',
|
|
'Demo filters', help="The records matching the filters will be added as demo data."),
|
|
'fields': fields.many2many('ir.model.fields', 'prototype_fields_rel',
|
|
'prototype_id', 'field_id', 'Fields'),
|
|
'menu': fields.many2many('ir.ui.menu', 'prototype_menu_rel',
|
|
'prototype_id', 'menu_id', 'Menu Items'),
|
|
'views': fields.many2many('ir.ui.view', 'prototype_view_rel',
|
|
'prototype_id', 'view_id', 'Views'),
|
|
'groups': fields.many2many('res.groups', 'prototype_groups_rel',
|
|
'prototype_id', 'group_id', 'Groups'),
|
|
'rights': fields.many2many('ir.model.access', 'prototype_rights_rel',
|
|
'prototype_id', 'right_id',
|
|
'Access Rights'),
|
|
'rules': fields.many2many('ir.rule', 'prototype_rule_rel',
|
|
'prototype_id', 'rule_id', 'Record Rules'),
|
|
}
|
|
|
|
_defaults = {
|
|
'auto_install': False,
|
|
'version': '0.1',
|
|
}
|