...
An ObjectCollection
on the other hand is a list of objects. The list of objects is also defined by a Schema
and contains an Id
and a (translatable) Label
. An example of such a list of objects would be invoice items from a CRM. On one invoice, with one recipient, several invoice items appear. The ObjectCollection
allows to store several objects of the same type.
MERKE
If you want to allow one recipient in a template, use Object
s. If you want to allow multiple recipients (e.g. in a protocol), use an ObjectCollection
.
DataProviders
To load data from other sources, DataProviders
can be defined. For each Object
or ObjectCollection
one or more DataProvider
can be defined.
...