24 lines
573 B
Python
24 lines
573 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': "CRM sync data",
|
|
|
|
'summary': """CRM sync data""",
|
|
|
|
'author': "Tiennv",
|
|
'website': "https://www.cenhomes.vn",
|
|
|
|
# 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', 'crm'],
|
|
|
|
# always loaded
|
|
'data': [
|
|
'data/service_cron.xml',
|
|
]
|
|
}
|