Saturday, August 12, 2023
2 changes · master
Miscellaneous changes
UseDebounce to avoid executing debounced code when the component is unmounted. This prevents crashes. Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#131684 Forward-Port-Of: odoo/odoo#130624
Original PR description
UseDebounce to avoid executing debounced code when the component is unmounted. This prevents crashes. Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#131684 Forward-Port-Of: odoo/odoo#130624
Moves `_prepare_edi_vals_to_export` methods from account_edi to account module. This is done in saas-16.2 to prepare account_edi dependency removal that has been done in saas-16.4. In saas-16.4 it creates error in account_edi_xml_cii since it uses those methods without dependency on account_edi. Also add missing dependency to l10n_sa_edi that uses account_edi methods without explicit dependency on it. It works since for the moment account_edi is auto-installed with account module, but it won
Original PR description
Moves `_prepare_edi_vals_to_export` methods from account_edi to account module. This is done in saas-16.2 to prepare account_edi dependency removal that has been done in saas-16.4. In saas-16.4 it creates error in account_edi_xml_cii since it uses those methods without dependency on account_edi. Also add missing dependency to l10n_sa_edi that uses account_edi methods without explicit dependency on it. It works since for the moment account_edi is auto-installed with account module, but it won't be the case in saas-16.4. Related: https://github.com/odoo/odoo/commit/ac28418ff3051e7c063125cab57f5afb466d0afc Forward-Port-Of: odoo/odoo#131730 Forward-Port-Of: odoo/odoo#131573