Wednesday, November 20, 2024
1 change
New functionality added to Odoo
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
```