__openerp__.py 717 B

123456789101112131415161718192021222324252627282930313233
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': 'Tax Settlement',
  4. 'version': '8.0.1.1.0',
  5. 'category': 'Accounting',
  6. 'sequence': 14,
  7. 'summary': '',
  8. 'description': """
  9. Tax Settlement
  10. ==============
  11. Add a model to manage tax settlements
  12. """,
  13. 'author': 'ADHOC SA',
  14. 'website': 'www.adhoc.com.ar',
  15. 'license': 'AGPL-3',
  16. 'images': [
  17. ],
  18. 'depends': [
  19. 'account_move_voucher',
  20. ],
  21. 'data': [
  22. 'views/account_move_line_view.xml',
  23. 'views/report_account_moveline.xml',
  24. ],
  25. 'demo': [
  26. ],
  27. 'test': [
  28. ],
  29. 'installable': True,
  30. 'auto_install': False,
  31. 'application': False,
  32. }
  33. # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: