Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
1 Ответить
2597 Представления

want to show Many2one field on website (on page/form) but don't know how to, please help.

my base model on which 2nd model based on:

class Zones(models.Model):
    _name = 'tests.zones'
    _rec_name = 'name'
    _description = "Tests Zones"
    name = fields.Char(string="Zone Name", required=True)
    description = fields.Text(string="Zone Description")
    zone_status = fields.Selection([
        ('active', 'Active'),
        ('inactive', 'In-Active')
    ], string="Zone Status", required=True, default='active')

model which contains inheritance and used for website, requires to add in wesite form/page:

class ResUsersExt(models.Model):
    _inherit = 'res.users'
    contact_no = fields.Char(string='Contact No.')
    address = fields.Text(string='Your Address', required=True, default='00')
    zone_id = fields.Many2one('tests.zones', string="Your Zone", required=True, default="1")

regards


Аватар
Отменить
Лучший ответ

Hi,

See this example illustrating the same: How To Add Dynamic Selection Field In Odoo Website Form

Thanks

Аватар
Отменить
Автор

thanks @Niyas Raphy for quick response and link for video tutorial, definitely i will check it and will try to implement and give feedback.

Related Posts Ответы Просмотры Активность
1
мар. 21
2313
1
февр. 25
3699
2
апр. 23
2900
2
февр. 25
40730
2
нояб. 22
2959