- May 31, 2024
-
-
oury.balde authored
-
oury.balde authored
Updated logic for handling 'force_code_id' in `MetaAnalytic` class
-
- May 17, 2024
-
-
Vincent Hatakeyama authored
-
Etienne Ferriere authored
values from useless data.
-
- May 16, 2024
-
-
Etienne Ferriere authored
values from useless data.
-
- Feb 15, 2024
-
-
Houzefa Abbasbhay authored
-
- Feb 09, 2024
-
-
Houzefa Abbasbhay authored
-
Houzefa Abbasbhay authored
-
Houzefa Abbasbhay authored
-
- Nov 27, 2023
-
-
Houzefa Abbasbhay authored
-
Houzefa Abbasbhay authored
Streamline previous impl to simply calling ``self.env.ref`` as there are no perf penalties in doing so with Odoo 16 (cache works fine).
-
- Oct 18, 2023
-
-
Houzefa Abbasbhay authored
-
- Sep 25, 2023
-
-
Vincent Hatakeyama authored
-
Vincent Hatakeyama authored
-
Vincent Hatakeyama authored
-
Vincent Hatakeyama authored
-
- Sep 05, 2023
-
-
Vincent Hatakeyama authored
-
- Aug 29, 2023
-
- Jul 24, 2023
-
-
Houzefa Abbasbhay authored
-
Houzefa Abbasbhay authored
(eg invoice address of a partner)
-
- Jul 17, 2023
-
-
Houzefa Abbasbhay authored
-
Houzefa Abbasbhay authored
-
Houzefa Abbasbhay authored
Not used anywhere / not properly migrated to recent Odoo versions.
-
- Jul 13, 2023
-
-
Houzefa Abbasbhay authored
Update method signatures, handle models with missing "description" field.
-
- Jul 17, 2023
-
-
Houzefa Abbasbhay authored
-
- Jul 07, 2023
-
-
Houzefa Abbasbhay authored
Cannot assume that an analytic name is always derived from model name with underscore/dot changes. Also, this code crashes when the model contains underscores.
-
- Jun 15, 2023
-
-
oury.balde authored
-
- Jun 12, 2023
-
-
oury.balde authored
-
- Jun 10, 2023
-
-
oury.balde authored
An AttributeError occurs when including analytics from the wrong analytic model. The error message indicates that the object does not have the attribute "_required_analytic_fields". To resolve this, replace the line: required = self.env[view["model"]]._required_analytic_fields() with: model_analytic = model.replace("_", ".") required = self.env[model_analytic]._required_analytic_fields() This change ensures that the correct analytic model is referenced, avoiding the AttributeError and enabling the retrieval of the required analytics fields.
-
- Jun 08, 2023
-
-
oury.balde authored
-
oury.balde authored
In the affected code block, the condition for updating the code_description field was previously checked using self._fields.get(code_description) in self._field_computed. This has been modified to use self._fields.get(code_description) in self.pool.field_computed.
-