14 lines
763 B
Twig
14 lines
763 B
Twig
{{ translate({ ident: "D3_USERMANAGER_MAIL_UMJFROM" }) }} {{ "now"|date("d.m.Y H:i") }}
|
|
|
|
{% for sUserId, aManagerJobs in aNotes %}
|
|
{% set oItem = oEmailView.d3getUserManagerUser(sUserId) %}
|
|
{% if oItem.getId() %}{{ translate({ ident: "D3_USERMANAGER_MAIL_USER" }) }} {{ oItem.getFieldData('oxcustnr') }} {{ translate({ ident: "D3_USERMANAGER_MAIL_USERNAME" }) }} {{ oItem.getFieldData('oxlname') }}, {{ oItem.getFieldData('oxfname') }}{% else %}{{ translate({ ident: "D3_USERMANAGER_MAIL_GENERAL" }) }}{% endif %}:
|
|
{% for sManagerId, aJobActions in aManagerJobs %}
|
|
{% set oManager = oEmailView.d3getUserManager(sManagerId) %}
|
|
{{ oManager.getFieldData('oxtitle') }}
|
|
{% for sJobText in aJobActions %}
|
|
{{ sJobText }}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
{% endfor %}
|