I have created a custom form in my custom module. The form does not have any required fields, and I also added a Submit button.
The issue is: whenever I type or select anything in the form, due to Odoo’s auto-save functionality, a record is created in the database without clicking the Submit button.
I want to avoid this auto-save behavior so that a record is only created when I click on the Submit button.
How can I achieve this without using a wizard or setting edit="false" / create="false"? Based on my logic, I cannot use those approaches.