diff --git a/ecommerce_stock/__openerp__.py b/ecommerce_stock/__openerp__.py index dee8063c8..5593101c2 100644 --- a/ecommerce_stock/__openerp__.py +++ b/ecommerce_stock/__openerp__.py @@ -34,6 +34,7 @@ 'depends': [ 'base', 'website_sale', + 'stock', ], 'data': [ 'views/templates_extend.xml', diff --git a/ecommerce_stock/__openerp__.py~ b/ecommerce_stock/__openerp__.py~ new file mode 100644 index 000000000..dee8063c8 --- /dev/null +++ b/ecommerce_stock/__openerp__.py~ @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- + +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2014-TODAY Cybrosys Technologies(). +# Author: Treesa Maria Jude() +# you can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# It is forbidden to publish, distribute, sublicense, or sell copies +# of the Software or modified copies of the Software. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# GENERAL PUBLIC LICENSE (LGPL v3) along with this program. +# If not, see . +# +############################################################################## + +{ + 'name': 'Stock Level In E-commerce', + 'version': '9.0.1.0.0', + 'summary': 'Out of Stock/Available Stock Indication In E-commerce', + 'description': 'This module indicate stock quantity of the product to e-commerce', + 'category': 'eCommerce', + 'author': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'company': 'Cybrosys Techno Solutions', + 'depends': [ + 'base', + 'website_sale', + ], + 'data': [ + 'views/templates_extend.xml', + ], + 'images': ['static/description/banner.jpg'], + 'license': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': True, +}