__openerp__.py 496 B

1234567891011121314151617181920
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name' : 'Add print of list purchase invoice',
  4. 'version' : '1.0',
  5. 'description' : """
  6. Este modulo permite realizar el listado de factura de compra.
  7. """,
  8. 'author' : 'Eiru/Sebastian Penayo ',
  9. 'category' : 'account',
  10. 'depends' : ['base','account'],
  11. 'data' : [
  12. 'views/template.xml'
  13. ],
  14. 'js': [
  15. 'static/src/js/*.js',
  16. ],
  17. 'qweb' : ['static/src/xml/*.xml',],
  18. 'installable' : True,
  19. 'auto_install' : False,
  20. }