feat: Change customer to account_holder to be one-to-many (#11803)

This commit is contained in:
Stevche Radevski
2025-03-12 16:05:38 +01:00
committed by GitHub
parent 6053ec3976
commit e0109540fa
2 changed files with 20 additions and 7 deletions

View File

@@ -42,13 +42,17 @@ export const CustomerAccountHolder: ModuleJoinerConfig = {
serviceName: Modules.CUSTOMER,
entity: "Customer",
fieldAlias: {
account_holder: "account_holder_link.account_holder",
account_holders: {
path: "account_holder_link.account_holder",
isList: true,
},
},
relationship: {
serviceName: LINKS.CustomerAccountHolder,
primaryKey: "customer_id",
foreignKey: "id",
alias: "account_holder_link",
isList: true,
},
},
{