Wednesday, November 20, 2024
2 changes · 17.0
New functionality added to Odoo
This update replaces the outdated FedEx SOAP API with the current REST API offered by FedEx. This ensures continued functionality and access to the latest FedEx shipping features, improving our integration with this key logistics provider.
Original PR description
The existing FedEx implementation used the old FedEx SOAP API which is no longer in development. This new version makes use of the current REST APIs available at developer.fedex.com task-3759206 Forward-Port-Of: odoo/enterprise#73579
This update adds the ability to include additional data columns in the account partner ledger report queries. Specifically, a new function allows for the addition of the 'date' field, providing more detailed information within the report. This improves the reporting capabilities for financial analysis.
Original PR description
### After this PR
You can add new column to the account partner ledger
Example:
```
def _get_additional_column_aml_query_values(self):
res = super()._get_additional_column_aml_query_values()
res +="account_move_line.date as date,"
return res
```