Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
1 Trả lời
3065 Lượt xem

I created a group which is designed can only click the  action_register_payment button in the account.move out or in form view. I thought that the function does not need the access to create account.move record, but it turns out that it acutally needs the access,why.

It just modify some data of the record,doesn't it? I am confused.Can anybody explain the reason? 

Thank you.

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

Hi,

When you record a payment from register payment wizard, it creates a payment entry in the table account.payment which is created by inheriting from account.move model.

class AccountPayment(models.Model):
_name = "account.payment"
_inherits = {'account.move': 'move_id'}

for this reason, you need to create the access right for account.move model, if you need to bypass it, safely you can consider adding the sudo with the function which is responsible for creating the payment entry.


Thanks

Ảnh đại diện
Huỷ bỏ
Tác giả

Thank you!

Bài viết liên quan Trả lời Lượt xem Hoạt động
2
thg 6 25
2177
0
thg 1 21
3114
4
thg 2 24
5043
1
thg 11 22
2215
1
thg 5 21
13854