__manifest__.py 669 B

123456789101112131415161718
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': "Luxembourg - Peppol Identifier",
  5. 'version': '1.0',
  6. 'description': """
  7. Some Luxembourg public institutions do not have a VAT number but have been assigned an arbitrary number
  8. (see: https://pch.gouvernement.lu/fr/peppol.html). Thus, this module adds the Peppol Identifier field on
  9. the account.move form view. If this field is set, it is then read when exporting electronic invoicing formats.
  10. """,
  11. 'depends': ['l10n_lu', 'account_edi_ubl_cii'],
  12. 'data': [
  13. 'views/partner_view.xml',
  14. ],
  15. 'license': 'LGPL-3',
  16. }