Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Artificial Intelligence
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Supermarché
    • Quincaillerie
    • Magasin de jouets
    Restauration & Hôtellerie
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • Brasserie
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Commerce
    • Homme à tout faire
    • Matériel informatique & support
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Parcourir toutes les industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenir partenaire
    • Services pour partenaires
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

changing fields position

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
labelremove
3 Réponses
14033 Vues
Avatar
Frankie Chan

Please refer to the figure here.

I would llike to swap the position of the fields "street", which labeled as "Address" and that of the field "name", which is labeled as "Contact Person name".

However, I cannot remove the string "Address" on the left hand side

The origianl res_partner_view.xml writes:

------------------------------------------------------------------------------------------------------------------------------------------------------

 <record id="view_partner_form" model="ir.ui.view">
            <field name="name">res.partner.form</field>
            <field name="model">res.partner</field>
            <field eval="1" name="priority"/>
            <field name="arch" type="xml">
                <form string="Partners" version="7.0">
                <sheet>

                         ....................

                  <group>
                        <group>

                                 ....................

                               <label for="street" string="Address"/>
                                <div>

                                    ....................

                                        <field name="street" placeholder="Street..."  attrs="{'readonly': [('use_parent_address','=',True)]}"/>

------------------------------------------------------------------------------------------------------------------------------------------------------

As you can see, there is a label, <label for="street" string="Address"/>, which makes me unable to remove it in openerp.

What code shoud I write?

Thanks

2
Avatar
Ignorer
Avatar
Vasiliy Birukov
Meilleure réponse

Under label Address placed several fields. If you need move only field street, just redefine label for other filed. For example:

<label for="street2" string="Address"/>

0
Avatar
Ignorer
Avatar
Frankie Chan
Auteur Meilleure réponse

I have tried the following but it does not work. Can you please give the details?

<?xml version="1.0" encoding="utf-8"?>
<openerp>
  <data>
    <record model="ir.ui.view" id="view_customer_test_form">
        <field name="name">res.partner.form</field>
        <field name="model">res.partner</field>
        <field name="inherit_id" ref="base.view_partner_form" />
        <field name="arch" type="xml">


              <label for="street" string="xxy"/>

        </field>
    </record>

  </data>
</openerp>

0
Avatar
Ignorer
Jagdish Panchal

@ Frankie Chan: Create new module add xml file and install your new module. so you did not need to change existing moduel

Odoobot
Hi Jagdish,

Thanks for your reply.

Yes, you are right. I can create new module.

However, I am new to openerp. In the new xml file, I need to create view_form, view_tree, action form, menuitem and so on, which is very difficult to me.

Besides, there are many folders I need to take care of, for example, static, i18n, images, security, css, src, js, etc. They are also very new to me.

I can directly change the existing file but it will be better if I can copy it to a new file and change what I need.

Can you suggest?

Thanks.

Regards,

Frankie


On Wed, Jul 9, 2014 at 6:45 PM, Jagdish Panchal <jnp1682@openerp.my.openerp.com> wrote:

@ Frankie Chan: Create new module add xml file and install your new module. so you did not need to change existing moduel

--
Jagdish Panchal Sent by OpenERP Inc. using OpenERP. Access your messages and documents in Odoo

Jagdish Panchal

Hi just add test_customer_view.xml file in your module and add this code in your file.

Odoobot
In test_customer_view.xml, which code should I add ?


On Wed, Jul 9, 2014 at 8:51 PM, Jagdish Panchal <jnp1682@openerp.my.openerp.com> wrote:

Hi just add test_customer_view.xml file in your module and add this code in your file.

--
Jagdish Panchal Sent by OpenERP Inc. using OpenERP. Access your messages and documents in Odoo

Jagdish Panchal

@ Frankie Chan: Add code in my answer in test_customer_view.xml thanks

Jagdish Panchal

Hi Frankie Chan: I have update answer check it.

Avatar
Jagdish Panchal
Meilleure réponse

Hi

Refer below code

test_module(add following file)
- __init__.py
- __openeerp__.py
- test_customer_view.xml

__openerp__.py

{
    'name': 'Test module,
    'version': '0.1',
    'category': 'Others',
    'complexity': "normal",
    'description': """ description related your module """
    'author': ['author of moudule'],
    'website': 'website name',
    'depends': [
        "base" #This module depend on the res_partner thats why I add base
    ],
    'init_xml': [
        #Demo data file if you want create any.
    ],
    'update_xml': [
        "test_customer_view.xml",
    ],
    'demo_xml': [],
    'test': [],
    'installable': True,
    'auto_install': False,
    'application': False,
    'images': [],
    'js': [],
}

test_customer_view.xml:

<?xml version="1.0" encoding="utf-8"?>
<openerp>
  <data>
    <record model="ir.ui.view" id="view_customer_test_form">
        <field name="name">res.partner.form</field>
        <field name="model">res.partner</field>
        <field name="inherit_id" ref="base.view_partner_form" />
        <field name="arch" type="xml">

              <field name="street" placeholder="Street..." position="replace">
                  <field name="street" placeholder="Street..."  string ="xxy"/>
              </field>

        </field>
    </record>

  </data>
</openerp>

0
Avatar
Ignorer
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Publications associées Réponses Vues Activité
Print simple address label / sticker
label
Avatar
0
juin 22
2794
Configuring Shipping Label
label
Avatar
0
janv. 21
3917
Label Format and detail
label
Avatar
0
nov. 19
5981
Are there any example of delete value using pre-configure? Résolu
remove
Avatar
Avatar
2
août 17
5975
How to remove the values of an object in the method remove/delete ?
remove
Avatar
Avatar
2
juil. 17
8081
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenir partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk Slovenščina Español (América Latina) Español Svenska ภาษาไทย Türkçe українська Tiếng Việt

Odoo est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now