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

Hi Everyone,

I want to make customer, email, phone fields not editable on Qualified Stage onwards.
how can I do this?


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

Hi,

We can make fields readonly directly through the XML file itself.
To do this, inherit the form view 'crm.crm_lead_view_form' and set the 'readonly' attribute for the desired fields.

Refer to the below code:

    <xpath expr="//group[@name='opportunity_partner']/field[@name='partner_id']" position="attributes">
<attribute name="readonly">stage_id != %(crm.stage_lead1)d</attribute>
    </xpath>


Similarly, you can do it for the other 2 fields.

Hope it helps.


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

Hi Vikas ,

You can achieve this using Odoo Studio as well.



Hope it helps,
Kiran K

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

Hi Vikas,

Use is_stage_qualified field through condition in your crm view of specific field  readonly.

Thanks.

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

can't we do it through XML?

الكاتب

will it ok
<xpath expr="//field[@name='partner_id']" position="attributes">
<attribute name="reaonly">stage_id == ['Qualified']</attribute>
</xpath>

المنشورات ذات الصلة الردود أدوات العرض النشاط
2
أغسطس 25
1377
2
أغسطس 25
550
1
سبتمبر 24
1701
1
مايو 24
1371
1
يونيو 22
3356