__openerp__.py 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # -*- encoding: utf-8 -*-
  2. #################################################################################
  3. # #
  4. # product_features for OpenERP #
  5. # Copyright (C) 2009 NetAndCo (<http://www.netandco.net>). #
  6. # Authors, Victor Obrist #
  7. # #
  8. # This program is free software: you can redistribute it and/or modify #
  9. # it under the terms of the GNU Affero General Public License as #
  10. # published by the Free Software Foundation, either version 3 of the #
  11. # License, or (at your option) any later version. #
  12. # #
  13. # This program is distributed in the hope that it will be useful, #
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of #
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
  16. # GNU Affero General Public License for more details. #
  17. # #
  18. # You should have received a copy of the GNU Affero General Public License #
  19. # along with this program. If not, see <http://www.gnu.org/licenses/>. #
  20. # #
  21. #################################################################################
  22. ###################################################################################
  23. # Product features is an Openobject module wich enable features management for products #
  24. ###################################################################################
  25. {
  26. 'name': 'Nota de Remisión Dikasa',
  27. 'version': '0.1',
  28. 'category': 'Sales',
  29. 'description': """
  30. Nota de Remisión Dikasa
  31. ==========================
  32. Permite crear una nota de remisión a partir del pedido de venta.
  33. """,
  34. 'author': 'Eiru Software',
  35. 'website': 'http://www.paraguayenlaweb.com',
  36. 'depends': ['sale'],
  37. 'data': [
  38. 'nota_remision_view.xml',
  39. 'nota_remision_workflow.xml',
  40. 'nota_remision_sequence.xml',
  41. 'nota_remision_print.xml',
  42. 'security/ir.model.access.csv',
  43. ],
  44. 'installable': True,
  45. }