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
    • Artificial Intelligence
    • 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
    • Property 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
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 display multiple views with different fields

Subscribe

Get notified when there's activity on this post

This question has been flagged
view_idmulipleviews
2 Replies
24656 Views
Avatar
Anuradha
i want to display two types of from views of my model in 2 different cases . But in both case it shows same form view.
I passed view_id for loading 2nd form view and  checked its value in database and it shows correct. Then why it always loads the first one? my code is

def add_caller(self, cr, uid, ids, context=None):

         models_data = self.pool.get('ir.model.data')
          view_id = models_data._get_id(
                                       cr, uid, 'calldetails1', 'calldata_form_view_popup')

            return {
               'type': 'ir.actions.act_window',
                'view_mode': 'form',
              'view_type': 'form',
               'view_id':view_id,
               'res_model': 'calldata1',
              'target':'new',
              'context': context,
}

    }

and my xml is

 <record model="ir.ui.view" id="calldata_form_view_popup">
   <field name="name">calldata1.form</field>
   <field name="model">calldata1</field>
   <field name="type">form</field>
   <field name="priority" eval="2"/>
   <field name="arch" type="xml">
   <form string="calldata">
     <field name="caller" string="Caller"/>
     <button name="save" type="object"  string="Save" class="oe_highlight"/>
    <button string="Cancel" class="oe_link" special="cancel"/>
    </form>
</field>
</record>
 <record model="ir.actions.act_window" id="action_calldata_popup_form">
   <field name="name">Calldetails</field>
   <field name="res_model">calldata1</field>
    <field name="view_type">form</field>
   <field name="view_mode">form</field>
   <field name="view_id" ref="calldata_form_view_popup"/>
</record>
 <record model="ir.ui.view" id="calldata_form_view">
   <field name="name">calldata1.form</field>
   <field name="model">calldata1</field>
   <field name="priority" eval="1"/>
   <field name="type">form</field>
   <field name="arch" type="xml">
   <form string="calldata">
        <field name="caller" string="Caller"/>
    </form>
 </field>
 </record>

 <record model="ir.actions.act_window" id="action_calldata_form">
   <field name="name">Calldetails</field>
   <field name="res_model">calldata1</field>
   <field name="view_type">form</field>
   <field name="view_mode">tree,form,graph,calendar</field>
</record>
Any one please help
0
Avatar
Discard
Avatar
Lucas Huber
Best Answer

This worked for me:

<record id="act_exchange_transaction_line_new" model="ir.actions.act_window">
    <field name="name">Transaction Line Message new </field> 
    <field name="view_id" ref="view_transaction_line_info_form"/> 
    <field name="res_model">exchange.transaction.line</field> 
    <field name="view_type">form</field> 
    <field name="view_mode">form</field>             
    field name="target">new</field> 
</record>

 

<field name="act_window_id"> did not work. 
But does anybody know how to integrate <field name="view_id" ref="view_transaction_line_info_form"/> into a function?

'view_id': 'view_transaction_line_info_form',

The line above does not work!

0
Avatar
Discard
Avatar
Anuradha
Author Best Answer
Solved the  issue by using   ir.actions.act_window.view
Changed code as 
 <record model="ir.ui.view" id="calldata_form_view">
   <field name="name">calldata1.form</field>
   <field name="model">calldata1</field>
   <field name="priority" eval="2"/>
   <field name="type">form</field>
   <field name="arch" type="xml">
   <form string="calldata">
          <field name="caller" string="Caller"/>
  </form>
 </field>
 </record>
 <record model="ir.actions.act_window" id="action_calldata_form">
   <field name="name">Calldetails</field>
   <field name="res_model">calldata1</field>
   <field name="view_type">form</field>
   <field name="view_mode">form,itree,graph,calendar</field>
 </record>
<record id="calldata_form_action_tree_view" model="ir.actions.act_window.view">
    <field eval="1" name="sequence"/>
    <field name="view_mode">tree</field>
    <field name="view_id" ref="calldata_tree_view"/>
    <field name="act_window_id" ref="action_calldata_form"/>
  </record>
  <record id="calldata_form_action_form_view" model="ir.actions.act_window.view">
    <field eval="2" name="sequence"/>
    <field name="view_mode">form</field>
    <field name="view_id" ref="calldata_form_view"/>
    <field name="act_window_id" ref="action_calldata_form"/>
  </record>
  <record model="ir.ui.view" id="calldata_form_view_popup">
   <field name="name">calldata1.form</field>
   <field name="model">calldata1</field>
   <field name="type">form</field>
   <field name="priority" eval="1"/>
   <field name="arch" type="xml">
   <form string="calldata">
        <field name="caller" string="Caller"/>
  </form>
   </field>
  </record>
 <record model="ir.actions.act_window" id="action_calldata_popup_form">
    <field name="name">Calldetails</field>
    <field name="res_model">calldata1</field>
    <field name="view_type">form</field>
    <field name="view_mode">form</field>
    <field name="view_id" ref="calldata_form_view_popup"/>
  </record>

and removed view_id from return
0
Avatar
Discard
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
Related Posts Replies Views Activity
How to call a specific view of Odoo from JS In the current Window Solved
view_id odoo9
Avatar
Avatar
Avatar
Avatar
Avatar
4
Sep 24
26606
Parent view id of stock_scheduler_compute_views.xml
parent_id view_id
Avatar
Avatar
Avatar
3
Nov 18
5349
Replacing view_id with inheritance
inheritance view_id odoo17
Avatar
Avatar
1
Sep 24
2212
Replacing view_id with inheritance
inheritance view_id odoo17
Avatar
0
Sep 24
1625
odoo 17 the project module my task section default view Changing
project view_id view_type
Avatar
Avatar
2
Dec 24
3329
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 Svenska ภาษาไทย 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