How can i remove readonly from default fields

image

Use this condition in Readonly Depends On Option :grinning:

Use Property Setter, it is better approach.

2 Likes

you can check hidden checkbox in customize form

there is a promt message “you cannot set default fields to hidden or read only”

Add a Property Setter for default field with needed change details

Create Property Setter:

1. Direct:

2. Code:

frappe.make_property_setter(
    {
        "doctype": "Sales Invoice Item",
        "fieldname": "price_list_rate",
        "property": "read_only",
        "property_type": "Check",
        "value": "0",
    },
    validate_fields_for_doctype=False,
)

Result:

Demo

Note: In Customization Form it is not allowed.

Ref: frappe/frappe/custom/doctype/customize_form/customize_form.py at dabaf45b173e62348a31c59756b4f028ad589fa9 · frappe/frappe · GitHub

1 Like