Daily updates from Odoo
Tuesday, July 2, 2024
2 changes
1 change
New functionality added to Odoo
Spreadsheet users can now use area charts, which show line chart trends with the space below the line filled in. Line charts inserted from graph views now appear as area charts in spreadsheets, making reporting visuals more consistent across Odoo.
Original PR description
This commit adds the area charts subtype for odoo charts. Those are line charts with the area filled below the line. From the graph view, line charts are inserted as Area charts to be consitent between the graph view and the spreadsheet. Task: [3981124](https://www.odoo.com/web#id=3981124&cids=1&menu_id=4720&action=333&active_id=2328&model=project.task&view_type=form)
1 change
New functionality added to Odoo
This update adds support for automatically retrieving currency exchange rates from Uruguay's Central Bank (BCU). Businesses operating in Uruguay can now use the official BCU webservices to keep their currency rates current and accurate, eliminating the need for manual updates.
Original PR description
Add a currency rates update method using the BCU (Banco Central Uruguayo) webservices for Uruguay (UY). Webservices used: - Get last currency rate update date https://cotizaciones.bcu.gub.uy/wscotizaciones/servlet/awsultimocierre - Get rates https://cotizaciones.bcu.gub.uy/wscotizaciones/servlet/awsbcucotizaciones Latest PDF specification [here](https://drive.google.com/file/d/122UtHhpdYEmbOti0nr0d-brZs65kiLDT/view) Rates can be manually verified [here](https://www.bcu.gub.uy/Estadisticas-e-Indicadores/Paginas/Cotizaciones.aspx) For questions or updated specifcations, please send an email to mesadeayuda@bcu.gub.uy *Note: the `CodigoISO` tag isn't a reliable ISO code, that's why we use their specific `Moneda` currency code instead.* Credits to **Adhoc** for the development. Original PR: odoo/enterprise#49519