تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
4 الردود
4519 أدوات العرض

Hello I'm trying to restrict the users to see only his own invoices

الصورة الرمزية
إهمال
أفضل إجابة

Hi,

You can set the domain for account.move model
['|',('create_uid','=',user.id),('message_partner_ids', 'in', [user.partner_id.id])]

الصورة الرمزية
إهمال
أفضل إجابة

you can apply record rules. Record rules allow you to define domain filters to limit the records visible to specific users or user groups. Here's how you can implement this:

  1. Go to the Odoo user interface and navigate to Settings > Technical > Security > Record Rules.

  2. Create a new record rule by clicking on the "Create" button.

  3. In the record rule form, provide a name and optionally a description for the rule.

  4. Set the Object field to "Invoices" or the appropriate model you are working with.

  5. In the Domain field, define the domain filter to restrict the invoices. The domain should ensure that only the invoices belonging to the current user are visible. For example, you can use the user_id field to filter invoices based on the current user. The domain expression would look like:

[('user_id', '=', user.id)]

  1. Replace user_id with the appropriate field name in your invoice model.

  2. Save the record rule.

  3. Assign the record rule to the appropriate user group(s) by adding the group(s) to the Groups field in the record rule form.

  4. Save the record rule.

Now, when users belonging to the assigned group(s) access the invoices, they will only see their own invoices based on the record rule's domain filter.

الصورة الرمزية
إهمال
أفضل إجابة

Hi,

To restrict users to see only his own invoice here is a related forum which satisfies your requirements:https://www.odoo.com/sl_SI/forum/help-1/updated-make-users-see-only-their-own-invoices-and-bills-198372

Hope it helps

الصورة الرمزية
إهمال
أفضل إجابة

Hello,

You can set the domain or record rule for account.move model.

[('create_uid', '=', user.id)]

الصورة الرمزية
إهمال
الكاتب

its not work sorry

Hello,

Please describe me what you done exactly.

الكاتب

model : account.model_account_move ,
force domain : [('create_uid', '=', user.id)]
its not work

المنشورات ذات الصلة الردود أدوات العرض النشاط
3
فبراير 25
2997
0
مايو 24
46
1
أبريل 24
3081
2
سبتمبر 23
6758
1
أغسطس 23
2263