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.

88 lines
3.4 KiB

  1. .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
  2. :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
  3. :alt: License: AGPL-3
  4. =====================================
  5. Automatic reconciliation after import
  6. =====================================
  7. This addon allows you have Odoo reconcile transactions from a bank statement import automatically in cases where the matching transaction can be determined unambigously.
  8. Configuration
  9. =============
  10. To configure this module, you need to:
  11. #. go to the journal your bank account uses
  12. #. in the field ``Automatic reconciliation rules``, add at least one rule
  13. Usage
  14. =====
  15. After a journal is configured for automatic reconciliations, it simply happens during an import on this journal. If there were automatic reconciliations, you'll see a notification about that and the lines in question will also show up as reconciled.
  16. Reconciliation rules
  17. --------------------
  18. Odoo standard
  19. Do exactly what Odoo does when proposing reconciliations. This searches for an exact match on amount and reference first, but falls back to less exact matches if none are found before. If there's only one match, do the reconciliation
  20. Exact amount and reference
  21. Strictly only match if we have the same partner, amount and reference
  22. .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
  23. :alt: Try me on Runbot
  24. :target: https://runbot.odoo-community.org/runbot/174/8.0
  25. Background
  26. ==========
  27. Mainly, this module is a framework for conveniently (for programmers) adding new custom automatic reconciliation rules. To do this, study the provided AbstractModels.
  28. Known issues / Roadmap
  29. ======================
  30. * add more matching rules:
  31. * AmountDiffuse (let the user configure the threshold)
  32. * SameCompany (if A from company C bought it, but B from the same company/organization pays)
  33. * AmountTransposedDigits (reconcile if only two digits are swapped. Dangerous and a special case of AmountDiffuse)
  34. * whatever else we can think of
  35. * add some helpers/examples for using the options field
  36. * allow to fiddle with the parameters of configured rules during a specific import
  37. Bug Tracker
  38. ===========
  39. Bugs are tracked on `GitHub Issues
  40. <https://github.com/OCA/bank-statement-import/issues>`_. In case of trouble, please
  41. check there if your issue has already been reported. If you spotted it first,
  42. help us smashing it by providing a detailed and welcomed feedback.
  43. Credits
  44. =======
  45. Images
  46. ------
  47. * Odoo Community Association: `Icon <https://github.com/OCA/maintainer-tools/blob/master/template/module/static/description/icon.svg>`_.
  48. Contributors
  49. ------------
  50. * Holger Brunn <hbrunn@therp.nl>
  51. Do not contact contributors directly about help with questions or problems concerning this addon, but use the `community mailing list <mailto:community@mail.odoo.com>`_ or the `appropriate specialized mailinglist <https://odoo-community.org/groups>`_ for help, and the bug tracker linked in `Bug Tracker`_ above for technical issues.
  52. Maintainer
  53. ----------
  54. .. image:: https://odoo-community.org/logo.png
  55. :alt: Odoo Community Association
  56. :target: https://odoo-community.org
  57. This module is maintained by the OCA.
  58. OCA, or the Odoo Community Association, is a nonprofit organization whose
  59. mission is to support the collaborative development of Odoo features and
  60. promote its widespread use.
  61. To contribute to this module, please visit https://odoo-community.org.