Skip to content

Commit 6468204

Browse files
committed
PHEE-466
1 parent 398050e commit 6468204

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/main/java/org/mifos/processor/bulk/zeebe/ZeebeVariables.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ private ZeebeVariables() {}
155155

156156
public static final String CURRENCY = "currency";
157157

158-
public static final String AUTHORIZATION_RESPONSE = "authorizationResponse";
159-
158+
public static final String AUTHORIZATION_RESPONSE = "authorizationResponse";
159+
public static final String PAYEE_PARTY_RESPONSE = "payeePartyResponse";
160+
public static final String PAYEE_DFSP_ID = "payeeDFSPID";
160161
}

src/main/java/org/mifos/processor/bulk/zeebe/worker/AccountLookupCallbackWorker.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ public void setup() {
4242
Party payee = new Party(partyIdInfo);
4343
transactionChannelRequestDTO.setPayee(payee);
4444
existingVariables.put(CHANNEL_REQUEST, objectMapper.writeValueAsString(transactionChannelRequestDTO));
45+
existingVariables.put(PAYEE_DFSP_ID, payeeFspId);
4546
client.newCompleteCommand(job.getKey()).variables(existingVariables).send().join();
4647
}).name(ACCOUNT_LOOKUP_CALLBACK.getValue()).open();
4748
}

0 commit comments

Comments
 (0)