Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
2 Replies
5136 Tampilan

Hi, i want to inherit the view partenariat described in the bellow code, and add to it 3 fields

<record model="ir.ui.view" id="partenariat_form"> 
    <field name="name">partenariat.form</field> 
    <field name="model">partenariat</field> 
    <field name="type">form</field> 
    <field name="arch" type="xml">
     <form string="Formulaire partenariat" version="7.0" > 
        <sheet>
           <group col="2" string="Gestion des Partenariats">

            <field name="sujet"/> 
            <field name="organisateur"/>
            <field name="lieu"/> 
            <field name="date_debut"/>
            <field name="date_fin" /> 
          </group>
          </sheet>
        </form>
    </field>
</record>

i wirite the code of the salon view who inherit from patenariat view like bellow:

<record model="ir.ui.view" id="salon_form"> 
    <field name="name">salon.form</field> 
    <field name="model">salon</field> 
    <field name="type">form</field> 
    <field name="inherit_id" ref="partenariat_form"/>  
    <field name="arch" type="xml">
    <xpath expr="/form/sheet/group/field[@name='date_fin']" position="after">
                    <field name="prix_par_metre_salon" widget="integer"/>
                    <field name="espace_reserve_salon" widget="integer"/> 
                    <field name="cout_total_salon" widget="integer"/>
            </xpath>  

    </field> 
</record>

i was succeed to inherit fields, but i dont have a good result because my salon view is not in a sheet and don't have a title, i want that my salon views in a sheet, i try t add sheet balise but also no changes, plz help me

Avatar
Buang
Jawaban Terbai

Hi,

Try this code

<record model="ir.ui.view" id="partenariat_form"> 
<field name="name">partenariat.form</field> 
<field name="model">partenariat</field> 
<field name="type">form</field> 
<field name="arch" type="xml">
 <form string="Formulaire partenariat" version="7.0" > 
        <sheet>
           <group string="Gestion des Partenariats">
                <field name="sujet"/> 
                <field name="organisateur"/>
                <field name="lieu"/> 
                <field name="date_debut"/>
                <field name="date_fin" /> 
            </group>
        </sheet>
    </form>
</field>

</record>

<record model="ir.ui.view" id="salon_form"> 
    <field name="name">salon.form</field> 
    <field name="model">salon</field> 
    <field name="type">form</field> 
    <field name="inherit_id" ref="your_module_name.partenariat_form"/>  
    <field name="arch" type="xml">

            <xpath expr="/form/sheet/group/field[@name='date_fin']" position="after">
                <field name="prix_par_metre_salon" widget="integer"/>
                <field name="espace_reserve_salon" widget="integer"/> 
                <field name="cout_total_salon" widget="integer"/>
            </xpath>  

    </field> 
</record>
Avatar
Buang
Penulis

thanx for your answer but there is no changes :/

Means your field is not showing ??

Penulis

fields are showing but the sheet is no showing

Penulis

i want that the salon view who inherit from the partenariat view, be in the sheet like the partenariat view, this is the probleme

Means you want add new sheet and that all fields are will be in new sheet ?

Penulis

yes i want that the view salon be in a sheet with her fields and the inherited fields

Penulis

yes i want that the view salon be in a sheet with her fields and the inherited fields

can u add screen shot now looking of your field and where you want do change ?

Penulis

i really want but i can't because i don't have points karama necessary

Penulis

i want that the view salon be like the result of this but with inhetance:

<form string="Formulaire Salon" version="7.0" > <sheet> <group string="group_test"> <group string="Gestion des Salons"> <field name="sujet"/> <field name="organisateur"/> <field name="lieu"/> <field name="date_debut"/> <field name="date_fin" /> <field name="prix_par_metre_salon" widget="integer"/> <field name="espace_reserve_salon" widget="integ

Penulis

no changes jack , i don't know why, can you give me your emails and i send to you the modules ???

I have update ans pls check it

Penulis Jawaban Terbai

i want that the view salon be like the result of this but with inhetance:

<form string="Formulaire Salon" version="7.0" > 
        <sheet>
           <group string="group_test">
               <group string="Gestion des Salons">
                    <field name="sujet"/> 
                    <field name="organisateur"/>
                    <field name="lieu"/> 
                    <field name="date_debut"/>
                    <field name="date_fin" />
                     <field name="prix_par_metre_salon" widget="integer"/>
                    <field name="espace_reserve_salon" widget="integer"/> 
                    <field name="cout_total_salon" widget="integer"/>
                </group>
            </group>
        </sheet>
    </form>
Avatar
Buang
Post Terkait Replies Tampilan Aktivitas
1
Mar 15
3572
17
Des 21
24431
1
Des 18
19580
1
Jul 15
7141
2
Mar 15
5456