Saturday, July 9, 2022
3 changes · master
Miscellaneous changes
Create an empty image attachment and load it via an `<img>` html tag in a document. Upon rendering the image is replaced by the default browser placeholder instead of the pretty Odoo one. Task: 2886028 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 Forward-Port-Of: odoo/odoo#94759
Original PR description
Create an empty image attachment and load it via an `<img>` html tag in a document. Upon rendering the image is replaced by the default browser placeholder instead of the pretty Odoo one. Task: 2886028 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 Forward-Port-Of: odoo/odoo#94759
This commit fixes a bad call to relativedelta missing a `day` key for an argument. Forward-Port-Of: odoo/odoo#95670
Original PR description
This commit fixes a bad call to relativedelta missing a `day` key for an argument. Forward-Port-Of: odoo/odoo#95670
The unknown country code used for the country of origin of the goods is incorrect. QU refers to an unknown country in the general context, in the context of intrastat (intra-EU trade) the correct country code is QV (an unknown EU country). This commit changes the QU code to QV inside the query. (In 13.0 the code is already QV, however the line is refactored to match the code of the later stable branches. Replacing the conditional with a 'COALESCE') This distinction is present both in
Original PR description
The unknown country code used for the country of origin of the goods is incorrect. QU refers to an unknown country in the general context, in the context of intrastat (intra-EU trade) the correct…
The unknown country code used for the country of origin of the goods is incorrect. QU refers to an unknown country in the general context, in the context of intrastat (intra-EU trade) the correct country code is QV (an unknown EU country). This commit changes the QU code to QV inside the query. (In 13.0 the code is already QV, however the line is refactored to match the code of the later stable branches. Replacing the conditional with a 'COALESCE') This distinction is present both in the Dutch specifications: https://www.cbs.nl/-/media/cbsvooruwbedrijf/international-trade-in-goods/manual_statistical_declaration_itg_2022.pdf and in the Belgian specifications: https://www.nbb.be/doc/dq/e_pdf_ex/geonomenclatuur2013en.pdf and is generalised in the EU's genomenclature reporting: https://ec.europa.eu/eurostat/documents/3859598/5889816/KS-BM-05-002-EN.PDF.pdf/62e82e02-4632-438b-a284-e8fe75984b32?t=1414781146000 Forward-Port-Of: odoo/enterprise#29276 Forward-Port-Of: odoo/enterprise#29243