Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

Adding a field to an existing form

Odoberať

Get notified when there's activity on this post

This question has been flagged
viewsmoduleforminheritanceodoo10
3 Replies
18408 Zobrazenia
Avatar
E.M.

In product.product_category_form_view


<?xml version="1.0"?>
<form class="oe_form_configuration">
    <sheet>
        <div class="oe_button_box" name="button_box">
            <button class="oe_stat_button" name="164" icon="fa-th-list" type="action" context="{'search_default_categ_id': active_id}">
                <div class="o_form_field o_stat_info">
                    <span class="o_stat_value"><field name="product_count"/></span>
                    <span class="o_stat_text"> Products</span>
                </div>
            </button>
        </div>
        <div class="oe_title">
            <label for="name" string="Category name" class="oe_edit_only"/>
            <h1><field name="name" placeholder="e.g. Lamps"/></h1>
        </div>
        <group name="first" col="4" string="Category Type">
            <field name="parent_id"/>
            <field name="type"/>
        </group>
    </sheet>
</form>



I would like to add another section:

"Category Test", a new section/title with same font and style as "Category Type", "Inventory Valuation", "Account Properties", etc. titles.

Under that section there will be a dummy checkbox (test checkbox) just to understand how to properly place new fields/sections.

I have created and installed the new module, now I have to understand which would be the right way to add this new section with the checkbox field.

Under views folder of the module I create the new .xml file:


<?xml version="1.0" encoding="UTF-8"?>
<odoo>
    <data>
        <!-- Add test field to existing view -->
        <record model="ir.ui.view" id="category_test_form_view">
            <field name="name">category.test</field>
            <field name="model">product.category</field>
            <field name="inherit_id" ref="product.product_category_form_view"/>
            <field name="arch" type="xml">
                <WHAT SHOULD I PUT HERE?>
            </field>
        </record>
    </data>
</odoo>


How would you specify to add both title and Test checkbox AFTER the Category Type section?

Odoo 10.

0
Avatar
Zrušiť
Ray Carnes

What are the name(s) of the new fields you have created to go on the Category Test section?

Damon

ditto

E.M.
Autor

It was just test field. I was in doubt about the whole xpath and group syntax. Thanks for hte comments anyway.

Avatar
E.M.
Autor Best Answer

I finally find it with some time. I was also having issues because I did not include "product" as module dependency in __manifest__.py.


The right xml is:

<?xml version="1.0" encoding="UTF-8"?>
<odoo>
    <data>
        <!-- Add test field to existing view -->
        <record model="ir.ui.view" id="category_test_form_view">
            <field name="name">Category Test</field>
            <field name="model">product.category</field>
            <field name="inherit_id" ref="product.product_category_form_view"/>
            <field name="arch" type="xml">
                <xpath expr="//group[@name='first']" position="after">
                        <group name="first" string="Category Test">
                                <field name="test"/>
                                <field name="image_medium" widget="image" class="oe_avatar" modifiers="{}"/>
                        </group>
                </xpath>
            </field>
        </record>
    </data>
</odoo>
1
Avatar
Zrušiť
Enjoying the discussion? Don't just read, join in!

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

Registrácia
Related Posts Replies Zobrazenia Aktivita
How to change the standard "New Quotation" form? Solved
module form inheritance
Avatar
Avatar
1
feb 23
2714
View inheritance in Odoo 10, <li> tag Solved
views inheritance odoo10
Avatar
Avatar
1
máj 20
3646
form view how to show parents fields from Many2one relation? Solved
views form many2one odoo10
Avatar
Avatar
1
mar 18
10406
How to make conditionally invisible a field with inheritance?
views form inheritance xpath
Avatar
0
máj 24
8087
Change position of field in inherited view odoo16
views form inheritance string odoo16features
Avatar
Avatar
Avatar
Avatar
3
apr 24
5742
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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