From 697470803983b71d72bff9a4c22c9c88bcfdc6e9 Mon Sep 17 00:00:00 2001 From: Tomislav Ivanov <78173711+TIVMOF@users.noreply.github.com> Date: Thu, 9 Apr 2026 13:18:50 +0300 Subject: [PATCH 1/4] Update project.json --- codbex-payments/project.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/codbex-payments/project.json b/codbex-payments/project.json index 450de09..b8cb829 100644 --- a/codbex-payments/project.json +++ b/codbex-payments/project.json @@ -1 +1,4 @@ -{"guid":"codbex-payments","actions":[{"name":"Build TypeScript","commands":[{"os":"unix","command":"tsc"},{"os":"windows","command":"cmd /c tsc"}],"registry":"true"}]} \ No newline at end of file +{ + "guid":"codbex-payments", + "actions":[] +} From f87134cf609bbddfdb1676a3d6948cfe48d5b99e Mon Sep 17 00:00:00 2001 From: Tomislav Ivanov <78173711+TIVMOF@users.noreply.github.com> Date: Thu, 9 Apr 2026 13:35:41 +0300 Subject: [PATCH 2/4] Update CustomerPaymentToRecordHandler.ts --- .../events/CustomerPayment/CustomerPaymentToRecordHandler.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codbex-payments/events/CustomerPayment/CustomerPaymentToRecordHandler.ts b/codbex-payments/events/CustomerPayment/CustomerPaymentToRecordHandler.ts index 4c4b768..7881046 100644 --- a/codbex-payments/events/CustomerPayment/CustomerPaymentToRecordHandler.ts +++ b/codbex-payments/events/CustomerPayment/CustomerPaymentToRecordHandler.ts @@ -14,7 +14,7 @@ export const trigger = (event: EntityEvent): void => { const record = { Date: item.Date!, Valor: item.Valor!, - CompanyIBAN: item.CompanyIBAN, + CompanyIBAN: item.OurPartyIBAN, CounterpartyIBAN: item.CounterpartyIBAN, CounterpartyName: item.CounterpartyName, Amount: item.Amount, @@ -33,4 +33,4 @@ export const trigger = (event: EntityEvent): void => { } else { throw new Error("Unknown operation: " + operation); } -} \ No newline at end of file +} From 2be3c662e149a3d4c64c39e7bc9914f0502ec488 Mon Sep 17 00:00:00 2001 From: Tomislav Ivanov <78173711+TIVMOF@users.noreply.github.com> Date: Thu, 9 Apr 2026 13:35:59 +0300 Subject: [PATCH 3/4] Update EmployeePaymentToRecordHandler.ts --- .../events/EmployeePayment/EmployeePaymentToRecordHandler.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codbex-payments/events/EmployeePayment/EmployeePaymentToRecordHandler.ts b/codbex-payments/events/EmployeePayment/EmployeePaymentToRecordHandler.ts index ce9e98c..4bdf20a 100644 --- a/codbex-payments/events/EmployeePayment/EmployeePaymentToRecordHandler.ts +++ b/codbex-payments/events/EmployeePayment/EmployeePaymentToRecordHandler.ts @@ -14,7 +14,7 @@ export const trigger = (event: EntityEvent): void => { const record = { Date: item.Date!, Valor: item.Valor!, - CompanyIBAN: item.CompanyIBAN, + CompanyIBAN: item.OurPartyIBAN, CounterpartyIBAN: item.CounterpartyIBAN, CounterpartyName: item.CounterpartyName, Amount: item.Amount, @@ -33,4 +33,4 @@ export const trigger = (event: EntityEvent): void => { } else { throw new Error("Unknown operation: " + operation); } -} \ No newline at end of file +} From 89722b571eea475bb81956e4f049486d394f3278 Mon Sep 17 00:00:00 2001 From: Tomislav Ivanov <78173711+TIVMOF@users.noreply.github.com> Date: Thu, 9 Apr 2026 13:36:20 +0300 Subject: [PATCH 4/4] Update SupplierPaymentToRecordHandler.ts --- .../events/SupplierPayment/SupplierPaymentToRecordHandler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codbex-payments/events/SupplierPayment/SupplierPaymentToRecordHandler.ts b/codbex-payments/events/SupplierPayment/SupplierPaymentToRecordHandler.ts index 8f150f1..4bdf20a 100644 --- a/codbex-payments/events/SupplierPayment/SupplierPaymentToRecordHandler.ts +++ b/codbex-payments/events/SupplierPayment/SupplierPaymentToRecordHandler.ts @@ -14,7 +14,7 @@ export const trigger = (event: EntityEvent): void => { const record = { Date: item.Date!, Valor: item.Valor!, - CompanyIBAN: item.CompanyIBAN, + CompanyIBAN: item.OurPartyIBAN, CounterpartyIBAN: item.CounterpartyIBAN, CounterpartyName: item.CounterpartyName, Amount: item.Amount,