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

Hello Team,

I was added an onchange field to customer form, but it is need work for customer form not for Supplier form.here field will visible in both forms, but i need the onchange functionality work for only Customers creation form not for Suppliers creation form. How can i acheve this.

Can anyone please guide me.

Thanks in advance.

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

hello,

while calling on change check whether partner is customer then only execute your code. As customer and supplier form, Both shares same object

You can eitehr add customer field to your onchange and check whether you are getting that field and accordingly execute or update context by passing customer field and check on your onchange method.

Here change for your xml , on_change="onchange_zipcode(zip, customer)

and in onchange method,

    def onchange_zipcode(self, cr, uid, ids, zip, customer, context=None):
        res = {}
        if not customer:
            return res
        #Execute your code, This code will be executed only if customer is set to true

 

Hope this will help you.

 

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

Thanks a lot mansi, it's work perfectly..

الكاتب

Hello Mansi, I have one more doubt, if supplier has zip code need to get default supplier zip how can i do this. can you suggest me.

الكاتب أفضل إجابة

Hi Mansi,

        <field name="zip" placeholder="ZIP" style="width: 20%%" attrs="{'readonly': [('use_parent_address','=',True)]}" on_change="onchange_zipcode(zip)"/>

The above field need to work in Customer Creation. Is there need to change anything.

الصورة الرمزية
إهمال
المنشورات ذات الصلة الردود أدوات العرض النشاط
2
يونيو 15
10404
0
مارس 15
3377
0
مارس 15
3385
2
أكتوبر 23
5593
3
سبتمبر 23
2430