Skip to content

Releases: Niboo/odoo

15.0.8.0

11 Apr 15:26
Compare
Choose a tag to compare
[FIX] website: not save the "bg-" class as a cover properties value

Since [1], when editing a cover, if no "bg-X" class was selected (like
only selecting a "o_ccX"), the broken "bg-" class was saved. It had no
effect but better not accumulate non-existing classes as database
values.

However, fixing this bug actually reveals code inconsistency... which
creates other bugs. Some code were preventing to reset the color class
value. All that code apparently became useless since [2] as explained
in details at [3].

[1]: https://github.com/odoo/odoo/commit/ad59cbd33e0eaf5c7c77f9e5c0b0435917e2c155
[2]: https://github.com/odoo/odoo/commit/e1632434378fd9b550274c2f40261ad48fb77e6d
[3]: https://github.com/odoo/odoo/pull/87206#issuecomment-1088619834

Discovered with task-2792006

closes odoo/odoo#87206

Signed-off-by: Quentin Smetz (qsm) <qsm@odoo.com>

14.0.12.0

08 Feb 13:29
Compare
Choose a tag to compare
[IMP] account: put country_code field in debit note and reversal wizard

Preparation for a later PR where we use the country_code field to only show fields in the debit note and reversal wizard based on the country of the company

Backport of https://github.com/odoo/odoo/pull/83986/commits/44226366e3bb657ee5299662a788b8a07b16431f

closes odoo/odoo#84114

Signed-off-by: William André (wan) <wan@odoo.com>

15.0.4.0

29 Dec 12:04
Compare
Choose a tag to compare
[FIX] purchase: no bulgarian for en_GB translation

The translation of purchase.order().notes name (Terms and Conditions) is
wrongly done in bulgarian since 2016
(d14efd562b4c6d8868662b104d9dcdce90456737).

opw-2719178

closes odoo/odoo#81997

X-original-commit: b0be51f8b2fc1c9422aa543d03a321936bb8f667
Signed-off-by: Nicolas Lempereur (nle) <nle@odoo.com>

14.0.11.0

29 Dec 12:03
Compare
Choose a tag to compare
[FIX] account: right accounts in account group

Steps to reproduce:

- Create an account group for a range for example from 100000 to 200000
- Now edit the group to have a range from 100000 to 150000

Issue:

The accounts with code > 150000 are still in the account group

Solution

Adding an other intermediary table to the query in order to take into
account the accounts which have no group_id

opw-2695533

closes odoo/odoo#81475

Signed-off-by: Laurent Smet <las@odoo.com>

13.0.17.0

29 Dec 12:07
Compare
Choose a tag to compare
[FIX] stock_inventory: Fix Memory Error

read_group on "stock.inventory.line" could result in a memory error when the database possess to many stock.inventory.line
Those filters were removed on commit ba92e1da by AVD to prevent a test error where those fields were False. On his advices, I re-added them with the '|' comparator handle the False cases.

OPW-2714644

closes odoo/odoo#81813

Signed-off-by: Arnold Moyaux <arm@odoo.com>

13.0.10.0: [CLA] Update Arxilead CLA

02 Nov 10:52
Compare
Choose a tag to compare

Update the base Odoo version for 13.0.10.0

Version 14.0.1.0

02 Nov 10:59
Compare
Choose a tag to compare
[FIX] website_mail_channel: _send_confirmation_email with company email

Public user by default don't have email. So when you try to subscribe to a
channel in public user (portal don't receive an email), the email cannot be
send and the user see a message:
  "Unable to post message, please configure the sender's email address.

closes odoo/odoo#60865

X-original-commit: 7e40af524cc1b23abab3140377d993f3e93c5cf0
Signed-off-by: Jérémy Kersten (jke) <jke@openerp.com>