Consider this:
I have the following three entities: account, contracts and services. Services is linked to contracts and contracts are linked to an account.
account "one-to-many" -> contracts "one-to-many" -> services
I want to add a field to the list/detail view of the entity "services" to see to which account the "services" entity is linked to the "account" entity via the "contracts" entity.
I tried to add a relation from account to services but the values are then independent from the values which are set to account to contract.
E.g: I assign "contract A" to "account 1" and then have to manually add "account 1" to "service A". But it would be possible to assign "service A" to "account 2", which would be incorrect, because "contract A" would be still linked to "account 1".
I hope it's not too confusing what I want to achieve here.
I have the following three entities: account, contracts and services. Services is linked to contracts and contracts are linked to an account.
account "one-to-many" -> contracts "one-to-many" -> services
I want to add a field to the list/detail view of the entity "services" to see to which account the "services" entity is linked to the "account" entity via the "contracts" entity.
I tried to add a relation from account to services but the values are then independent from the values which are set to account to contract.
E.g: I assign "contract A" to "account 1" and then have to manually add "account 1" to "service A". But it would be possible to assign "service A" to "account 2", which would be incorrect, because "contract A" would be still linked to "account 1".
I hope it's not too confusing what I want to achieve here.
Comment