Modif FTL 2211231459
This commit is contained in:
parent
6b4f7e2ccc
commit
3d9ec5b813
@ -35,18 +35,20 @@
|
|||||||
|
|
||||||
<#-- if Reflex WMS is not structured -->
|
<#-- if Reflex WMS is not structured -->
|
||||||
<#else>
|
<#else>
|
||||||
|
<#if actor.address?? >
|
||||||
|
|
||||||
"Name": "${actor.address.company_name?json_string}",
|
"Name": "${actor.address.company_name?json_string}",
|
||||||
"StreetAddressOne" : "${actor.address.address_1?json_string}",
|
"StreetAddressOne" : "${actor.address.address_1?json_string}",
|
||||||
"StreetAddressTwo" : "${actor.address.address_2?json_string}",
|
"StreetAddressTwo" : "${actor.address.address_2?json_string}",
|
||||||
"StreetAddressThree" : "${actor.address.address_3?json_string}"
|
"StreetAddressThree" : "${actor.address.address_3?json_string}"
|
||||||
|
</#if>
|
||||||
</#if>
|
</#if>
|
||||||
},
|
},
|
||||||
|
<#if actor.address?? >
|
||||||
"Phones": ["${actor.address.telephone?json_string}",
|
"Phones": ["${actor.address.telephone?json_string}",
|
||||||
"${actor.address.other_number?json_string}"
|
"${actor.address.other_number?json_string}"
|
||||||
],
|
],
|
||||||
|
</#if>
|
||||||
"Typology": "TYPOLOGY_UNKNOWN"
|
"Typology": "TYPOLOGY_UNKNOWN"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -34,16 +34,20 @@
|
|||||||
|
|
||||||
<#-- if Reflex WMS address is not structured -->
|
<#-- if Reflex WMS address is not structured -->
|
||||||
<#else>
|
<#else>
|
||||||
"Name": "${actor.optional_attributes.company_name?json_string}",
|
<#if actor.optional_attributes?? >
|
||||||
"StreetAddressOne" : "${actor.optional_attributes.address_1?json_string}",
|
"Name": "${actor.optional_attributes.company_name?json_string}",
|
||||||
"StreetAddressTwo" : "${actor.optional_attributes.address_2?json_string}",
|
"StreetAddressOne" : "${actor.optional_attributes.address_1?json_string}",
|
||||||
"StreetAddressThree" : "${actor.optional_attributes.address_3?json_string}"
|
"StreetAddressTwo" : "${actor.optional_attributes.address_2?json_string}",
|
||||||
|
"StreetAddressThree" : "${actor.optional_attributes.address_3?json_string}"
|
||||||
|
</#if>
|
||||||
</#if>
|
</#if>
|
||||||
|
|
||||||
},
|
},
|
||||||
"Phones": ["${actor.optional_attributes.telephone?json_string}",
|
<#if actor.optional_attributes?? >
|
||||||
"${actor.optional_attributes.other_number?json_string}"
|
"Phones": ["${actor.optional_attributes.telephone?json_string}",
|
||||||
],
|
"${actor.optional_attributes.other_number?json_string}"
|
||||||
|
],
|
||||||
|
</#if>
|
||||||
"Typology": "TYPOLOGY_UNKNOWN"
|
"Typology": "TYPOLOGY_UNKNOWN"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user