As discussed on the irc this is linked to #9881 (closed).
We should keep the behaviour introduced on this issue but just for some actions.
The new, switch view, next, forward and close actions should be executed without comparing the ids while others should not be executed if the record does not save the changes.
I checked in 5.7 : the behavior is the same as my patch when clicking on report on a new record that should not be saved, it loads another record. Don't know what should be done in this case because it was the original behavior.
Since #9881 (closed) we should not execute a report nor a different record when the changes are discarded. We should do nothing in this cas.
Probably it is need to add a new parameter to the modified_save to skip the test for some actions (i.e: report, action, relate) and keep the current behaviour for other (i.e: close tab)
I do not agree sig_close must return True for the tab being closed.
The problem is the special case of new record for which the user decides to not save. For this case we want to close the tab but we do not want to launch an action.
So we need a third returned value which could be None.
The only ambiguous case is the ko. I think we must return True if the current record is still the same and otherwise return None. Then the sig_close must return True if modified_save returns True or None. (sig_action does not need to be changed).
The solution of msg67928 can not be implemented in sao because Promise has only two states.
I guess we could resolve the promise with the value True or Null and test it in __close_allowed.
I'm not comfortable with javascript and the promises.
In the python script, when record_id is < 0, return is None. So in javascript it should return a jQuery.Deferred().reject() ?
Should i pass the value in the "reject" ? jQuery.Deferred().reject(true) ?