Skip to Content
Odoo Menu
  • Prijavi
  • Try it free
  • Aplikacije
    Finance
    • Knjigovodstvo
    • Obračun
    • Stroški
    • Spreadsheet (BI)
    • Dokumenti
    • Podpisovanje
    Prodaja
    • CRM
    • Prodaja
    • POS Shop
    • POS Restaurant
    • Naročnine
    • Najem
    Spletne strani
    • Website Builder
    • Spletna trgovina
    • Blog
    • Forum
    • Pogovor v živo
    • eUčenje
    Dobavna veriga
    • Zaloga
    • Proizvodnja
    • PLM
    • Nabava
    • Vzdrževanje
    • Kakovost
    Kadri
    • Kadri
    • Kadrovanje
    • Odsotnost
    • Ocenjevanja
    • Priporočila
    • Vozni park
    Marketing
    • Družbeno Trženje
    • Email Marketing
    • SMS Marketing
    • Dogodki
    • Avtomatizacija trženja
    • Ankete
    Storitve
    • Projekt
    • Časovnice
    • Storitve na terenu
    • Služba za pomoč
    • Načrtovanje
    • Termini
    Produktivnost
    • Razprave
    • Odobritve
    • IoT
    • Voip
    • Znanje
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industrije
    Trgovina na drobno
    • Book Store
    • Trgovina z oblačili
    • Trgovina s pohištvom
    • Grocery Store
    • Trgovina s strojno opremo računalnikov
    • Trgovina z igračami
    Food & Hospitality
    • Bar and Pub
    • Restavracija
    • Hitra hrana
    • Guest House
    • Beverage Distributor
    • Hotel
    Nepremičnine
    • Real Estate Agency
    • Arhitekturno podjetje
    • Gradbeništvo
    • Estate Management
    • Vrtnarjenje
    • Združenje lastnikov nepremičnin
    Svetovanje
    • Računovodsko podjetje
    • Odoo Partner
    • Marketinška agencija
    • Law firm
    • Pridobivanje talentov
    • Audit & Certification
    Proizvodnja
    • Tekstil
    • Metal
    • Pohištvo
    • Hrana
    • Brewery
    • Poslovna darila
    Health & Fitness
    • Športni klub
    • Trgovina z očali
    • Fitnes center
    • Wellness Practitioners
    • Lekarna
    • Frizerski salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Sistemi sončne energije
    • Izdelovalec čevljev
    • Čistilne storitve
    • HVAC Services
    Ostali
    • Neprofitna organizacija
    • Agencija za okolje
    • Najem oglasnih panojev
    • Fotografija
    • Najem koles
    • Prodajalec programske opreme
    Browse all Industries
  • Skupnost
    Learn
    • Tutorials
    • Dokumentacija
    • Certifikati
    • Šolanje
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Prenesi
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Dogodki
    • Prevodi
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Sklici kupca
    • Podpora
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Določanje cen
  • Pomoč

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

  • CRM
  • e-Commerce
  • Knjigovodstvo
  • Zaloga
  • PoS
  • Projekt
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

Modify res_partner module in odoo 18 +e

Naroči se

Get notified when there's activity on this post

This question has been flagged
development
1 Odgovori
1624 Prikazi
Avatar
شركة مهارات للتقنية وتنمية الموارد البشرية

Please modify the module so that the three fields appear in red or with a red star next to the field name to alert the user that these fields are required before saving.

(Phone, Identity Number, Nationality)

<?xml version="1.0" encoding="UTF-8"?>

<odoo>

<data>

<record id="view_partner_form_inherit_training" model="ir.ui.view">

<field name="name">res.partner.form.training.center</field>

<field name="model">res.partner</field>

<field name="inherit_id" ref="base.view_partner_form"/>

<field name="priority">99</field>

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


<xpath expr="//field[@name='website']" position="before">

<field name="identity_number" placeholder="1012345678"/>

<field name="gender"/>

<field name="nationality_id"/>

</xpath>


<xpath expr="//field[@name='phone']" position="attributes">

<attribute name="placeholder">05XXXXXXXX</attribute>

</xpath>


</field>

</record>

<!-- Search View -->

<record id="view_res_partner_filter_inherit_identity" model="ir.ui.view">

<field name="name">res.partner.search.inherit.identity</field>

<field name="model">res.partner</field>

<field name="inherit_id" ref="base.view_res_partner_filter"/>

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

<field name="name" position="attributes">

<attribute name="filter_domain">['|', '|',

('name', 'ilike', self),

('phone', 'ilike', self),

('identity_number', 'ilike', self)

]</attribute>

<attribute name="string">Name / Phone / ID</attribute>

</field>

<!-- Group By -->

<xpath expr="//group[@expand='0']" position="inside">

<filter string="Phone" name="group_by_phone" context="{'group_by': 'phone'}"/>

<filter string="ID Number" name="group_by_id_number" context="{'group_by': 'identity_number'}"/>

<filter string="Salesperson" name="group_by_salesperson" context="{'group_by': 'user_id'}"/>

</xpath>

</field>

</record>

</data>

</odoo>




#Python

class ResPartner(models.Model):

_inherit = 'res.partner'


identity_number = fields.Char(string="Identity Number", index=True, size=10, required=True)

gender = fields.Selection([('male', 'Male'), ('female', 'Female')], string="Gender")

nationality_id = fields.Many2one('res.country', string='Nationality', required=True)

phone = fields.Char(string="Phone", required=True)

0
Avatar
Opusti
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Best Answer

Hi,

You can make the fields visually alert the user by marking them as required (which you already did in Python) and adding a red asterisk or changing the label color in the form view. In Odoo, required fields automatically show a red asterisk in the form, but if you want to explicitly color the field label or add styling, you can do it via the form view XML.


Modify the XML as follows,


<?xml version="1.0" encoding="UTF-8"?>

<odoo>

    <data>

        <record id="view_partner_form_inherit_training" model="ir.ui.view">

            <field name="name">res.partner.form.training.center</field>

            <field name="model">res.partner</field>

            <field name="inherit_id" ref="base.view_partner_form"/>

            <field name="priority">99</field>

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

                <xpath expr="//field[@name='website']" position="before">

                    <!-- Identity Number -->

                    <field name="identity_number" placeholder="1012345678" required="1">

                        <attribute name="widget">char</attribute>

                        <attribute name="options">{'no_label': False}</attribute>

                    </field>


                    <!-- Gender -->

                    <field name="gender"/>


                    <!-- Nationality -->

                    <field name="nationality_id" required="1"/>

                </xpath>


                <!-- Phone field placeholder -->

                <xpath expr="//field[@name='phone']" position="attributes">

                    <attribute name="placeholder">05XXXXXXXX</attribute>

                    <attribute name="required">1</attribute>

                </xpath>


                <!-- Optional: Add red label using style (if you want extra color besides default required asterisk) -->

                <xpath expr="//field[@name='identity_number']" position="attributes">

                    <attribute name="class">o_field_label_red</attribute>

                </xpath>

                <xpath expr="//field[@name='phone']" position="attributes">

                    <attribute name="class">o_field_label_red</attribute>

                </xpath>

                <xpath expr="//field[@name='nationality_id']" position="attributes">

                    <attribute name="class">o_field_label_red</attribute>

                </xpath>

            </field>

        </record>

        <!-- Search View -->

        <record id="view_res_partner_filter_inherit_identity" model="ir.ui.view">

            <field name="name">res.partner.search.inherit.identity</field>

            <field name="model">res.partner</field>

            <field name="inherit_id" ref="base.view_res_partner_filter"/>

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

                <field name="name" position="attributes">

                    <attribute name="filter_domain">['|', '|',

                        ('name', 'ilike', self),

                        ('phone', 'ilike', self),

                        ('identity_number', 'ilike', self)

                    ]</attribute>

                    <attribute name="string">Name / Phone / ID</attribute>

                </field>

                <!-- Group By -->

                <xpath expr="//group[@expand='0']" position="inside">

                    <filter string="Phone" name="group_by_phone" context="{'group_by': 'phone'}"/>

                    <filter string="ID Number" name="group_by_id_number" context="{'group_by': 'identity_number'}"/>

                    <filter string="Salesperson" name="group_by_salesperson" context="{'group_by': 'user_id'}"/>

                </xpath>

            </field>

        </record>


        <!-- Optional CSS to style red labels -->

        <template id="partner_form_styles" inherit_id="web.assets_frontend">

            <xpath expr="." position="inside">

                <style>

                    .o_field_label_red .o_field_label {

                        color: red !important;

                    }

                </style>

            </xpath>

        </template>

    </data>

</odoo>


- Required fields: In Python, you already set required=True, so Odoo automatically adds a red asterisk.

- Optional red label: Added a class="o_field_label_red" to force the label text to appear in red for extra emphasis.

-CSS: A small style snippet to color labels red.


Hope it helps

0
Avatar
Opusti
Enjoying the discussion? Don't just read, join in!

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

Prijavi
Related Posts Odgovori Prikazi Aktivnost
How to make all branches for user active automatically after login his account?
development
Avatar
Avatar
Avatar
3
nov. 25
269
MrpBom _skip_bom_line skips line of product that has two multi-choice attribute values when both are selected in Apply to variant
development
Avatar
Avatar
1
nov. 25
199
How to create a new field have 2 related field by developer mode
development
Avatar
Avatar
2
okt. 25
536
i face one error while edit my website
development
Avatar
0
okt. 25
655
How to add market price of the product to the Odoo 18 Community POS receipt?
development
Avatar
0
okt. 25
573
Community
  • Tutorials
  • Dokumentacija
  • Forum
Open Source
  • Prenesi
  • Github
  • Runbot
  • Prevodi
Services
  • Odoo.sh Hosting
  • Podpora
  • Nadgradnja
  • Custom Developments
  • Izobraževanje
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Sredstva blagovne znamke
  • Kontakt
  • Zaposlitve
  • Dogodki
  • Podcast
  • Blog
  • Stranke
  • Pravno • Zasebnost
  • Varnost
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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