How do I add multiple models to one view?
问题 I'm trying to use three different models in one view. I've created a new model that inherits the models which seems to work fine. from openerp import models, fields, api class ProjectNote(models.Model): _name = "triangle.project.note" _inherit = ["note.note", "project.project", "triangle.note"] My problem is in the view. I use my new model as the model and inherit a view from project. <record id="view_project_notes_form" model="ir.ui.view"> <field name="name">triangle.project.note.form</field