Project /user (group): Should be able to modify everything on a project from, until the project is moved to accepted status. Then he should only be able to modify the project lines. give me solution ......
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Accounting
- Inventory
- PoS
- Project
- MRP
This question has been flagged
1
Odgovori
2439
Prikazi
You need to define fields with this attribute 'states': 'date_order': fields.date('Date', required=True, readonly=True, select=True, states={'draft': [('readonly', False)], 'sent': [('readonly', False)]}) it means that date_order field will be in read only mode when state will be draft and sent. Same you can do at your end to achieve your need.
Thanks, Priyesh Solanki
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Prijavi