Tuesday, January 23, 2024
3 changes
1 change
New functionality added to Odoo
Adds a balance sheet report for the Nigerian accounting localization, helping businesses in Nigeria view financial position information in a localized format. This supports local reporting needs as part of the new Nigerian localization package.
Original PR description
This commit adds a balance sheet report for a new Nigerian localization. task-3607459
2 changes
New functionality added to Odoo
This update adds support for Lithuanian companies to generate and export their Intrastat reports directly to XML format for submission to Lithuania's official intrastat reporting system. The feature includes region code configuration and settings management, enabling Lithuanian businesses to streamline their intrastat compliance reporting.
Original PR description
This commit add the Lithuanian intrastat report. This comes with the possibility to export that report into an XML file and also adds the country region code. task-3248669 Forward-Port-Of: odoo/enterprise#54655 Forward-Port-Of: odoo/enterprise#46488
Odoo now supports the Bulgarian National Bank (BNB) as a currency exchange rate provider, enabling automatic updates of exchange rates for over 30 currencies against the Bulgarian Lev (BGN). This gives businesses in Bulgaria and those transacting in BGN access to official, reliable exchange rates directly from the national bank.
Original PR description
Objective --------- Add the Bulgarian National Bank (BNB) as a Currency Provider in Odoo. Solution --------- Rates are given against BGN in an XML file of format: ``` <ROWSET> <ROW> <GOLD>1</GOLD>…
Objective
---------
Add the Bulgarian National Bank (BNB) as a Currency Provider in Odoo.
Solution
---------
Rates are given against BGN in an XML file of format:
```
<ROWSET>
<ROW>
<GOLD>1</GOLD>
<NAME_>Currency</NAME_>
<CODE>Code</CODE>
<RATIO>Per unit of currency/gold</RATIO>
<REVERSERATE>Reverse rate for 1 BGN</REVERSERATE>
<RATE>Levs (BGN)</RATE>
<CURR_DATE>Date</CURR_DATE>
<F_STAR>0</F_STAR>
</ROW>
</ROWSET>
```
Source: https://www.bnb.bg/AboutUs/AUFAQ/Contr_Exchange_Rates_FAQ?toLang=_EN
Currencies returned on the 8th of January 2024:
AUD, BRL, CAD, CHF, CNY, CZK, DKK, GBP, HKD, HUF, IDR, ILS, INR,
ISK, JPY, KRW, MXN, MYR, NOK, NZD, PHP, PLN, RON, RUB*, SEK, SGD,
THB, TRY, USD, ZAR, XAU
* Due to the situation on the international financial markets, the Bulgarian National Bank (BNB) is not in a position to set a reference exchange rate for the Bulgarian Lev against the Russian Rouble that is representative of market conditions.
task-3672394
Forward-Port-Of: odoo/enterprise#54825
Forward-Port-Of: odoo/enterprise#53914