__openerp__.py 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # -*- coding: utf-8 -*-
  2. #
  3. #
  4. # OpenERP, Open Source Management Solution
  5. # Authors: Raphaël Valyi, Renato Lima
  6. # Copyright (C) 2011 Akretion LTDA.
  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. {'name': 'Sale Exceptions',
  23. 'summary': 'Custom exceptions on sale order',
  24. 'version': '8.0.1.0.0',
  25. 'category': 'Generic Modules/Sale',
  26. 'description': """
  27. Sale Exceptions
  28. ===============
  29. This module allows you attach several customizable exceptions to your
  30. sale order in a way that you can filter orders by exceptions type and fix them.
  31. This is especially useful in an order importation scenario such as with
  32. the base_sale_multi_channels module, because it's likely a few orders have
  33. errors when you import them (like product not found in Odoo, wrong line
  34. format etc...)
  35. Contributors
  36. ------------
  37. * Raphaël Valyi <raphael.valyi@akretion.com>
  38. * Renato Lima <renato.lima@akretion.com>
  39. * Sébastien BEAU <sebastien.beau@akretion.com>
  40. * Guewen Baconnier <guewen.baconnier@camptocamp.com>
  41. * Yannick Vaucher <yannick.vaucher@camptocamp.com>
  42. """,
  43. 'author': "Akretion,Odoo Community Association (OCA)",
  44. 'website': 'http://www.akretion.com',
  45. 'depends': ['sale'],
  46. 'data': ['sale_workflow.xml',
  47. 'sale_view.xml',
  48. 'sale_exceptions_data.xml',
  49. 'wizard/sale_exception_confirm_view.xml',
  50. 'security/ir.model.access.csv',
  51. 'settings/sale.exception.csv'],
  52. 'installable': True,
  53. }