如何通过基于功能的attrs查看或隐藏字段(自动)? [英] How to view or hide field by attrs based on function (Automatically)?

查看:88
本文介绍了如何通过基于功能的attrs查看或隐藏字段(自动)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我只想查看员工,其经理和"hr.group_hr_user"组的"working_hours"字段. 如何自动隐藏此字段而无需编辑表单或触发按钮

I want to view 'working_hours' field only for employee, his manager and 'hr.group_hr_user' group. how to hide this field automatically without edit form or trigger a button

class InheritHrEmployee(models.Model):
    _inherit = 'hr.employee'


    def hide_working_hours(self):
        if self.env.uid == self.user_id.id or self.env.uid == self.parent_id.user_id.id or self.env.user.has_group(
            'hr.group_hr_user'):
            self.working_hours_view = True
        else:
            self.working_hours_view = False

    working_hours_view = fields.Boolean(computed=hide_working_hours)

XML:

<record id="hide_working_hours_for_employees" model="ir.ui.view">
  <field name="name">Hide Working Hours Employees Form</field>
  <field name="model">hr.employee</field>
  <field name="inherit_id" ref="hr.view_employee_form"/>
  <field name="arch" type="xml">
    <xpath expr="//field[@name='resource_calendar_id']" position="before">
      <field name="working_hours_view" invisible="1"/>
    </xpath>
    <xpath expr="//field[@name='resource_calendar_id']" position="attributes">
      <attribute name="attrs">{'invisible': [('working_hours_view' ,'=', False)]}</attribute>
    </xpath>
  </field>
</record>

推荐答案

我在函数之前添加了该字段,该字段现在可以自动运行

i added the field before the function and it works now automatically

class InheritHrEmployee(models.Model):
    _inherit = 'hr.employee'

    inv = fields.Boolean(string="Invisible", compute="c_inv", store=False)

    @api.one
    def c_inv(self):
        if self.env.uid == self.user_id.id or self.env.uid == self.parent_id.user_id.id or self.env.user.has_group(
             'hr.group_hr_user'):
            self.inv = False
        else:
            self.inv = True

..像这个例子 查看全文

登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆