Se rendre au contenu
Menu
Cette question a été signalée
1 Répondre
11759 Vues

Hello,

I have a question, i have created a new module, but this module don't show the labels in view form, what can i do? Thanks.

Attach the example:

 <record model="ir.ui.view" id="ficha_cliente_form">
            <field name="name">ficha.cliente.form</field>
            <field name="model">ficha.cliente</field>
        <field name="type">form</field>
            <field name="arch" type="xml">
                <form string="Clientes" version="7.0">
                    <field name="nom"/>
                    <field name="cognom1"/>
                    <field name="cognom2"/>        
            <field name="direccio"/>        
            <field name="telefon"/>                         
            <field name="poblacio"/>        
                </form>
            </field>
        </record>
Avatar
Ignorer
Meilleure réponse

Hi,

use a tag group

  <form string="Clientes" version="7.0">
     <group>
       <field name="nom"/> 
       <field name="cognom1"/> 
        .....
    </group>
  </form>
Avatar
Ignorer
Auteur

Works great, thank you very much.

Publications associées Réponses Vues Activité
2
janv. 24
13214
1
nov. 24
1791
1
sept. 21
9568
1
janv. 24
17159
1
mars 15
10085