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

i inherit hr.employee module in my custom module. i want when user login it only show his profile page not other. how can i in odoo python ?

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

Hi

You can easily achieve this by adding a domain into the action, just follow the code given below,

<?xml version="1.0" encoding="UTF-8" ?>

<!--TO VIEW THE RECORD OF LOGGED USER-->

<odoo>

<data>

<record id="my_logs_action" model="ir.actions.act_window">

<field name="name">My Model</field>

<field name="type">ir.actions.act_window</field>

<field name="res_model">hr.employee</field>

<field name="view_mode">kanban,tree,form</field>

<field name="domain">[('user_id','=',uid)]</field>

</record>

</data>

</odoo>

Hope it helps

الصورة الرمزية
إهمال
المنشورات ذات الصلة الردود أدوات العرض النشاط
3
فبراير 25
2514
0
مايو 24
46
1
أبريل 24
2648
4
سبتمبر 23
4100
2
سبتمبر 23
6387