Good morning,
I've created an extra unit "Individual clients" and I would like to independently connect it with "Opportunities" ("Account" was linked there earlier). I've created a relationship Many-To-One for "Individual Clients" and created a varchar field "Payer". Then I've edited it in custom\Espo\Custom\Resources\metadata\enityDefs\Op portunity.json changing its value to:
It seems that everything is working properly, but there's just one problem: from the view of the relationship between "Account" and "Individual Clients", the field of the form doesn't fill automatically.
How to fix it?
I've created an extra unit "Individual clients" and I would like to independently connect it with "Opportunities" ("Account" was linked there earlier). I've created a relationship Many-To-One for "Individual Clients" and created a varchar field "Payer". Then I've edited it in custom\Espo\Custom\Resources\metadata\enityDefs\Op portunity.json changing its value to:
Code:
"Payer": { "type": "linkParent", "entityList": [ "Account", "IndividualClients" ], "notStorable": true, "required": false, "audited": false }
How to fix it?
Comment