__openerp__.py 703 B

123456789101112131415161718192021222324
  1. {
  2. 'name': 'eCommerce Extension to Display Stock Info',
  3. 'category': 'Website',
  4. 'summary': 'Sell Your Products Online with Product Stock Info',
  5. 'website': 'http://www.credativ.in',
  6. 'version': '1.0',
  7. 'description': """
  8. OpenERP E-Commerce
  9. ==================
  10. Add features like, showing Stock Information on Products and validates not to allow more Quantity while Adding to Cart.
  11. """,
  12. 'author': 'Murali Krishna Reddy',
  13. 'depends': ['website_sale'],
  14. 'sequence':0,
  15. 'images':['images/websale1.png'],
  16. 'data': [
  17. 'views/templates.xml',
  18. ],
  19. 'demo': [
  20. ],
  21. #'qweb': ['static/src/xml/*.xml'],
  22. 'installable': True,
  23. 'application': True,
  24. }