The system will create a corresponding cron schedule when I create an order. If after 10 minutes, the order has no changes, then that cron schedule will automatically activate and automatically delete when it has completed the schedule. Please suggest some technical solutions.
I have successfully created a cron schedule after creating a row, however, I still don't know how to make it automatically delete after completing the schedule.
The answer will be a bit broader but to summarise what you need to do.
With your cron job (Python) on your file you will need to first search or filter your quotations. You can do this with Python datetime, i.e. filter quotation created today.
Remember to unlink in case you are not allowed to delete. this you can achieve by
try: ... except: ...
Odoo does have a changed date field which will come in handy.
Hope this helps