Skip to content
Snippets Groups Projects
Unverified Commit 8ec30397 authored by lhameury's avatar lhameury
Browse files

Fix counters for mailsec action

parent 9e45a0e7
No related branches found
No related tags found
No related merge requests found
Pipeline #87767 failed
package org.adullact.iparapheur.repo.jscript.pastell.mailsec;
import com.atolcd.parapheur.model.ParapheurModel;
import com.atolcd.parapheur.repo.CorbeillesService;
import com.atolcd.parapheur.repo.EtapeCircuit;
import com.atolcd.parapheur.repo.ParapheurService;
import com.atolcd.parapheur.repo.TypesService;
......@@ -69,6 +70,8 @@ public class MailsecPastellService {
private TransactionService transactionService;
@Autowired
private AuthenticationService authenticationService;
@Autowired
private CorbeillesService corbeillesService;
private String connectorHost;
private String connectorPort;
......@@ -373,8 +376,16 @@ public class MailsecPastellService {
String serverId = payload.getString(SERVER_ID_PAYLOAD);
String mailId = object.getString(DOCUMENT_ID_KEY);
NodeRef parentCourant = null;
if(nodeService.exists(node)) {
parentCourant = nodeService.getPrimaryParent(node).getParentRef();
}
AuthenticationUtil.runAs(() -> transactionService.getRetryingTransactionHelper().doInTransaction(() -> approveMailsec(annotation, node, user, serverId, mailId)), user);
if(parentCourant != null) {
corbeillesService.moveDossier(node, parentCourant, nodeService.getPrimaryParent(node).getParentRef());
}
} catch (JSONException | IOException e) {
e.printStackTrace();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment