mirror of
https://github.com/bringout/oca-ocb-technical.git
synced 2026-04-20 19:32:02 +02:00
Initial commit: Technical packages
This commit is contained in:
commit
3473fa71a0
873 changed files with 297766 additions and 0 deletions
60
odoo-bringout-oca-ocb-calendar/calendar/__manifest__.py
Normal file
60
odoo-bringout-oca-ocb-calendar/calendar/__manifest__.py
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': 'Calendar',
|
||||
'version': '1.1',
|
||||
'sequence': 165,
|
||||
'depends': ['base', 'mail'],
|
||||
'summary': "Schedule employees' meetings",
|
||||
'description': """
|
||||
This is a full-featured calendar system.
|
||||
========================================
|
||||
|
||||
It supports:
|
||||
------------
|
||||
- Calendar of events
|
||||
- Recurring events
|
||||
|
||||
If you need to manage your meetings, you should install the CRM module.
|
||||
""",
|
||||
'category': 'Productivity/Calendar',
|
||||
'demo': [
|
||||
'data/calendar_demo.xml'
|
||||
],
|
||||
'data': [
|
||||
'security/ir.model.access.csv',
|
||||
'security/calendar_security.xml',
|
||||
'data/calendar_cron.xml',
|
||||
'data/mail_template_data.xml',
|
||||
'data/calendar_data.xml',
|
||||
'data/mail_activity_type_data.xml',
|
||||
'data/mail_message_subtype_data.xml',
|
||||
'views/mail_activity_views.xml',
|
||||
'views/calendar_templates.xml',
|
||||
'views/calendar_views.xml',
|
||||
'views/res_partner_views.xml',
|
||||
'wizard/calendar_provider_config.xml'
|
||||
],
|
||||
'installable': True,
|
||||
'application': True,
|
||||
'assets': {
|
||||
'mail.assets_messaging': [
|
||||
'calendar/static/src/models/*.js',
|
||||
],
|
||||
'web.assets_backend': [
|
||||
'calendar/static/src/scss/calendar.scss',
|
||||
'calendar/static/src/js/base_calendar.js',
|
||||
'calendar/static/src/js/services/calendar_notification_service.js',
|
||||
'calendar/static/src/views/**/*',
|
||||
'calendar/static/src/components/*/*.xml',
|
||||
],
|
||||
'web.qunit_suite_tests': [
|
||||
'calendar/static/tests/**/*',
|
||||
],
|
||||
'web.assets_tests': [
|
||||
'calendar/static/tests/tours/calendar_tour.js',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue