documentation icon indicating copy to clipboard operation
documentation copied to clipboard

Odoo documentation sources

Results 694 documentation issues
Sort by recently updated
recently updated
newest added

Solicito documentación o guía para el proceso de creación de una orden de fabricación en Odoo. Se requiere información clara sobre los pasos a seguir, los módulos involucrados y recomendaciones...

# Description The `Chart of Accounts > Account tags`'s example points to the wrong file ## Current https://www.odoo.com/documentation/master/developer/howtos/accounting_localization.html?highlight=localization ## Expected The example should be `https://github.com/odoo/odoo/blob/master/addons/l10n_lt/data/account_account_tag_data.xml` instead

Improving documentation to add improved OAuth process and Tokenization feature to Mercado Pago

Chapter 13 says: Unfortunatelly - when `_name` is ommited (implicit) ``` from odoo import models import logging _logger = logging.getLogger(__name__) class EstateModel(models.Model): _inherit = ["estate_property"] _description = "Enhancement of RealEstate...

Chapter 12 gives example: which links to this code: but it throws exception: ``` prop = self.env['estate_property'].browse(vals_list['property_id']) ~~~~~~~~~^^^^^^^^^^^^^^^ TypeError: list indices must be integers or slices, not str ```

This section: is extremely hard to understand. 1. We were using buttons linked to actions in this whole chapter. Why this button is different? 2. What is this weird `%()d`...

### This part: should come after this part: And instead of it, there should be other example (perhaps the one referring to property_type?) as at the point where it's now...

### Exercise states: But it's not exactly clear how to go from previous ``` list,form ``` to the one in Example: ``` ``` (shall `view_mode` be removed? Or must it...

Please explain the Model naming conventions in the [First Chapter](https://www.odoo.com/documentation/19.0/developer/tutorials/server_framework_101/01_architecture.html) of the tutorial. There is so much confusion... [Chapter 3](https://www.odoo.com/documentation/19.0/developer/tutorials/server_framework_101/03_basicmodel.html) shows this: and this: in [Chapter 4](https://www.odoo.com/documentation/19.0/developer/tutorials/server_framework_101/04_securityintro.html) it's even more...

In this tutorial: https://www.odoo.com/documentation/19.0/developer/tutorials/server_framework_101/03_basicmodel.html There is an example of model: in which there is an `_` instead of `.` Therefore the rest of the description is misleading: and as the...