__openerp__.py 521 B

123456789101112131415161718192021
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name' : 'Add print in invoice',
  4. 'version' : '1.0',
  5. 'description' : """
  6. Este modulo Permite realizar impresión de factura comun.
  7. """,
  8. 'author' : 'Eiru/Sebastian Penayo ',
  9. 'category' : 'account',
  10. 'depends' : ['base','account'],
  11. 'data' : [
  12. 'views/template.xml',
  13. 'views/invoice_voucher_print.xml'
  14. ],
  15. 'js': [
  16. 'static/src/js/*.js',
  17. ],
  18. 'qweb' : ['static/src/xml/*.xml',],
  19. 'installable' : True,
  20. 'auto_install' : False,
  21. }