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.

51 lines
1.4 KiB

  1. .. image:: https://img.shields.io/badge/licence-LGPL--3-blue.svg
  2. :alt: License: LGPL-3
  3. ====================
  4. Sequence Check Digit
  5. ====================
  6. This module was written to configure check digits on sequences added on the end.
  7. It is useful as a control of the number on visual validation.
  8. It is useful when some manual checks are required or on integrations.
  9. The implemented codes can avoid modification of one character and flip of
  10. two consecutive characters.
  11. Usage
  12. =====
  13. * Access sequences and configurate the model to use.
  14. * The model will check if the format of prefix, suffix and number is valid
  15. * Implemented algorithms
  16. * Luhn: [0-9]*
  17. * Damm: [0-9]*
  18. * Verhoeff: [0-9]*
  19. * ISO 7064 Mod 11, 2: [0-9]*
  20. * ISO 7064 Mod 11, 10: [0-9]*
  21. * ISO 7064 Mod 37, 2: [0-9A-Z]*
  22. * ISO 7064 Mod 37, 36: [0-9A-Z]*
  23. * ISO 7064 Mod 97, 10: [0-9A-Z]*
  24. Credits
  25. =======
  26. Contributors
  27. ------------
  28. * Enric Tobella <etobella@creublanca.es>
  29. Maintainer
  30. ----------
  31. .. image:: https://odoo-community.org/logo.png
  32. :alt: Odoo Community Association
  33. :target: https://odoo-community.org
  34. This module is maintained by the OCA.
  35. OCA, or the Odoo Community Association, is a nonprofit organization whose
  36. mission is to support the collaborative development of Odoo features and
  37. promote its widespread use.
  38. To contribute to this module, please visit https://odoo-community.org.