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

readonly in view not working?

Odoberať

Get notified when there's activity on this post

This question has been flagged
viewreadonly
11 Replies
20496 Zobrazenia
Avatar
Atchuthan - Technical Consultant, Sodexis Inc

I tried to use attrs in <page> and <group> as follows:

NOT WORKING

<group attrs="{'readonly':[('state','=','done')]}">
    <field name="field1" />
    <field name="field2" />
    <field name="field3" />
    <field name="field4" />
</group>

but readonly does not work in page and group. instead when tried with invisible, it worked.

So, should I use readonly for field level only or is there any better method?

WORKING

<group>
    <field name="field1"  attrs="{'readonly':[('state','=','done')]}" />
    <field name="field2"  attrs="{'readonly':[('state','=','done')]}"/>
    <field name="field3"  attrs="{'readonly':[('state','=','done')]}"/>
    <field name="field4"  attrs="{'readonly':[('state','=','done')]}"/>
</group>
4
Avatar
Zrušiť
Sathors

Have you opened an issue in the odoo tracker ? Because it would be something really practical to have...

YOPI ANGI

Hello Atchuthan, I have the same problem with you. Did you solve it?

Atchuthan - Technical Consultant, Sodexis Inc
Autor

@yopi, no. I set those 4 fields as read-only and not in group.

Mathieu Laflamme

This would be very handy indeed.

Also documentation makes no mention that "Invisible" attribute is working, but not "readonly" and "required".

https://www.odoo.com/documentation/9.0/reference/views.html#structural-components

Avatar
Mathieu Laflamme
Best Answer

This would be very handy indeed.

Also documentation makes no mention that "Invisible" attribute is working, but not "readonly" and "required".

https://www.odoo.com/documentation/9.0/reference/views.html#structural-components

0
Avatar
Zrušiť
Avatar
Prakash
Best Answer

In Default Openerp Project Module attrs readonly used in the <page> tag:-

addons/project/project_view.xml

<page string="Extra Info" attrs="{'readonly':[('state','=','done')]}">
                            <group col="4">
                                <field name="priority" groups="base.group_user"/>
                                <field name="sequence"/>
                                <field name="partner_id"/>
                                <field name="state" invisible="1"/>
                                <field name="company_id" groups="base.group_multi_company" widget="selection"/>
                            </group>
                            <group>
                                <group string="Gantt View">
                                    <field name="date_start"/>
                                    <field name="date_end"/>
                                </group>
                                <group>
                                </group>
                            </group>
</page>
0
Avatar
Zrušiť
Atchuthan - Technical Consultant, Sodexis Inc
Autor

yes, its available in code. But its not working in project_view

Avatar
Atul Kumar jain
Best Answer

I have used it in my custom module

<page string="Campaign Details">
                    <field name="outdoor" widget="outdoor" attrs="{'invisible':[('type_of_activity','=','paper_media')]}" >
                    <tree string="Out Door Activity" editable="bottom">
                        <field name="sequence_no"/>
                        <field name="product_id"/>
                        <field name="places"/>
                        <field name="duration"/>
                        <field name="width"/>
                        <field name="length"/>
                        <field name="tax_id" widget="many2many_tags" domain="[('parent_id','=',False),('type_tax_use','&lt;&gt;','purchase')]"/>
                        <field name="price"/>
                        <field name="quantity"/>
                        <field name="price_subtotal"/>
                    </tree> 
                    </field>
</page>
0
Avatar
Zrušiť
Atchuthan - Technical Consultant, Sodexis Inc
Autor

yes, I can also use it on a single field.

I am asking how to set readonly for a group or page

Atchuthan - Technical Consultant, Sodexis Inc
Autor

also only invisible works in attrs of group and page

Atul Kumar jain

i think you should have use this for readonly <group string="Data"> <field name="url" widget="url" attrs="{'readonly':[('type','=','binary')]}"/> </group>

Atchuthan - Technical Consultant, Sodexis Inc
Autor

yes but my question regards to use of attrs="{'readonly':[domain]}" in PAGE and GROUP

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
Odoo Sales
readonly
Avatar
Avatar
1
okt 24
7832
Odoo10: how to set the tree (list) view as default view for Customers and Products in Sales module Solved
view
Avatar
Avatar
Avatar
Avatar
4
jan 24
24345
Attrs attribute Solved
view
Avatar
Avatar
2
jan 24
3179
How to see all records in list view
view
Avatar
0
aug 23
3003
How to make readonly field base on condition? Solved
fields view readonly condition
Avatar
Avatar
1
dec 23
23689
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