Skip to Content
Menú
This question has been flagged
1 Respondre
3646 Vistes

In the Settings, we can set the unit of measure as Meters or Feet. I would like to add one more unit of measurement - Centimeters


I found this Selection field in product/models/res_config_settings.py

product_volume_volume_in_cubic_feet = fields.Selection([
('0', 'Cubic Meters'),
('1', 'Cubic Feet'),
], 'Volume unit of measure', config_parameter='product.volume_in_cubic_feet', default='0')

In my module I created new model and tried to add a new value into Selection:

from odoo import api, fields, models

class ResConfigSettings(models.TransientModel):
    _inherit = 'res.config.settings'

    product_volume_volume_in_cubic_feet = fields.Selection(selection_add=[
        ('2''Cubic Centimeters'),
    ])

But nothing has changed. New field has not appeared.

I know that even if it appears, when choosing Centimeters, there will not be a change to centimeters, but this is where I want to start.


Do you know how to solve this problem?

Avatar
Descartar
Best Answer

Hi,

Please try like this,

class AddSelection(models.TransientModel):
_inherit = 'res.config.settings'

product_volume_volume_in_cubic_feet = fields.Selection(selection_add=[('cm', 'Centimeters')])

Regards

Avatar
Descartar
Related Posts Respostes Vistes Activitat
3
de des. 19
4081
2
d’oct. 24
1104
0
d’abr. 22
3892
3
de març 24
6776
1
de febr. 24
2178