flectra/addons/product_extended/__manifest__.py

21 lines
713 B
Python
Raw Permalink Normal View History

# -*- coding: utf-8 -*-
2018-01-16 11:34:37 +01:00
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
{
"name" : "Product extension to track sales and purchases",
2018-01-16 12:08:17 +01:00
"author" : "Odoo S.A.",
"version" : "1.0",
"depends" : ["mrp", "stock_account"],
"category" : "Manufacturing",
"description": """
Product extension. This module adds:
* Computes standard price from the BoM of the product with a button on the product variant based
on the materials in the BoM and the work centers. It can create the necessary accounting entries when necessary.
""",
"init_xml" : [],
"demo_xml" : [],
"data": ["views/product_views.xml"],
"active": False,
"installable": True
}