__manifest__.py 786 B

123456789101112131415161718192021222324
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Debit Notes',
  5. 'version': '1.0',
  6. 'category': 'Accounting/Accounting',
  7. 'summary': 'Debit Notes',
  8. 'description': """
  9. In a lot of countries, a debit note is used as an increase of the amounts of an existing invoice
  10. or in some specific cases to cancel a credit note.
  11. It is like a regular invoice, but we need to keep track of the link with the original invoice.
  12. The wizard used is similar as the one for the credit note.
  13. """,
  14. 'depends': ['account'],
  15. 'data': [
  16. 'wizard/account_debit_note_view.xml',
  17. 'views/account_move_view.xml',
  18. 'security/ir.model.access.csv',
  19. ],
  20. 'installable': True,
  21. 'license': 'LGPL-3',
  22. }