odoo/ext/custom-addons/dp_line_comment_template/__manifest__.py

25 lines
763 B
Python

# Copyright 2018-Today datenpol gmbh (<http://www.datenpol.at>)
# License OPL-1 or later (https://www.odoo.com/documentation/user/11.0/legal/licenses/licenses.html#licenses).
# noinspection PyStatementEffect
{
'name': 'dp line comments',
'summary': 'Comments templates on invoice and sale lines',
'version': '11.0.1.0.0',
'license': 'OPL-1',
'author': 'datenpol gmbh',
'support': 'office@datenpol.at',
'website': 'https://www.datenpol.at',
'depends': [
'sale_comment_template',
'invoice_comment_template',
],
'data': [
'views/account_invoice_view.xml',
'views/sale_order_view.xml',
'wizards/wizard_add_line_comment.xml',
],
'installable': True,
'auto_install': False,
}