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

I have created a record rule using xml as follows:


<record id="filter_user_hotel" model="ir.rule">
            <field name="name">Filter Hotel Allowed</field>
            <field name="model_id" search="[('model','=','hotel.reservation')]" model="ir.model"/>
            <field name="groups" eval="[(4, ref('hotel.group_hotel_user'))]"/>
            <field name="domain_force">[('warehouse_id.id','=',user.warehouse_id_hotel.id)]</field>
     </record>

I created a new field in res.users "warehouse_id_hotel" so each user could see the records related to his warehouse only.

whenever I change the warehouse of the user changes don't take effect until I restart the server ,so  what is causing this behavior ?

الصورة الرمزية
إهمال

You save my life too)))

Thanks, it works at odoo 15.

أفضل إجابة

Hi Mohammed,

you have to override create and write method of hotel reservation. and use this code inside

@api.model
def create(self, vals):
    self.clear_caches()
    return super(HotelReservation, self).create(vals)

@api.multi
def write(self, vals):
    self.clear_caches()
    return super(HotelReservation, self).write(vals)

Hope it will help.

Thanks.

الصورة الرمزية
إهمال

You saved my life

Same problem in v12, clear_caches() helped, thanks !

Same issue faced with employee department in odoo 10. And clear_caches() worked. Thank You..

المنشورات ذات الصلة الردود أدوات العرض النشاط
3
سبتمبر 19
6801
0
نوفمبر 17
2953
1
يونيو 17
3858
0
يونيو 23
1878
1
أبريل 19
4860