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

How can I make the 'initially planned hours' field in task view for a project READ ONLY? I can't find the field in the view XML.

Odoberať

Get notified when there's activity on this post

This question has been flagged
projecttaskproperty
5 Replies
7624 Zobrazenia
Avatar
MONEO Tomasz Serwanski

Hello,


I am bit confused - tried to make field 'initially planned view' readonly, but..


1) field I am talking about is visible below:

2) problem is.. whee it is :) in the code; I was quite sure it should be where arrow in the picture below points:

unfortunaltely.. it is not. could anyone advice from where this field goes? and where to look for its properties o make it, for example, read-only?


regards

Tomasz

0
Avatar
Zrušiť
MONEO Tomasz Serwanski
Autor

seems it is not in 'edit formview' as shown above, but when I chose 'fields view get' it is there:

<field name="planned_hours" widget="float_time" on_change="1" modifiers="{}"/>

It seems to be little bit too much for me - maybe somebody can explain why it looks/works like this? and how to edit (form? other thing?) to have this field (initially planned hours, 'planned_hoours') possible to be set as read only (one scenario) and being readonly for user while readwrite for manager?

regards

Tomasz

Avatar
Niyas Raphy (Walnut Software Solutions)
Best Answer

You can find it in addons/project/project_view.xml, then please look on
record_id="view_task_form2",

<field name="planned_hours" widget="float_time"   groups="project.group_time_work_estimation_tasks"      on_change="onchange_planned(planned_hours)"/>

and to make this field readonly give readonly="1"


You told that the field is not visible in the edit form view, and it is visible in form as well as in form view get. So you please refresh the page and check whether it is still showing in form view get and in the form

3
Avatar
Zrušiť
MONEO Tomasz Serwanski
Autor

hello,

thank you for your post - as it shed some light, let me highlight details. there is no such .xml in path you've mentioned (maybe you refer to other odoo than 10)?, but I've found:

- file ./addons/project/views/project_views.xml

- file as above has line:

<group>

<field name="project_id" domain="[('active', '=', True)]" context="{'default_use_tasks':1}"/>

<field name="user_id"

class="o_task_user_field"

options='{"no_open": True}'/>

<field name="legend_blocked" invisible="1"/>

<field name="legend_normal" invisible="1"/>

<field name="legend_done" invisible="1"/>

</group>

- unfortunately still no line seen in 'fields view get' (line: <field name="planned_hours" widget="float_time" on_change="1" modifiers="{}"/>)

- finally I've run search over filesystem for files with text "field name="planned_hours" widget="float_time" on_change="1"" inside - and.. it gave no result :(

so still, could anyone advice where from comes line " <field name="planned_hours" widget="float_time" on_change="1" modifiers="{}"/> " visible in 'fields view get'?

regards

Tomasz

Avatar
Megha Patel
Best Answer

Tomasz Serwanzki,

by applying below code,the planned hours field will become readonly

<record id="project_task_form2_inherited" model="ir.ui.view">
<field name="name">project.task.form2.inherited</field>
<field name="model">project.task</field>
<field name="inherit_id" ref="hr_timesheet.view_task_form2_inherited" />
<field eval="2" name="priority"/>
<field name="arch" type="xml">
<field name="planned_hours" position="attributes">
<attribute name="readonly">1</attribute>
</field>
</field>
</record>
0
Avatar
Zrušiť
Avatar
MONEO Tomasz Serwanski
Autor Best Answer

..and.. finally got it :) there is a need to take a look at 'inherited views' - seems this field is edited there. I was able to make it read only and it works :)


now it is second step - I woul dlike to have this field to be:

- read only for users, but

- readwrite for project manager


could anyone advice how to manage access rights to particular field?


regards

Tomasz

0
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
v16 Tasks visibility
project task
Avatar
Avatar
1
jún 23
4161
Create a user who can only see project and task menu Solved
project task
Avatar
Avatar
1
nov 22
4573
Cannot create task Solved
project task
Avatar
Avatar
2
jún 20
4749
How can I make the Project task completed?
project task
Avatar
Avatar
Avatar
2
júl 18
8287
Task assignment for multiple users
project task
Avatar
Avatar
Avatar
Avatar
4
júl 18
9271
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