initial import

This commit is contained in:
2023-08-29 09:46:06 +02:00
parent 9872f3cf4a
commit b64d900833
67 changed files with 2234 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
[
{
"Header": {
"ProjectID": "${projectRP}"
},
"ID": {
"RefID": "${depot.physical_depot_code}"
},
"Payload": {
"Name": "${depot.physical_depot_designation}",
"ManagedStock": true,
"IsCarrier": false,
<#-- ***Partner ID could be added here *** -->
<#-- "PartnerID": "${}", -->
<#--
<#include "RFXtoRP_HsrDepot_ActorCreated_Metadata.ftl">
-->
"Address":
{
"StreetAddressOne" : "${depot.physical_depot_address.address_1}",
"StreetAddressTwo" : "${depot.physical_depot_address.address_2}",
<#if depot.physical_depot_address.address_3?length &lt; 10>
"PostalCode" : "${depot.physical_depot_address.address_3?trim}",
<#else>
"PostalCode" : "${depot.physical_depot_address.address_3?substring(0,9)?trim}",
</#if>
<#if depot.physical_depot_address.address_4?length &lt; 14>
"CountryCode" : ""
<#else>
"CountryCode" : "${depot.physical_depot_address.address_4?substring(10,13)?trim}"
</#if>
}
}
}
]