This commit is contained in:
Laurie MONTANT 2025-12-10 10:48:08 +01:00
parent 23de1ee9b1
commit bb20aae908

View File

@ -35,11 +35,14 @@
"physical_receipt_list": [ "physical_receipt_list": [
<#list appointment.Commissions as commission> <#list appointment.Commissions as commission>
{ {
"receipt_activity": "${eventRP.executionflowCustomFields.activity_code?json_string}", <#list eventRP.executionflowCustomFields.entrySet() as custom>
"originator_code": "${eventRP.executionflowCustomFields.originator_code?json_string}", ${custom}
"physical_receipt_reference": "${eventRP.executionflowCustomFields.reference?json_string}", "receipt_activity": "${custom.value.activity_code?json_string}",
"receipt_year": "${eventRP.executionflowCustomFields.order_year?json_string}", "originator_code": "${custom.value.originator_code?json_string}",
"receipt_number": "${eventRP.executionflowCustomFields.order_number?json_string}" "physical_receipt_reference": "${custom.value.reference?json_string}",
"receipt_year": "${custom.value.order_year?json_string}",
"receipt_number": "${custom.value.order_number?json_string}"
</#list>
} }
<#sep>,</#sep> <#sep>,</#sep>
</#list> </#list>