关系字段如何在内部工作?

时间:2014-04-22 11:53:51

标签: openerp

我已经使用了所有这三个关系字段,即很多,一个,多个,很多但现在我仍然无法确切知道它们是如何在内部工作的,所以请对它们的工作有所了解。

1 个答案:

答案 0 :(得分:0)

我将举一个简单的例子。

class a(osv.osv):
_name = 'a'
_columns = {
    'f1': fields.many2one('b', 'Creates new column "f1" in "a" table'),
    'f2': fields.one2many('b', 'xxx', 'Creates new column "xxx" in "b" table'),
    'f3': fields.many2many('b', 'aaa', 'a_id', 'b_id', 'Creates new table "aaa" with column "a_id" related to "a" object and column "b_id" related to "b" object'),
}
a()

class b(osv.osv):
    _name = 'b'
b()

如果我的示例不清楚,您可以随时查看数据库并将其与代码进行比较。