__manifest__.py 523 B

1234567891011121314151617
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. # Copyright (c) 2011 CCI Connect asbl (http://www.cciconnect.be) All Rights Reserved.
  4. # Philmer <philmer@cciconnect.be>
  5. {
  6. 'name': 'Accounting Sequence',
  7. 'version': '1.0',
  8. 'category': 'Hidden',
  9. 'description': "Change the way `sequence.mixin` works to reduce concurrency errors",
  10. 'depends': ['account'],
  11. 'installable': True,
  12. 'auto_install': True,
  13. 'license': 'LGPL-3',
  14. }