__manifest__.py 562 B

1234567891011121314151617181920212223
  1. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  2. # Copyright (C) 2009 - now Grzegorz Grzelak grzegorz.grzelak@openglobe.pl
  3. {
  4. 'name': 'Poland - Sales and Stock',
  5. 'version': '2.0',
  6. 'author': 'Odoo S.A.',
  7. 'category': 'Accounting/Localizations',
  8. 'description': """
  9. Bridge module to compute the Sale Date for the invoice when sale_stock is installed
  10. """,
  11. 'depends': [
  12. 'l10n_pl', 'sale_stock',
  13. ],
  14. 'data': [
  15. ],
  16. 'demo': [
  17. ],
  18. 'auto_install': True,
  19. 'license': 'LGPL-3',
  20. }