Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
我们公司在客户管理上有条规则,就是属于某个业务员的客户可以有CRUD的权限,但是对于不属于自己的客户,只能查看客户的名称和所属的业务员(不能查看其他详细信息)。在odoo v8上有什么好的方法将costomers form/view视图上的其他字段隐藏掉?好像用record rules或domain都不能直接实现。
attrs="{'invisible':[('','=',)]}"
这个问题,如果用同一个视图的话比较麻烦。如果写两个视图,一个是只看到自己的,另一个是可以看到其他人的就简单很多。