Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Generating Basic View In Odoo

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 300
    Comment on it

    If you want to generating basic view in Odoo follow this below step-
    Step-1 Go to .xml file and generating basic view like below code.

    <!--?xml version="1.0" encoding="utf-8"?-->
    <openerp>
        <data>
        <record id="action_attendee" model="ir.actions.act_window">
                        <field name="name">Attendee</field>
                        <field name="type">ir.actions.act_window</field>
                        <field name="res_model">attendee</field>
                        <field name="view_type">form</field>
                        <field name="view_id" ref="attendee_tree">
                        <field name="view_mode">tree,form</field>
             </field></record>
    
    
    
                          <record id="action_session" model="ir.actions.act_window">
                        <field name="name">Session</field>
                        <field name="type">ir.actions.act_window</field>
                        <field name="res_model">session</field>
                        <field name="view_type">form</field>
                        <field name="view_id" ref="session_tree">
                        <field name="view_mode">tree,form</field>
             </field></record>
    
           </data>
    </openerp>
    

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: