__openerp__.py 400 B

12345678910111213141516
  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. ],
  13. 'qweb' : ['static/src/xml/*.xml',],
  14. 'installable' : True,
  15. 'auto_install' : False,
  16. }