__openerp__.py~ 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # -*- coding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # Cybrosys Technologies Pvt. Ltd.
  5. # Copyright (C) 2009-TODAY Cybrosys Technologies(<http://www.cybrosys.com>).
  6. # Author: Niyas Raphy(<http://www.cybrosys.com>)
  7. # you can modify it under the terms of the GNU LESSER
  8. # GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
  9. #
  10. # It is forbidden to publish, distribute, sublicense, or sell copies
  11. # of the Software or modified copies of the Software.
  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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
  17. #
  18. # You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
  19. # GENERAL PUBLIC LICENSE (LGPL v3) along with this program.
  20. # If not, see <http://www.gnu.org/licenses/>.
  21. #
  22. ##############################################################################
  23. {
  24. 'name': 'Merge Same Products in Sale Order Lines',
  25. 'version': '0.1',
  26. 'description': """This module will merge order lines/invoice lines with same product in Sale, Purchase & Invoice""",
  27. 'author': 'Cybrosys Techno Solutions',
  28. 'company': 'Cybrosys Techno Solutions',
  29. 'website': 'http://www.cybrosys.com',
  30. 'summary': "This module will merge order lines/invoice lines with same product in Sale, Purchase & Invoice",
  31. 'category': 'sale',
  32. 'depends': ['account', 'base', 'sale', 'purchase'],
  33. 'license': 'AGPL-3',
  34. 'data': [],
  35. 'demo': [],
  36. 'images': ['static/description/banner.jpg'],
  37. 'installable': True,
  38. 'auto_install': False,
  39. }