Skip to content

Commit 691b782

Browse files
committed
raw body fix
1 parent 55aec6d commit 691b782

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

src/main/java/org/mifos/processor/bulk/camel/routes/SplittingRoute.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
package org.mifos.processor.bulk.camel.routes;
22

33
import static org.mifos.processor.bulk.camel.config.CamelProperties.LOCAL_FILE_PATH;
4+
import static org.mifos.processor.bulk.camel.config.CamelProperties.OVERRIDE_HEADER;
45
import static org.mifos.processor.bulk.camel.config.CamelProperties.REGISTERING_INSTITUTE_ID;
6+
import static org.mifos.processor.bulk.camel.config.CamelProperties.RESULT_TRANSACTION_LIST;
57
import static org.mifos.processor.bulk.camel.config.CamelProperties.SERVER_FILE_NAME;
68
import static org.mifos.processor.bulk.camel.config.CamelProperties.SERVER_SUB_BATCH_FILE_NAME_ARRAY;
79
import static org.mifos.processor.bulk.camel.config.CamelProperties.SUB_BATCH_COUNT;

src/main/java/org/mifos/processor/bulk/schema/Transaction.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
@Getter
1212
@Setter
1313
@JsonIgnoreProperties(ignoreUnknown = true)
14-
@JsonPropertyOrder({ "id", "request_id", "payment_mode", "account_number", "payer_identifier_type", "payer_identifier",
14+
@JsonPropertyOrder({ "id", "request_id", "payment_mode", "payer_identifier_type", "payer_identifier",
1515
"payee_identifier_type", "payee_identifier", "amount", "currency", "note", "program_shortcode", "cycle", "payee_dfsp_id",
16-
"batch_id" })
16+
"batch_id", "account_number" })
1717
public class Transaction implements CsvSchema {
1818

1919
@JsonProperty("id")

src/main/resources/application.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,11 @@ config:
9292
partylookup:
9393
enable: true
9494
authorization:
95-
enabled: false
95+
enabled: true
9696
approval:
9797
enable: true
9898
ordering:
99-
enable: false
99+
enable: true
100100
field: "payerIdentifier"
101101
splitting:
102102
enable: true
@@ -218,6 +218,7 @@ gov-stack-client:
218218
header-key: "X-GovStack-Client"
219219
header-value: "PAYMENT-BB"
220220

221+
221222
bpmns:
222223
tenants:
223224
- id: "gorilla"
@@ -228,7 +229,7 @@ bpmns:
228229
batch-transactions: "bulk_processor-{dfspid}"
229230
- id: "rhino"
230231
flows:
231-
batch-transactions: "bulk_processor-{dfspid}"
232+
batch-transactions: "bulk_processor_account_lookup-{dfspid}"
232233
- id: "lion"
233234
flows:
234-
batch-transactions: "bulk_processor_account_lookup-{dfspid}"
235+
batch-transactions: "bulk_processor-{dfspid}"

0 commit comments

Comments
 (0)