details:   https://code.tryton.org/tryton/commit/7a259ea01f1f
branch:    7.0
user:      Cédric Krier <[email protected]>
date:      Tue May 19 17:13:41 2026 +0200
description:
        Set __processing when processing wizard state

        The protection was copied from tryton but it was missing this 
activation.

        Closes #14846
        (grafted from 9950ddea3804cb6129707b07728e40c6ec4d06c0)
diffstat:

 sao/src/wizard.js |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (11 lines):

diff -r e5ed26971081 -r 7a259ea01f1f sao/src/wizard.js
--- a/sao/src/wizard.js Mon May 18 18:28:00 2026 +0200
+++ b/sao/src/wizard.js Tue May 19 17:13:41 2026 +0200
@@ -53,6 +53,7 @@
             if (this.__processing || this.__waiting_response) {
                 return;
             }
+            this.__processing = true;
             var process = function() {
                 if (this.state == this.end_state) {
                     this.end();

Reply via email to