Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
3 Відповіді
3157 Переглядів

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>

Related Posts Відповіді Переглядів Дія
2
серп. 25
1382
2
серп. 25
553
1
вер. 24
1703
1
трав. 24
1373
1
черв. 22
3358