Compare commits

...

12 Commits

Author SHA1 Message Date
af0dd3fc66 Release 2.0.20+4 2026-03-11 12:06:57 +01:00
a8c85b40b4 Merge branch 'SCPN1-10414-2.0' into 'release/2.0'
SCPN1-10414-2.0 into release/2.0

See merge request r-d-technique/tiers/reflex-wms-connector!257
2026-03-11 11:04:05 +00:00
88550b45ac SCPN1-10414 2026-03-11 11:53:06 +01:00
e0f46af99e SCPN1-10414 2026-03-11 11:49:47 +01:00
5dd16bf4b5 Release 2.0.20+3 2026-03-04 14:59:50 +01:00
89b7ce149b Release 2.0.20+2 2026-03-02 15:18:18 +01:00
e673f7c134 Merge branch 'SCPN1-10253-2.0' into 'release/2.0'
SCPN1-10253-2.0 into release/2.0

See merge request r-d-technique/tiers/reflex-wms-connector!252
2026-03-02 14:09:14 +00:00
8898467d7c SCPN1-10253 2026-03-02 15:08:12 +01:00
cd9db2ddb0 Merge branch 'SCPN1-10253-2.0' into 'release/2.0'
SCPN1-10253 "2.0" to release 2.0

See merge request r-d-technique/tiers/reflex-wms-connector!248
2026-03-02 13:54:50 +00:00
7844fdd015 SCPN1-10294 2026-03-02 14:47:24 +01:00
8d806117fa SCPN1-10253 2026-03-02 12:07:22 +01:00
84d0f73281 SCPN1-10253 2026-03-02 11:59:16 +01:00
5 changed files with 545 additions and 535 deletions

View File

@@ -24,9 +24,14 @@
<#include "RFXtoRP_HsaItm_ItemCreated_ItemMetadata.ftl">
<#-- Item Photo URI could be added here -->
<#if item.url?? && item.url!="">
<#if item.saved_picture_path?? && item.saved_picture_path!="" && item.saved_picture_path?starts_with("http") == true>
,
"PhotoURI": "${item.saved_picture_path?json_string}"
<#else>
<#if item.url?? && item.url!="" && item.url?starts_with("http") == true>
,
"PhotoURI": "${item.url?json_string}"
</#if>
</#if>
<#-- Loop for the Logistical Variants - LV -->

View File

@@ -33,7 +33,7 @@
"DetailElements": [],
"CorrelationID": "${id.correlationid!"no Correlationid"}",
"ContextPayload": ${strJsonBody},
"Type": "RP_EXECUTIONFLOW_EVENT",
"Type": "${event}",
"Task": "${id.apiRestReflexID!"no Task"}",
"OriginalID": "${id.refid!"no OriginalID"?trim?json_string}",
"StackTrace": ""

File diff suppressed because it is too large Load Diff

View File

@@ -11,7 +11,7 @@
<#assign organisationRP = organisation>
<#switch eventRP.event>
<#-- *********************************************** Action = CREATE or UPDATE ******************** -->
<#-- *********************************************** Action = CREATE ******************** -->
<#case "Created">
<#assign appointment = eventRP.data />
[
@@ -24,10 +24,12 @@
]
<#break>
<#-- *********************************************** Action = CommissionsUpdated ******************** -->
<#case "CommissionsUpdated">
<#case "Updated">
<#assign AddComma = false />
<#assign appointment = eventRP.data />
[ <#if appointment.AppointmentType == "APPOINTMENT_TYPE_UNLOADING">
<#if eventRP.addedCommissions?? && eventRP.addedCommissions!="">
[
<#if eventRP.commissionsUpdated>
<#if appointment.AppointmentType == "APPOINTMENT_TYPE_UNLOADING" && eventRP.addedCommissions?? && eventRP.addedCommissions != "">
<#if eventRP.appointmentCustomFields?has_content>
{
<#assign apiRestReflexID = ApiRestReflexID.appointment_post_physical_receipt_associations_by_number>
@@ -43,9 +45,10 @@
<#include "RPtoRFX_CarrierAppointmentPhysicalReceiptAssociationByRef.ftl">
}
</#if>
<#assign AddComma = true />
</#if>
<#if eventRP.removedCommissions?? && eventRP.removedCommissions!="">
<#if eventRP.addedCommissions?? && eventRP.addedCommissions!="">
<#if appointment.AppointmentType == "APPOINTMENT_TYPE_UNLOADING" && eventRP.removedCommissions?? && eventRP.removedCommissions!="">
<#if AddComma == true>
,
</#if>
@@ -64,32 +67,14 @@
<#include "RPtoRFX_CarrierAppointmentPhysicalReceiptDissociationByRef.ftl">
}
</#if>
<#assign AddComma = true />
</#if>
<#else>
<#if eventRP.appointmentCustomFields?has_content>
{
<#assign apiRestReflexID = ApiRestReflexID.appointment_put_update_by_number>
"apiRestReflexID" : "${apiRestReflexID}",
"datas" :
<#include "RPtoRFX_CarrierAppointmentReasonUpdatedByNumber.ftl">
}
<#else>
{
<#assign apiRestReflexID = ApiRestReflexID.appointment_put_update_by_ref>
"apiRestReflexID" : "${apiRestReflexID}",
"datas" :
<#include "RPtoRFX_CarrierAppointmentReasonUpdatedByRef.ftl">
}
</#if>
<#-- *********************************************** Action = reasonUpdated or slotUpdated ******************** -->
<#if eventRP.reasonUpdated || eventRP.slotUpdated || eventRP.carrierInformationUpdated>
<#if AddComma == true>
,
</#if>
]
<#break>
<#-- *********************************************** Action = SlotUpdated or CarrierInformationUpdated or ReasonUpdated******************** -->
<#case "SlotUpdated">
<#case "CarrierInformationUpdated">
<#case "ReasonUpdated">
<#assign appointment = eventRP.data />
[
<#if eventRP.appointmentCustomFields?has_content>
{
<#assign apiRestReflexID = ApiRestReflexID.appointment_put_update_by_number>
@@ -105,6 +90,8 @@
<#include "RPtoRFX_CarrierAppointmentSlotOrCarrierInformationUpdatedByRef.ftl">
}
</#if>
<#assign AddComma = true />
</#if>
]
<#break>
<#-- *********************************************** Action = Canceled ******************** -->

View File

@@ -1 +1 @@
2.0.20+1
2.0.20+4