You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
2.1 KiB

  1. # -*- coding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # Author: Sébastien BEAU <sebastien.beau@akretion.com>
  5. # Copyright 2014 Akretion
  6. #
  7. # This program is free software: you can redistribute it and/or modify
  8. # it under the terms of the GNU Affero General Public License as
  9. # published by the Free Software Foundation, either version 3 of the
  10. # License, or (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU Affero General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU Affero General Public License
  18. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. #
  20. ##############################################################################
  21. {
  22. 'name': 'Partner Helper',
  23. 'version': '0.1',
  24. 'author': "Akretion,Odoo Community Association (OCA)",
  25. 'maintainer': 'Akretion',
  26. 'category': 'Warehouse',
  27. 'depends': [
  28. 'base',
  29. ],
  30. 'description': """
  31. Partner Helper
  32. ==============
  33. The purpose of this module is to gather generic partner methods.
  34. It avoids to grow up excessively the number of modules in Odoo
  35. for small features.
  36. Description
  37. -----------
  38. Add specific helper methods to deal with partners:
  39. * _get_split_address():
  40. This method allows to get a number of street fields according to
  41. your choice. 2 fields by default in Odoo with 128 width chars.
  42. In some countries you have constraints on width of street fields and you
  43. should use 3 or 4 shorter fields.
  44. You also need of this feature to avoid headache with overflow printing task
  45. * other_method():
  46. Contributors
  47. ------------
  48. * Sébastien BEAU <sebastien.beau@akretion.com>
  49. * David BEAL <david.beal@akretion.com>
  50. """,
  51. 'website': 'http://www.akretion.com/',
  52. 'data': [],
  53. 'tests': [],
  54. 'installable': True,
  55. 'auto_install': False,
  56. 'license': 'AGPL-3',
  57. 'application': False,
  58. }