Files
contract/product_contract/__manifest__.py
Ted Salmon 5b970e39e3 [ADD] product_contract: Create module
* Add contract functionality to `product.templates`
* Add logic to create contracts from `sale.order` that contains contract products.
2022-06-18 14:50:17 +02:00

24 lines
561 B
Python

# -*- coding: utf-8 -*-
# Copyright 2017 LasLabs Inc.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
'name': 'Product Contract',
'version': '10.0.1.0.0',
'category': 'Contract Management',
'license': 'AGPL-3',
'author': "LasLabs, "
"Odoo Community Association (OCA)",
'website': 'https://laslabs.com',
'depends': [
'contract',
'product',
'sale',
],
'data': [
'views/product_template_view.xml',
],
'installable': True,
'application': False,
}