LRG
09/06/2021, 1:27 PM<#list record.item as line>
<#if f line.itemtype == "Group">
<#list line.???field??? as groupline>
</#list>
#else
...
</#if>
</#list>Would you know how to do that please ? (thanks for your help)
David B
09/06/2021, 9:40 PMtldr;
make sure Display Components on Transaction
is checked on the group item
when looping through on the template, use <#if item.itemtype == "Group">
to identify the group item/start.
after that, each item will be a sub-item of that group. Until you reach <#if item.itemtype == "EndGroup">
LRG
09/08/2021, 2:45 PM