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

Hi everyone,

how can define a record rule for list view in OpenERP? for example: I want define a rule that each user can only see purchase requisition in state 'Done'. and can't see purchase requisition in state 'New' or 'in progress'.

 

Thanks

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

I think what you need is domain definition for the list view. For experiment you can "Activate Developer Mode", go to the list view and then open "Edit Action". From there, define a domain like the following.

[('state', '=', 'done')]

Refresh the list view. You should get all object with state equal to 'done'.

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

Thanks for your help