Daily updates from Odoo
Navigate
Branch
Saturday, June 8, 2024
4 changes
3 changes
Enhancements to existing features
Odoo now lets companies enter custom Company Discretionary Data for US NACHA payment files at the journal level. This helps meet bank-specific requirements, such as including a Chase account number, while preserving the existing default behavior when no custom value is provided.
Original PR description
The Company Discretionary Data field is typically optional, by default Odoo sets the batch name for traceability. But it could be used by the bank for their own reasons. From the spec [1]: >…
The Company Discretionary Data field is typically optional, by default Odoo sets the batch name for traceability. But it could be used by the bank for their own reasons. From the spec [1]: > Originator/ODFI may include codes of significance only to them to > enable specialized handling of all entries within the batch. Chase instructs their customers to use the field as follows: > Add your Chase account number in company discretionary data (usually > on the account set-up screen or ACH/Nacha file setup screen) This is > the pay-from account for payments or the receiving account for > collections: > > Company discretionary data > Your Chase account number (Exactly 20 numbers using leading zeroes > to fill in the gap – e.g. 00000000000123456789) To support it we add a field on the journal where users can specify this. Note that we don't zero-pad the number like Chase requests, the official specification and the BOfA specification [2] indicates this is an alphanumeric field so we pad with spaces to hopefully be more compatible. It will be up to the user to manually pad it with zeros if needed. This uses an f-string instead of format() because runbot linting now disallows format(). Based on feedback in opw-3942095. [1] https://achdevguide.nacha.org/ach-file-details [2] https://files.nc.gov/ncosc/documents/eCommerce/bank_of_america_nacha_file_specs.pdf
Miscellaneous changes
## Pull Request HOOT (PROOT) - part 16 Part 1: https://github.com/odoo/odoo/pull/152930 Part 2: https://github.com/odoo/odoo/pull/153018 Part 3: https://github.com/odoo/odoo/pull/153023 Part 4: https://github.com/odoo/odoo/pull/153203 Part 5: https://github.com/odoo/odoo/pull/153425 Part 6: https://github.com/odoo/odoo/pull/153700 Part 7: https://github.com/odoo/odoo/pull/154054 Part 8: https://github.com/odoo/odoo/pull/154579 Part 9: https://github.com/odoo/odoo/pull/155073 Part 10:
Original PR description
## Pull Request HOOT (PROOT) - part 16 Part 1: https://github.com/odoo/odoo/pull/152930 Part 2: https://github.com/odoo/odoo/pull/153018 Part 3: https://github.com/odoo/odoo/pull/153023 Part 4:…
## Pull Request HOOT (PROOT) - part 16 Part 1: https://github.com/odoo/odoo/pull/152930 Part 2: https://github.com/odoo/odoo/pull/153018 Part 3: https://github.com/odoo/odoo/pull/153023 Part 4: https://github.com/odoo/odoo/pull/153203 Part 5: https://github.com/odoo/odoo/pull/153425 Part 6: https://github.com/odoo/odoo/pull/153700 Part 7: https://github.com/odoo/odoo/pull/154054 Part 8: https://github.com/odoo/odoo/pull/154579 Part 9: https://github.com/odoo/odoo/pull/155073 Part 10: https://github.com/odoo/odoo/pull/155639 Part 11: https://github.com/odoo/odoo/pull/156255 / https://github.com/odoo/enterprise/pull/58135 Part 12: https://github.com/odoo/odoo/pull/156869 Part 13: https://github.com/odoo/odoo/pull/158384 / https://github.com/odoo/enterprise/pull/59019 Part 14: https://github.com/odoo/odoo/pull/158916 Part 15: https://github.com/odoo/odoo/pull/160292 / https://github.com/odoo/enterprise/pull/59971 Part 15.5: https://github.com/odoo/odoo/pull/166463 Community: https://github.com/odoo/odoo/pull/166311 This pull requests brings various improvements and fixes to Hoot and the Odoo unit test ecosystem. See the different commit messages for more details. Note: these changes are made in stable to avoid having to support multiple versions of the HOOT API. As such, these changes are intended to be strictly limited to unit tests as to not put the rest of the code base at risk. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/enterprise#63639 Forward-Port-Of: odoo/enterprise#62998
Steps to reproduce: - Go to Accounting > Vendor > Payments. - Create one "Send" payment for 500 USD to Abigail Peterson and confirm. - Create one "Send" payment for 500 EUR to Abigail Peterson and confirm. - Go to Accounting > Vendor > Batch Payments. - Create a new batch payment and add the two payments. - Print the batch payment (either Print button or Action > Print Batch Payment) Issue: The sum amount in company currency is not correct Cause: We do not convert the line amount (
Original PR description
Steps to reproduce: - Go to Accounting > Vendor > Payments. - Create one "Send" payment for 500 USD to Abigail Peterson and confirm. - Create one "Send" payment for 500 EUR to Abigail Peterson and confirm. - Go to Accounting > Vendor > Batch Payments. - Create a new batch payment and add the two payments. - Print the batch payment (either Print button or Action > Print Batch Payment) Issue: The sum amount in company currency is not correct Cause: We do not convert the line amount (and we apparently don't want to use the payment amount for reconciliation) opw-3911484 Forward-Port-Of: odoo/enterprise#63941 Forward-Port-Of: odoo/enterprise#62553
1 change
Resolved issues and error corrections
This update significantly improves the speed of creating new business partners in the German accounting system. By optimizing how the system checks accounting compliance rules, partner creation time has been reduced from 10 minutes to just 2 minutes, making the system much more responsive for daily operations.
Original PR description
The aim of this commit is to improve the perfomance of the datev features constrains checks. Context: Performance issue spotted on odoo.com prod. DB. Before the commit: Creating a partner takes up to 10 min. After the commit: Creating a new partner reduces the creation time to 2 min. task-id: None Forward-Port-Of: odoo/enterprise#64068 Forward-Port-Of: odoo/enterprise#63971