İçereği Atla
Menü
Bu soru işaretlendi
2 Cevaplar
5129 Görünümler

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
Vazgeç
En İyi Yanıt

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
Vazgeç
Üretici

thanx for your answer but there is no changes :/

Means your field is not showing ??

Üretici

fields are showing but the sheet is no showing

Üretici

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 ?

Üretici

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

Üretici

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 ?

Üretici

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

Üretici

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

Üretici

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

Üretici En İyi Yanıt

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
Vazgeç
İlgili Gönderiler Cevaplar Görünümler Aktivite
1
Mar 15
3571
17
Ara 21
24430
1
Ara 18
19580
1
Tem 15
7138
2
Mar 15
5454