Files
public/mklab_dms_document/__manifest__.py

35 lines
1001 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# -*- coding: utf-8 -*-
{
'name': "mklab_dms_document",
'summary': """
Работа с входящими и исходящими документами и их хранение""",
'description': """
Работа с входящими и исходящими документами и их хранение
""",
'author': "MK.Lab",
'website': "http://www.inf-centre.ru",
# Categories can be used to filter modules in modules listing
# Check https://github.com/odoo/odoo/blob/13.0/odoo/addons/base/data/ir_module_category_data.xml
# for the full list
'category': 'Uncategorized',
'version': '13.20230927',
# any module necessary for this one to work correctly
'depends': ['base','dms', 'utm', 'base_tier_validation'],
# always loaded
'data': [
'security/ir.model.access.csv',
'data/data.xml',
'views/views.xml',
'views/report.xml',
],
'demo': [
'demo/demo.xml',
],
}