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

I make some user option and I want to read it from POS screen in version 18 

this is my code 


class PosSession(models.Model):
    _inherit = 'pos.session'
    def _load_pos_data(self, data):
        res = super(PosSession, self)._load_pos_data(data)
        res['hide_product_information'] = self.env.user.hide_product_information
        return res

and I want to read it from JavaScript level from the product screen 
with this code 

patch(ProductScreen.prototype, {

    async onProductInfoClick(product) {

        // here

    }

}) 


how can I do this 



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

thanks it's working

أفضل إجابة

Hello Ahmed,


Hope you're doing well.


To make the 'hide_product_information' field accessible on the Product screen, you can use the following approach:


class ResUsers(models.Model): 

    _inherit = 'res.users' 


    hide_product_information = fields.Boolean() 


    @api.model 

    def _load_pos_data_fields(self, config_id): 

        res = super()._load_pos_data_fields(config_id) 

        res += ['hide_product_information'] 

        return res 


After restarting the server, you can access the 'hide_product_information' field using:

this.pos.config.current_user_id.hide_product_information


Let me know if you need further clarification!


Thanks & Regards,

Baldev Bharvadiya

الصورة الرمزية
إهمال
المنشورات ذات الصلة الردود أدوات العرض النشاط
1
مارس 24
5499
1
يوليو 23
2707
1
ديسمبر 22
3671
12
سبتمبر 21
25593
1
مايو 17
4218