__openerp__.py 428 B

1234567891011121314151617
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name' : 'Add print of sales',
  4. 'version' : '1.0',
  5. 'description' : """
  6. Este modulo Permite realizar impresión de listado de ventas.
  7. """,
  8. 'author' : 'Eiru/Sebastian Penayo ',
  9. 'category' : 'account',
  10. 'depends' : ['base','sale'],
  11. 'data' : [
  12. 'views/template.xml'
  13. ],
  14. 'qweb' : ['static/src/xml/*.xml',],
  15. 'installable' : True,
  16. 'auto_install' : False,
  17. }