__manifest__.py 584 B

12345678910111213141516171819
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Indian - UPI',
  5. 'version': '1.0',
  6. 'description': """
  7. Invoice with UPI QR code
  8. =========================
  9. This module adds QR code in invoice report for UPI payment allowing to make payment via any UPI app.
  10. To print UPI Qr code add UPI id in company and tick "QR Codes" in configuration
  11. """,
  12. 'category': 'Accounting/Localizations',
  13. 'depends': ['l10n_in'],
  14. 'data': ['views/res_company_views.xml'],
  15. 'license': 'LGPL-3',
  16. 'auto_install': True,
  17. }