Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
2 Odpovědi
5127 Zobrazení

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
Zrušit
Nejlepší odpověď

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
Zrušit
Autor

thanx for your answer but there is no changes :/

Means your field is not showing ??

Autor

fields are showing but the sheet is no showing

Autor

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 ?

Autor

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

Autor

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 ?

Autor

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

Autor

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

Autor

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

Autor Nejlepší odpověď

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
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
1
bře 15
3571
17
pro 21
24429
1
pro 18
19579
1
čvc 15
7138
2
bře 15
5454