__manifest__.py 555 B

123456789101112131415161718192021
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'France - Factur-X integration with Chorus Pro',
  5. 'version': '1.0',
  6. 'category': 'Accounting/Localizations/EDI',
  7. 'description': """
  8. Add supports to fill three optional fields used when using Chorus Pro, especially when invoicing public services.
  9. """,
  10. 'depends': [
  11. 'account',
  12. 'account_edi_ubl_cii',
  13. 'l10n_fr'
  14. ],
  15. 'data': [
  16. 'views/account_move_views.xml',
  17. ],
  18. 'license': 'LGPL-3',
  19. }