假设我有这样的代码:
'expenses' : fields.related(
'property_expense_preset',
'expense_preset',
'expenses',
type="many2many",
relation="property.expense",
string="Routine Expenses",
store=False
),
现在property_expense_preset
是一个one2many字段,这意味着可能有许多property_expense_preset
个。但上面的代码只提取第一个property_expense_preset
的子代。我想展示所有这些。我该怎么做?