__openerp__.py 680 B

12345678910111213141516171819202122232425
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': 'Eiru Stock Picking Sale and Purchase',
  4. 'version': '1.0.2',
  5. 'description': '''
  6. ## Devolución de producto de Venta/Compra.\n
  7. * Facilita las devoluciones de productos.\n
  8. * Mejora la creación de factura a crédito.
  9. ''',
  10. 'author': 'Adrielso Kunert',
  11. 'category': 'stock',
  12. 'depends': ['sale', 'purchase', 'base'],
  13. 'data': [
  14. 'views/templates.xml',
  15. 'views/eiru_stock_picking.xml',
  16. 'views/eiru_stock_picking_purchase.xml',
  17. ],
  18. 'qweb': [
  19. 'static/src/xml/*.xml',
  20. 'static/src/xml/modal/*.xml',
  21. ],
  22. 'installable': True,
  23. 'auto_install': False,
  24. }