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.

144 lines
5.0 KiB

  1. ==============================
  2. Partner Identification Numbers
  3. ==============================
  4. .. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  5. !! This file is generated by oca-gen-addon-readme !!
  6. !! changes will be overwritten. !!
  7. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  8. .. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
  9. :target: https://odoo-community.org/page/development-status
  10. :alt: Production/Stable
  11. .. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
  12. :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
  13. :alt: License: AGPL-3
  14. .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fpartner--contact-lightgray.png?logo=github
  15. :target: https://github.com/OCA/partner-contact/tree/12.0/partner_identification
  16. :alt: OCA/partner-contact
  17. .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
  18. :target: https://translation.odoo-community.org/projects/partner-contact-12-0/partner-contact-12-0-partner_identification
  19. :alt: Translate me on Weblate
  20. .. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
  21. :target: https://runbot.odoo-community.org/runbot/134/12.0
  22. :alt: Try me on Runbot
  23. |badge1| |badge2| |badge3| |badge4| |badge5|
  24. This module allows to manage all sort of identification numbers
  25. and certificates which are assigned to a partner (company or individual)
  26. and vary from country to country.
  27. * Commercial register
  28. * VAT ID
  29. * Fiscal ID's
  30. * Membership numbers
  31. * Driver license
  32. * etc
  33. **Table of contents**
  34. .. contents::
  35. :local:
  36. Configuration
  37. =============
  38. Configure all ID types you need in Contacts > Configuration > Partner ID Categories.
  39. For example, we create a category 'Driver License':
  40. Name:
  41. Name of this ID type. For example, 'Driver License'
  42. Code:
  43. Code, abbreviation or acronym of this ID type. For example, 'driver_license'
  44. Python validation code:
  45. Optional python code called to validate ID numbers of this ID type. This functionality can be
  46. overridden by setting ``id_no_validate`` to ``True`` in the context, such as:
  47. .. code-block:: python
  48. partner.with_context(id_no_validate=True).write({
  49. 'name': 'Bad Value',
  50. 'category_id': self.env.ref('id_category_only_numerics').id,
  51. })
  52. Usage
  53. =====
  54. In partner form you will see another tab called 'ID Numbers'. You can add
  55. any IDs to this partner, defining:
  56. Category:
  57. ID type defined in configuration. For example, Driver License
  58. ID Number:
  59. The ID itself. For example, Driver License number of this person
  60. Issued by:
  61. Another partner, who issued this ID. For example, Traffic National Institution
  62. Place of Issuance:
  63. The place where the ID has been issued. For example the country for passports and visa
  64. Valid from:
  65. Issued date. For example, date when person approved his driving exam, 21/10/2009
  66. Valid until:
  67. Expiration date. For example, date when person needs to renew his driver license, 21/10/2019
  68. Status:
  69. ID status. For example new/to renew/expired
  70. Notes:
  71. Any further information related with this ID. For example, vehicle types this person can drive
  72. Known issues / Roadmap
  73. ======================
  74. * If you want to search a partner by ID you will use advance search form.
  75. You can't search by issuer, valid dates, category or notes.
  76. Bug Tracker
  77. ===========
  78. Bugs are tracked on `GitHub Issues <https://github.com/OCA/partner-contact/issues>`_.
  79. In case of trouble, please check there if your issue has already been reported.
  80. If you spotted it first, help us smashing it by providing a detailed and welcomed
  81. `feedback <https://github.com/OCA/partner-contact/issues/new?body=module:%20partner_identification%0Aversion:%2012.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
  82. Do not contact contributors directly about support or help with technical issues.
  83. Credits
  84. =======
  85. Authors
  86. ~~~~~~~
  87. * ChriCar Beteiligungs- und Beratungs- GmbH
  88. * Tecnativa
  89. * Camptocamp
  90. * ACSONE SA/NV
  91. * LasLabs
  92. * Onestein
  93. Contributors
  94. ~~~~~~~~~~~~
  95. * Antonio Espinosa <antonio.espinosa@tecnativa.com>
  96. * Ferdinand Gassauer <office@chrcar.at>
  97. * Gerhard Könighofer <gerhard.koenighofer@swing-system.com>
  98. * Laurent Mignon <laurent.mignon@acsone.eu>
  99. * Jairo Llopis <jairo.llopis@tecnativa.com>
  100. * Dave Lasley <dave@laslabs.com>
  101. * Simone Orsi <simone.orsi@camptocamp.com>
  102. * Dennis Sluijk <d.sluijk@onestein.nl>
  103. Maintainers
  104. ~~~~~~~~~~~
  105. This module is maintained by the OCA.
  106. .. image:: https://odoo-community.org/logo.png
  107. :alt: Odoo Community Association
  108. :target: https://odoo-community.org
  109. OCA, or the Odoo Community Association, is a nonprofit organization whose
  110. mission is to support the collaborative development of Odoo features and
  111. promote its widespread use.
  112. This module is part of the `OCA/partner-contact <https://github.com/OCA/partner-contact/tree/12.0/partner_identification>`_ project on GitHub.
  113. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.