Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

how do set multiple models in single form view ?.

Subscribe

Get notified when there's activity on this post

This question has been flagged
1 Reply
12416 Views
Avatar
rajashekarpunna

I have three models in same module. I need to set those 3 models in single view. If i did using single model it is override.


This is my py file

class Quarterly_exams_schedule(models.Model):

_name = 'quarterly_exams.quarterly_exams'

#Quarterly Exams fields

quarterly_exams = fields.Integer(string="Quarterly")

quarterly_subject_1=fields.Integer(string="English",required=True, copy=False)

quarterly_subject_2=fields.Integer(string="Hindi",required=True, copy=False)

quarterly_subject_3=fields.Integer(string="Science",required=True, copy=False)

quarterly_subject_4=fields.Integer(string="Mathematics",required=True, copy=False)

quarterly_subject_5=fields.Integer(string="Social",required=True, copy=False)

quarterly_subject_6=fields.Integer(string="Sanskrit",required=True, copy=False)

# maximum_marks=fields.Selection([('100','100'),('75','75')], string="Maximum Marks")

quarterly_total_marks=fields.Integer(string="Total",readonly=True)

quarterly_total_percentage=fields.Integer(string="Percentage",readonly=True)

class Halfyearly_exams_schedule(models.Model):

_name = 'half_yearly.half_yearly'

half_yearly_exams = fields.Integer(string="Half_yearly")

half_yearly_subject_1=fields.Integer(string="English",required=True, copy=False)

half_yearly_subject_2=fields.Integer(string="Hindi",required=True, copy=False)

half_yearly_subject_3=fields.Integer(string="Science",required=True, copy=False)

half_yearly_subject_4=fields.Integer(string="Mathematics",required=True, copy=False)

half_yearly_subject_5=fields.Integer(string="Social",required=True, copy=False)

half_yearly_subject_6=fields.Integer(string="Sanskrit",required=True, copy=False)

half_yearly_total_marks=fields.Integer(string="Total",readonly=True)

half_yearly_total_percentage=fields.Integer(string="Percentage",readonly=True)

class Annually_exams_schedule(models.Model):

_name = 'annually.annually'

annually_exams = fields.Integer(string="Annually")

annually_subject_1=fields.Integer(string="English",required=True, copy=False)

annually_subject_2=fields.Integer(string="Hindi",required=True, copy=False)

annually_subject_3=fields.Integer(string="Science",required=True, copy=False)

annually_subject_4=fields.Integer(string="Mathematics",required=True, copy=False)

annually_subject_5=fields.Integer(string="Social",required=True, copy=False)

annually_subject_6=fields.Integer(string="Sanskrit",required=True, copy=False)

annually_total_marks=fields.Integer(string="Total",readonly=True)

annually_total_percentage=fields.Integer(string="Percentage",readonly=True)

This is my xml file

<record model="ir.ui.view" id="school_management_form6">

<field name="name">school_management from6</field>

<field name="model">quarterly_exams.quarterly_exams</field>

<!-- <field name="inherit_id" ref=" school_management.school_management_form6"/> -->

<field name="arch" type="xml">

<form>

<sheet>

<notebook>

<page name="school" string="Quarterly">

<header>

<button name="quarterly_clear_records" string="Reset" type="object" style="background-color:CornflowerBlue "/>

</header>

<group string="Quarterly Marks">

<group>

<field name="quarterly_subject_1" widget="char"/>

<field name="quarterly_subject_2" widget="char"/>

<field name="quarterly_subject_3" widget="char"/>

<field name="quarterly_subject_4" widget="char"/>

<field name="quarterly_subject_5" widget="char"/>

<field name="quarterly_subject_6" widget="char"/>

<field name="quarterly_total_marks"/>

</group>

<group>

<field name="quarterly_total_percentage"/>

</group>

</group>

</page>

<page name="school" string="Half Yearly">

<header>

<button name="half_yearly_clear_records" string="Reset" type="object" style="background-color:CornflowerBlue "/>

</header>

<group string="Half Yearly Marks">

<group>

<field name="half_yearly_subject_1" widget="char"/>

<field name="half_yearly_subject_2" widget="char"/>

<field name="half_yearly_subject_3" widget="char"/>

<field name="half_yearly_subject_4" widget="char"/>

<field name="half_yearly_subject_5" widget="char"/>

<field name="half_yearly_subject_6" widget="char"/>

<field name="half_yearly_total_marks"/>

</group>

<group>

<field name="half_yearly_total_percentage"/>

</group>

</group>

</page>

<page name="school" string="Annually">

<header>

<button name="annually_clear_records" string="Reset" type="object" style="background-color:CornflowerBlue "/>

</header>

<group string="Annually Marks">

<group>

<field name="annually_subject_1" widget="char"/>

<field name="annually_subject_2" widget="char"/>

<field name="annually_subject_3" widget="char"/>

<field name="annually_subject_4" widget="char"/>

<field name="annually_subject_5" widget="char"/>

<field name="annually_subject_6" widget="char"/>

<field name="annually_total_marks"/>

</group>

<group>

<field name="annually_total_percentage" />

</group>

</group>

</page>

</notebook>

</sheet>

</form>

</field>

</record>

0
Avatar
Discard
Avatar
Niyas Raphy (Walnut Software Solutions)
Best Answer

Hi,

If you are looking to show the data's from two models in a single view, ie data of model A and data of model B has to be shown in Model C, then the better way is to create model C that is populated by a SQL View that joins the  models A and B.


See a sample which join two models into a third model,


First define the model c and its fields,



Then you can use sql query to populate the model,



Thanks


0
Avatar
Discard
Răzvan Anastasescu

And is this 3rd view editable ? I think not (but haven't tried yet)

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Sign up
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now