Skip to Content
Menu
This question has been flagged
1 Reply
2744 Views

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
Discard
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
Discard
Related Posts Replies Views Activity
3
Dec 19
2936
2
Oct 24
176
0
Apr 22
2406
3
Mar 24
5226
1
Feb 24
1130