Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Jídlo a pohostinství
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Penzion
    • Distributor nápojů
    • Hotel
    Nemovitost
    • Realitní kancelář
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Poradenství
    • Účetní firma
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textile
    • Kov
    • Nábytek
    • Jídlo
    • Brewery
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • IT hardware a podpora
    • Systémy solární energie
    • Výrobce obuvi
    • Úklidové služby
    • Služby HVAC
    Ostatní
    • Nezisková organizace
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Browse all Industries
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Services for Partners
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

Adding a field to an existing form

Odebírat

Get notified when there's activity on this post

This question has been flagged
viewsmoduleforminheritanceodoo10
3 Odpovědi
18415 Zobrazení
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šit
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 Nejlepší odpověď

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šit
Enjoying the discussion? Don't just read, join in!

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

Přihlásit se
Related Posts Odpovědi Zobrazení Aktivita
How to change the standard "New Quotation" form? Vyřešeno
module form inheritance
Avatar
Avatar
1
úno 23
2715
View inheritance in Odoo 10, <li> tag Vyřešeno
views inheritance odoo10
Avatar
Avatar
1
kvě 20
3653
form view how to show parents fields from Many2one relation? Vyřešeno
views form many2one odoo10
Avatar
Avatar
1
bře 18
10411
How to make conditionally invisible a field with inheritance?
views form inheritance xpath
Avatar
0
kvě 24
8091
Change position of field in inherited view odoo16
views form inheritance string odoo16features
Avatar
Avatar
Avatar
Avatar
3
dub 24
5749
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة 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 balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

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