This commit is contained in:
Laurie MONTANT 2025-12-10 18:00:14 +01:00
parent b24fe76a81
commit e8551aa698
2 changed files with 36 additions and 24 deletions

View File

@ -32,6 +32,7 @@
"planned_carrier" : "ABAN", <#-- "${appointment.CarrierName?json_string}", -->
<#if appointment.Commissions??>
<#if appointment.AppointmentType == "APPOINTMENT_TYPE_UNLOADING">
"physical_receipt_list": [
<#list eventRP.executionflowCustomFields.entrySet() as custom>
{
@ -44,6 +45,11 @@
<#sep>,</#sep>
</#list>
],
<#else>
<#if appointment.AppointmentType == "APPOINTMENT_TYPE_LOADING">
"appointment_designation":"LOADING",
</#if>
</#if>
</#if>
"constant_appointment": "false"

View File

@ -9,6 +9,7 @@
"payload" :
{
<#if appointment.Commissions??>
<#if appointment.AppointmentType == "APPOINTMENT_TYPE_UNLOADING">
"physical_receipt_list": [
<#list eventRP.executionflowCustomFields.entrySet() as custom>
{
@ -21,6 +22,11 @@
<#sep>,</#sep>
</#list>
]
<#else>
<#if appointment.AppointmentType == "APPOINTMENT_TYPE_LOADING">
"appointment_designation":"LOADING"
</#if>
</#if>
</#if>
}
}