无法弄清楚如何导入 one2many 和 many2one 模型

Cant figure out how to import one2many and many2one models

这是我做的自定义模型的代码,第一个class是股票和一般信息的模型。第二个 class 包含第一个 class 中每只股票 10 天的每日价格。连接两者的关系字段是股票名称。

为了导入模型我做了很多研究,但我似乎无法让它工作,任何帮助将不胜感激。

class ticker_info(models.Model):
    _name = 'ticker.rep'
    _description = 'Repository of stocks'

    name = fields.Many2one('ticker.db', string = 'Tickers')
    Sector = fields.Char()
    Symbol = fields.Char()


class ticker_prices(models.Model):
    _name = 'ticker.db'
    _description = 'Database of historical data'

    name = fields.Char(string = 'Tickers')
    Date = fields.Datetime()
    Close = fields.Float(digits=(9, 5))

编辑:对于 class 1 中的每只股票,它需要连接到模型 2,在那里我可以看到该股票的 10 个每日价格。

对于 one2many 字段,您必须创建一个循环关系,例如:

从 odoo 导入模型、字段,api

class ticker_info(models.Model):

_name = 'ticker.rep'

_description = 'Repository of stocks'

field_o2m_ids = fields.One2many('ticker.db', 'ticker_rep_id', string="Name of field")

class ticker_prices(models.Model):

_name = 'ticker.db'
_description = 'Database of historical data'

ticker_rep_id = fields.Many2one('ticker.rep', string="Name of field")