[Answered ]-Django Formset.save() didn't save model

1👍

I guess your form isn’t changed, and in formset.save_existing_objects() actual saving is being skipped.

👤ilvar

1👍

Reading this i found resolve this problem – just add

cursor.connection.commit()

after

cursor.callproc()

Leave a comment