26 lines
564 B
Java
26 lines
564 B
Java
<#include "HfRpConfig.ftl">
|
|
[
|
|
{
|
|
"Header": {
|
|
"ProjectID": "${projectRP}"
|
|
},
|
|
"ID": {
|
|
<#if text_language_rfx="fr">
|
|
<#if uniqueness?? && uniqueness!="" >
|
|
"RefID": "${actor.code?trim?json_string}"
|
|
<#else>
|
|
"RefID": "FOU${actor.code?trim?json_string}"
|
|
</#if>
|
|
<#else>
|
|
<#if uniqueness?? && uniqueness!="" >
|
|
"RefID": "${actor.code?trim?json_string}"
|
|
<#else>
|
|
"RefID": "SUP${actor.code?trim?json_string}"
|
|
</#if>
|
|
</#if>
|
|
},
|
|
|
|
"Payload": {}
|
|
}
|
|
]
|