Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

Change the Position of field in Xpath

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
viewsinheritance
5 Răspunsuri
95847 Vizualizări
Imagine profil
Rajiv

Hi

I want to change the position of Field in the Form View (Parent) to the new Position (In my In herited view). Is there any way.

Example:

Parent View:

<record id="1" model="1">

<field name="arch" type="xml">

<group>

<field name="X"/>

</group>

.....

.....

<group>

<field name="Y"/>

</group>

</field>

</record>

So I want to move the field Y to inside the group X. Not only field. Also I need to move the any other tags like <div> or <group> itself as bunch.

Is there any Xpath which is like below.

<xpath expr="//form/sheet/group/group/field[@name='email']" position="move">

Please help...

 

 

2
Imagine profil
Abandonează
Imagine profil
Ajay Kumar
Cel mai bun răspuns

Hello,

we can one more thing instead of "replace". Because in case of replace first we have to  remove the field and then add it to new position which will take one more step extra. So better we can use position="move"

<xpath expr="//field[@name='phone']" position="after">
<xpath expr="//field[@name='tag_ids']" position="move"/>
</xpath>
it will simply move the position of tag_ids field to after phone field. Which will save our extra line of code that we are writing in case of replace.
5
Imagine profil
Abandonează
Vyshnav A

Its worked.

Nomadoo

Hi,
I have tried your code but what I need is to move the industry_id after phone field, However after I update the module, the field is gone. It is not visible at all. I have tested with another field 'barcode' and same result. Is this xpath expression support v16 ?

thanks

Nomadoo

then I have done a test like this

<xpath expr="//field[@name='category_id']" position="after">
<xpath expr="//field[@name='mobile']" position="move"/>
</xpath>
this gives me two mobile fields, one in old position and other in new position

Dimas Aditya Kristianto

Hi @Nomadoo,
I don't know what's wrong with your code. make sure you inherit the correct id.
I test @Ajay Kumar answer in odoo 16 and it's working

<record id="change_field_product_template_tree_view" model="ir.ui.view">
<field name="name">product.template.common.tree.inherit</field>
<field name="model">product.template</field>
<field name="inherit_id" ref="product.product_template_tree_view"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='name']" position="after">
<xpath expr="//field[@name='list_price']" position="move"/>
</xpath>
</field>

Imagine profil
Mansi Kariya (mka)
Cel mai bun răspuns

Hello,

There is no such value allowed like move in xpath. Values allowed are

  • inside (default): your values will be appended inside the tag

  • after: add the content after the tag

  • before: add the content before the tag

  • replace: replace the content of the tag.

You have to simply replace that field. and put it to new position. For more details, You can refer Doc or can ask me too.

<xpath expr="//group/field[@name='X']" position="replace"/>

This will remove field from that position. Now you can put it to other place you want. Suppose you want to place it after field "Y". Example -

<xpath expr="//group/field[@name='Y']" position="after">
<field name="X"/>
</xpath>

This way, You can change postion of any field, group etc.

Hope this will help you.

8
Imagine profil
Abandonează
Mohit Kotak (MK)

Hello @Mansi, I want to add new boolean filed after supplier boolean field in res.partner form inside sale & purchase tab. Can you help me.! Thanks in advance.

Mansi Kariya (mka)

Inherit view_partner_form and then givve xpath like //page[@string='Sales & Purchases']/group/group/field[@name='supplier'] and give position to after

Imagine profil
Baiju KS
Cel mai bun răspuns

Hi Rajiv,,

Here you can use position=replace

you can select the code or block you want to replace

0
Imagine profil
Abandonează
Imagine profil
legland
Cel mai bun răspuns

I have the same issue, the view field is not visible.

'data': [

        'views/stock_production_lot_views.xml',

        # 'security/ir.model.access.csv',


    ],

https://www.odoo.com/fr_FR/forum/aide-1/question/odoo-v12-xpath-not-visible-145057


0
Imagine profil
Abandonează
Imagine profil
William Brugger
Cel mai bun răspuns

Move has been added to xpath:

https://github.com/odoo/odoo/pull/23877

0
Imagine profil
Abandonează
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
View inheritance hiding a field
views inheritance
Imagine profil
Imagine profil
1
nov. 24
2600
How to extend a base template for a specific page only, without affecting other pages that use the same base template?
views inheritance
Imagine profil
Imagine profil
1
dec. 23
4001
removing elements from an inherited view
views inheritance
Imagine profil
Imagine profil
1
mai 22
5031
I am building a custom module that has a dependent module that has extended the base view of res_partner. In my custom module I also have an inherited view of the base res_partner view. In it how do I hide the inherited view of my dependent module?
views inheritance
Imagine profil
0
ian. 20
3498
Modifying an inherited view : replace does not work Odoo 11
views inheritance
Imagine profil
Imagine profil
1
aug. 19
3786
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 ภาษาไทย Türkçe українська Tiếng Việt

Odoo este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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