__openerp__.py 573 B

123456789101112131415161718192021
  1. # -*- coding: utf-8 -*-
  2. # Copyright 2016 Onestein (<http://www.onestein.eu>)
  3. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  4. {
  5. 'name': 'Account Invoice Line Pricelist',
  6. 'images': [],
  7. 'summary': """Prices on invoice products based on partner pricelists""",
  8. 'version': '1.0',
  9. 'category': 'Accounting & Finance',
  10. 'author': 'Onestein - Eiru',
  11. 'website': 'http://www.onestein.eu',
  12. 'license': 'AGPL-3',
  13. 'depends': [
  14. 'account',
  15. 'product',
  16. ],
  17. 'data': [
  18. 'views/account_invoice.xml',
  19. ],
  20. }