Non-custom doctype not saving

non-custom doctype not saving
I’m in developer mode

ERPNext: v14.x.x-develop () (develop)

Frappe Framework: v15.x.x-develop () (develop)

Frappe HR: v15.0.0-dev (develop)

Please upgrade to the latest version.

this is last version ?

image

It must look like this.

u not in last version :slight_smile:

You are in the developer version not in the stable version.

ok how to update stable version

I ran into a similar situation with a Custom DocType flagged as Non-Custom. My solution was to import from frappe.modules.export_file import export_to_files and link this function to the on_update() trigger:

def on_update(self):
    record_list = [["Data Migration Mapping", self.name]]
    export_to_files(record_list=record_list, record_module="Data Migration")

I searched for days for this solution. Maybe someone will appreciate this approach when they encounter a similar situation.