Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
14279 มุมมอง

I noticed that it is used in `hr.employee.public`:

```

image_128 = fields.Image("Image 128", compute='_compute_image', compute_sudo=True)


def _compute_image(self):

    for employee in self:

    employee_id = self.sudo().env['hr.employee'].browse(employee.id)

    ...

```
in the compute method sudo() is used anyways, which implies that compute_sudo doesn't change the self in the compute method to be equivalent to self.sudo();


Then what is the point in adding `compute_sudo`?

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

Compute sudo is described in the docs as  "whether the field should be recomputed as superuser to bypass access rights (by default True for stored fields, False for non stored fields)"

อวตาร
ละทิ้ง
ผู้เขียน

but what does it mean? the user in the method is not the superuser unless sudo() is explicitly used.

As sudo bypasses access rights ,in compute_sudo compute field while computing itself again it will not look for the users access rights and compute it as its for superuser.

Related Posts ตอบกลับ มุมมอง กิจกรรม
compute issue แก้ไขแล้ว
1
พ.ค. 21
3827
2
พ.ค. 25
981
2
ส.ค. 22
5389
2
ก.ค. 22
7126
Computed fields clarification แก้ไขแล้ว
1
ธ.ค. 20
37913