Modifs 0201241057

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

View File

@ -80,23 +80,25 @@
}
<#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}",
"ContainerType": "${preparation_line.despatched_cartons_list[0].carton_type_code}",
"Length": {
"Unit": "${length_unit_rfx}",
"Value": "${preparation_line.despatched_cartons_list.overall_depth}"
"Value": "${preparation_line.despatched_cartons_list[0].overall_depth}"
},
"Weight": {
"Unit": "${weight_unit_rfx}",
"Value": "${preparation_line.despatched_cartons_list.carton_gross_weight}"
"Value": "${preparation_line.despatched_cartons_list[0].carton_gross_weight}"
},
"Width": {
"Unit": "${length_unit_rfx}",
"Value": "${preparation_line.despatched_cartons_list.overall_width}"
"Value": "${preparation_line.despatched_cartons_list[0].overall_width}"
}
}
</#if>
</#if>
}
]
}