account-reconcile
account-reconcile copied to clipboard
Odoo account reconciliation modules (statements, data completion...)
Steps to Reproduce the Error. 1. Click menu Accounting\Configuration\Accounting\Chart of Accounts 2. Click **Reconcile** button in list view 3. Raise error below ``` UncaughtPromiseError > EvalError Uncaught Promise > Can...
Migration from https://github.com/OCA/account-reconcile/pull/466 I remove the dependency account_balance_line as it has been included in core (See https://github.com/OCA/account-financial-tools/issues/1472)
When click reconcile button on bank statement, I found error as below text. This PR is fixed for this issue Traceback (most recent call last): File "/opt/odoo/custom/src/odoo/odoo/addons/base/models/ir_http.py", line 237, in...
## account_reconcile_oca Here is a scenario to reproduce the bug on v16: 1. I have a company with currency = EUR 2. I create a bank journal in currency USD...
* [account.invoice removed](https://github.com/odoo/odoo/pull/34477/commits/beaa30a3d1843de43a45f419bfbc1bfa7613a920) use account.move instead. Since payment_mode_id computed by filtered out [lines with existed credits/debit](https://github.com/odoo/odoo/blob/10.0/addons/account/models/account_invoice.py#L199), so we use the same that logic in line 57 * [amount_residual now include...
**Is your feature request related to a problem?** The behavior of bank statement reconciliation has changed compared to previous versions, our users (and modules) expect auto-reconciliation to be ran in...
Migration to 16.0 [ForgeFlow](https://github.com/ForgeFlow)
Original Code: reconciles.sorted(key=_get_date) # WRONG New code: reconciles = reconciles.sorted(key=_get_date) # OK In the original code the reconciles aren't sorted as the variable is not being updated, this causes to...
Added a form view for account_bank_statement model