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.

95 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. Account Bank Statement Line Reconciliation
  6. ==========================================
  7. The wizard provides the ability to specify bank statement line when it needed.
  8. The only users from security group "Settings" can use it.
  9. Usage
  10. =====
  11. This module is for you if you work with Odoo enterprise and you messed up the bank reconcile report.
  12. The bank reconciliation report is accessible from the hyperlink 'Difference' which appears on bank journals cards when the GL balance differs from the bank statement balance.
  13. There are only 2 situation handled from field filter (from bank reconcile view) but there are more in real life:
  14. 1 - Blue lines appear if account_move_lines have these values:
  15. .. code-block:: python
  16. statement_id = false
  17. AND payment_id = true
  18. AND account_id = current bank
  19. -> This means that if you post a payment journal entry manually (meaning that you do not use the register payment button) the payment_id will not be populated then the payment_id will not be populated. When this happens, your entry won't match: you are stuck and you need this module to prevent this situation.
  20. Same issue in case of migration of payment entries with no payment_id
  21. 2 - If 1st request is not applicable then Odoo will look up for account_move_lines with:
  22. .. code-block:: python
  23. reconcile_id = false
  24. account_id = flagged as 'Allow reconciliation" = true
  25. excluding the line in the move with the bank account.
  26. -> This means that if you have created entries on a reconciliable account but you never reconcile it (ie: a cut-off entry or a correction) this line will appear forever in the list of possible matches -> so you may need this module to clean it up.
  27. To use this module, you need to:
  28. #. Go to Accounting > Adviser > Journal Entries
  29. #. Select one or more Journal Entry items
  30. #. Press 'Action > Bank reconcile report change'
  31. #. Select required value in 'New value' field. Leave empty if you want to set empty value.
  32. #. Press 'Set value'
  33. By doing this, you will create/delete the link between Journal entry and bank statement lines hence you will make corrections on the bank reconcile report which would be impossible to do through the Odoo interface.
  34. .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
  35. :alt: Try me on Runbot
  36. :target: https://runbot.odoo-community.org/runbot/91/10.0
  37. Bug Tracker
  38. ===========
  39. Bugs are tracked on `GitHub Issues
  40. <https://github.com/OCA/account-financial-reporting/issues>`_. In case of trouble,
  41. please check there if your issue has already been reported. If you spotted it
  42. first, help us smash it by providing 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. * Camptocamp SA
  51. Maintainer
  52. ----------
  53. .. image:: https://odoo-community.org/logo.png
  54. :alt: Odoo Community Association
  55. :target: https://odoo-community.org
  56. This module is maintained by the OCA.
  57. OCA, or the Odoo Community Association, is a nonprofit organization whose
  58. mission is to support the collaborative development of Odoo features and
  59. promote its widespread use.
  60. To contribute to this module, please visit https://odoo-community.org.