39 lines
1.2 KiB
Java
39 lines
1.2 KiB
Java
<#include "HfRpConfig.ftl">
|
|
<#include "ReflexUtils.ftl">
|
|
[
|
|
|
|
{
|
|
"Header": {
|
|
"ProjectID": "${projectRP}"
|
|
},
|
|
"ID": {
|
|
"RefID": "${despatched_ipg.consignment_unit_id?trim?json_string}"
|
|
},
|
|
"Payload": {
|
|
<#if despatched_ipg.carton_number != "000000000000000000">
|
|
"HandlingunitID": "${despatched_ipg.carton_number}"
|
|
<#else>
|
|
"HandlingunitID": "${despatched_ipg.hd_number}"
|
|
</#if>
|
|
<#if preparationOrder.load_data?? && preparationOrder.load_data.carrier_code?? && preparationOrder.load_data.carrier_code!="" >
|
|
,
|
|
"HUCarrier":{
|
|
<#if text_language_rfx="fr">
|
|
<#if uniqueness?? && uniqueness!="" >
|
|
"ActorID":"${preparationOrder.load_data.carrier_code?trim?json_string}"
|
|
<#else>
|
|
"ActorID":"TRA${preparationOrder.load_data.carrier_code?trim?json_string}"
|
|
</#if>
|
|
<#else>
|
|
<#if uniqueness?? && uniqueness!="" >
|
|
"ActorID":"${preparationOrder.load_data.carrier_code?trim?json_string}"
|
|
<#else>
|
|
"ActorID":"CAR${preparationOrder.load_data.carrier_code?trim?json_string}"
|
|
</#if>
|
|
</#if>
|
|
}
|
|
|
|
</#if>
|
|
}
|
|
}
|
|
] |