Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
项目/用户(组):应该能够修改项目中的所有内容,直到项目移至接受状态。那么他应该只能修改项目线。
您需要使用此属性“状态”定义字段,如下所示:
'date_order': fields.date('Date', required=True, readonly=True, select=True, states={'draft': [('readonly', False)], 'sent': [('readonly', False)]})
这意味着当状态将被草稿和发送时,date_order 字段将处于只读模式。您可以在最后做同样的事情来满足您的需求。