Edit fields of subittable doctype

i want edit the fields of submittable doctype “Payment Entry”. How can I achieve that ,so it should not chnage if i update the erepnext version.

@santosh1 To allow updating records after submission in Frappe, you can use the property setter feature. Specifically, you can set the allow_on_submit property to 1 for a field. Here’s how you can achieve that:

1. Create a Property Setter for the field.
2. Set the allow_on_submit property to 1 for that field.

Here’s an example of how to implement it:

1. Go to Property Setter in the Frappe Developer module.
2. Select the DocType and the Field you want to update.
3. Set the Property to Allow On Submit.
4. Set the Value to 1.

This will allow the specified field to be updated even after the document has been submitted.

Reference: