I would need to see the script to be sure, but I've run into this exact same issue. I believe the problem is that you aren't reindexing the issue after updating it. Add this to the end of your script to commit changes.
issue.store()
The above answer is conceptually right, but the code snippet is wrong since I assumed it was a groovy script rather than an SIL script. For SIL, the syntax is
admReindexIssue(%key%)
Documentation here.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Could you provide your script?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
%key%.totalretrait = %key%.totalretrait + %key%.argent;
%key%.MI = %key%.MI - %key%.argent;
this is my script. It updates 2 fields
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
See @Ben Poulson answer.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you ser
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.