Hello,
espoCRM 5.7.5
When we create a basePlus entity, in entityDefs we have :
but we don't have emails :
I don't know if it's a bug.
but I have a problem with pdf template with this entity :
all for {{#each calls, meetings, tasks, emails}} is empty.
Any tips for have the activities in pdf ? sorry if it's not a bug.
Regards
espoCRM 5.7.5
When we create a basePlus entity, in entityDefs we have :
PHP Code:
"meetings": {
"type": "hasMany",
"entity": "Meeting",
"foreign": "parent",
"layoutRelationshipsDisabled": true
},
"calls": {
"type": "hasMany",
"entity": "Call",
"foreign": "parent",
"layoutRelationshipsDisabled": true,
"audited": true
},
"tasks": {
"type": "hasChildren",
"entity": "Task",
"foreign": "parent",
"layoutRelationshipsDisabled": true,
"audited": true
},
PHP Code:
"emails": {
"type": "hasMany",
"entity": "Email",
"foreign": "parent",
"layoutRelationshipsDisabled": true
},
but I have a problem with pdf template with this entity :
PHP Code:
<!-- {{#each meetings}} -->
{{name}}
<!-- {{/each}} -->
Any tips for have the activities in pdf ? sorry if it's not a bug.
Regards
Comment