docx_report_generation/__manifest__.py

32 lines
633 B
Python
Raw Normal View History

2018-11-08 17:16:01 +05:00
# -*- coding: utf-8 -*-
{
'name': "client_contracts",
'summary': """
2019-11-12 16:16:14 +05:00
Print forms for contracts with clients""",
2018-11-08 17:16:01 +05:00
'description': """
Module for storing and creating print forms for contracts with clients
""",
'author': "RYDLAB",
'website': "http://rydlab.ru",
2019-11-12 16:16:14 +05:00
'category': 'Invoicing & Payments',
'version': '0.1.1',
2018-11-08 17:16:01 +05:00
2019-11-12 16:16:14 +05:00
'depends': [
'base',
'contacts',
2019-12-04 15:06:56 +05:00
'l10n_ru_doc',
'sale',
2019-11-12 16:16:14 +05:00
],
2018-11-08 17:16:01 +05:00
'data': [
# 'security/ir.model.access.csv',
'views/templates.xml',
'views/res_partner.xml',
'views/contract_wizard.xml',
],
}