Modifs 0201241057

This commit is contained in:
Laurie MONTANT 2024-01-02 10:57:46 +01:00
parent 0b71455e6f
commit bff543d852

View File

@ -80,22 +80,24 @@
} }
<#if preparation_line.despatched_cartons_list?? > <#if preparation_line.despatched_cartons_list?? >
, <#if despatched_ipg.carton_number == preparation_line.despatched_cartons_list.carton_number >
"Information": { ,
"ContainerType": "${preparation_line.despatched_cartons_list.carton_type_code}", "Information": {
"Length": { "ContainerType": "${preparation_line.despatched_cartons_list[0].carton_type_code}",
"Unit": "${length_unit_rfx}", "Length": {
"Value": "${preparation_line.despatched_cartons_list.overall_depth}" "Unit": "${length_unit_rfx}",
}, "Value": "${preparation_line.despatched_cartons_list[0].overall_depth}"
"Weight": { },
"Unit": "${weight_unit_rfx}", "Weight": {
"Value": "${preparation_line.despatched_cartons_list.carton_gross_weight}" "Unit": "${weight_unit_rfx}",
}, "Value": "${preparation_line.despatched_cartons_list[0].carton_gross_weight}"
"Width": { },
"Unit": "${length_unit_rfx}", "Width": {
"Value": "${preparation_line.despatched_cartons_list.overall_width}" "Unit": "${length_unit_rfx}",
} "Value": "${preparation_line.despatched_cartons_list[0].overall_width}"
} }
}
</#if>
</#if> </#if>
} }
] ]