49 lines
1.4 KiB
Python
49 lines
1.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': "大众评审投票",
|
|
|
|
'summary': """
|
|
大众评审投票""",
|
|
|
|
'description': """
|
|
0. 用户可一键授权微信信息完成登录
|
|
1. 后台可配置投票项,配置信息包括但不限于图片、标题、简介、企业名称
|
|
2. 可针对不同行业配置生成不同问卷
|
|
3. 【非必须】具体投票结果(实时票数)可在用户投票后展示,参考微信公众号投票
|
|
4. 后台可手动修改不同选项的投票数量
|
|
5. 可后台批量导入问卷选项内容
|
|
""",
|
|
|
|
'author': "TongXin",
|
|
'website': "https://www.yourcompany.com",
|
|
|
|
# Categories can be used to filter modules in modules listing
|
|
# Check https://github.com/odoo/odoo/blob/16.0/odoo/addons/base/data/ir_module_category_data.xml
|
|
# for the full list
|
|
'category': 'Uncategorized',
|
|
'version': '0.1',
|
|
|
|
# any module necessary for this one to work correctly
|
|
'depends': ['base', 'tx_base', 'survey'],
|
|
|
|
# always loaded
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'views/views.xml',
|
|
'views/templates.xml',
|
|
],
|
|
'assets': {
|
|
'web.assets_common': [
|
|
'tx_survey/static/src/css/*',
|
|
],
|
|
'web.assets_backend': [
|
|
'tx_survey/static/src/xml/*'
|
|
],
|
|
},
|
|
# only loaded in demonstration mode
|
|
'demo': [
|
|
'demo/demo.xml',
|
|
],
|
|
'application': True,
|
|
}
|