__openerp__.py 472 B

123456789101112131415161718
  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. 'qweb' : ['static/src/xml/*.xml',],
  16. 'installable' : True,
  17. 'auto_install' : False,
  18. }