Wednesday, February 21, 2024
7 changes · 17.0
New functionality added to Odoo
A CODEOWNERS file has been added to the repository to establish clear ownership and responsibility for different parts of the codebase. This helps streamline code review processes by automatically assigning the appropriate team members to review changes in their areas of responsibility.
Original PR description
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
Enhancements to existing features
This update improves how bank transaction information is displayed in the accounting module by removing unnecessary empty fields and showing only relevant transaction details. Users will now see a cleaner, more focused view of transaction information like account numbers, transaction status, and dates without cluttered empty data fields.
Original PR description
From: { "merchant_category_code": None, "creditor": { "postal_address": None, "organisation_id": None, "private_id": None, "creditor_account": None, "creditor_agent": None, }, "debtor": { "name":…
From:
{
"merchant_category_code": None,
"creditor": {
"postal_address": None,
"organisation_id": None,
"private_id": None,
"creditor_account": None,
"creditor_agent": None,
},
"debtor": {
"name": None,
"postal_address": None,
"organisation_id": None,
"private_id": None,
},
"debtor_account": {
"iban": "BE84103080286059",
"other": None,
"debtor_agent": None,
"bank_transaction_code": None,
"credit_debit_indicator": "DBIT",
"status": "BOOK",
"value_date": "2022-12-29",
"transaction_date": None,
"balance_after_transaction": None,
"reference_number": None,
"debtor_account_additional_identification": None,
"creditor_account_additional_identification": None,
"exchange_rate": None,
"note": None,
},
}
to:
debtor_account:
iban: BE84103080286059
credit_debit_indicator: DBIT
status: BOOK
value_date: 2022-12-29
Forward-Port-Of: odoo/enterprise#56701
Forward-Port-Of: odoo/enterprise#54592Resolved issues and error corrections
This update corrects an inaccurate help message in the Amazon sales integration module. The fix ensures users see the correct guidance when working with Amazon account settings, improving clarity and reducing confusion during setup and configuration.
Original PR description
Forward-Port-Of: odoo/enterprise#57011
Documentation and clarification updates
Buckstop Labs has signed the Contributor License Agreement (CLA) required to contribute to Odoo. This approval document has been added to the repository, allowing the organization to submit code contributions going forward.
Original PR description
Description of the issue/feature this PR addresses: added my agreement Current behavior before PR: did not include my agreement Desired behavior after PR is merged: you can read the .md i added. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Miscellaneous changes
Before this PR, the "failure on loading more messages should display error" test was sometimes failing because it was not expecting the first messages to be display before loading more messages. This PR converts this test to use the `contains` helper which is more robust and waits for the messages to be in the DOM before loading more messages. fixes runbot-53127 Forward-Port-Of: odoo/odoo#148120 Forward-Port-Of: odoo/odoo#147072
Original PR description
Before this PR, the "failure on loading more messages should display error" test was sometimes failing because it was not expecting the first messages to be display before loading more messages. This PR converts this test to use the `contains` helper which is more robust and waits for the messages to be in the DOM before loading more messages. fixes runbot-53127 Forward-Port-Of: odoo/odoo#148120 Forward-Port-Of: odoo/odoo#147072
This update corrects the VAT code in the Saudi Arabia electronic invoicing demo data to match the current requirements from ZATCA's Sandbox environment. This fix ensures that test submissions through the Sandbox portal will work properly for users testing the Saudi Arabia invoicing functionality.
Original PR description
Description of the issue/feature this PR addresses: ZATCA changed the VAT code used for submissions on Sandobx. The vat number in the l10n_sa_edi's demo data need to be updated to reflect this change. Current behavior before PR: Submissions through Sandbox do not work as the VAT code set on the demo Saudi company is different from the one the Sandbox portal expects. Desired behavior after PR is merged: Sandbox submissions should work properly once the demo data is updated. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#153851
Asergo has signed the Contributor License Agreement (CLA) required for contributing to Odoo. This legal document confirms their right to submit code contributions to the project and protects both the contributor and Odoo.
Original PR description
I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr