İçereği Atla
Menü
Bu soru işaretlendi
1 Cevapla
3797 Görünümler

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
Vazgeç
En İyi Yanıt

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
Vazgeç
İlgili Gönderiler Cevaplar Görünümler Aktivite
3
Ara 19
4252
2
Eki 24
1255
0
Nis 22
4063
3
Mar 24
6984
1
Şub 24
2317