Skip to Content
मेन्यू
This question has been flagged
1 Reply
3749 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
दिस॰ 19
4203
2
अक्तू॰ 24
1206
0
अप्रैल 22
4021
3
मार्च 24
6928
1
फ़र॰ 24
2280