RDV
This commit is contained in:
parent
63a668340d
commit
c635353b69
@ -11,27 +11,50 @@
|
|||||||
<#assign organisationRP = organisation>
|
<#assign organisationRP = organisation>
|
||||||
|
|
||||||
<#switch eventRP.event>
|
<#switch eventRP.event>
|
||||||
|
<#-- *********************************************** Action = CREATE or UPDATE ******************** -->
|
||||||
<#case "Created">
|
<#case "Created">
|
||||||
<#-- *********************************************** Action = CREATE or UPDATE ******************** -->
|
|
||||||
<#assign appointment = eventRP.data />
|
<#assign appointment = eventRP.data />
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
|
|
||||||
<#assign apiRestReflexID = ApiRestReflexID.appointment_post>
|
<#assign apiRestReflexID = ApiRestReflexID.appointment_post>
|
||||||
"apiRestReflexID" : "${apiRestReflexID}",
|
"apiRestReflexID" : "${apiRestReflexID}",
|
||||||
"datas" :
|
"datas" :
|
||||||
<#include "RPtoRFX_CarrierAppointmentCreated.ftl">
|
<#include "RPtoRFX_CarrierAppointmentCreated.ftl">
|
||||||
},
|
}
|
||||||
{
|
<#--{
|
||||||
|
|
||||||
<#assign apiRestReflexID = ApiRestReflexID.appointment_put>
|
<#assign apiRestReflexID = ApiRestReflexID.appointment_put>
|
||||||
"apiRestReflexID" : "${apiRestReflexID}",
|
"apiRestReflexID" : "${apiRestReflexID}",
|
||||||
"datas" :
|
"datas" :
|
||||||
<#include "RPtoRFX_CarrierAppointmentUpdated.ftl">
|
<#include "RPtoRFX_CarrierAppointmentUpdated.ftl">
|
||||||
|
}-->
|
||||||
|
]
|
||||||
|
<#break>
|
||||||
|
<#-- *********************************************** Action = CommissionsUpdated ******************** -->
|
||||||
|
<#case "CommissionsUpdated">
|
||||||
|
<#assign appointment = eventRP.data />
|
||||||
|
[
|
||||||
|
{
|
||||||
|
<#assign apiRestReflexID = ApiRestReflexID.physical_receipt_associations_post>
|
||||||
|
"apiRestReflexID" : "${apiRestReflexID}",
|
||||||
|
"datas" :
|
||||||
|
<#include "RPtoRFX_CarrierAppointmentAssociationPhysicalReceipt.ftl">
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
<#break>
|
<#break>
|
||||||
<#default>
|
<#-- *********************************************** Action = SlotUpdated ******************** -->
|
||||||
|
<#case "SlotUpdated">
|
||||||
|
<#assign appointment = eventRP.data />
|
||||||
|
[
|
||||||
|
{
|
||||||
|
<#assign apiRestReflexID = ApiRestReflexID.appointment_put>
|
||||||
|
"apiRestReflexID" : "${apiRestReflexID}",
|
||||||
|
"datas" :
|
||||||
|
<#include "RPtoRFX_CarrierAppointmentSlotUpdated.ftl">
|
||||||
|
}
|
||||||
|
]
|
||||||
|
<#break>
|
||||||
|
<#default>
|
||||||
<#stop >
|
<#stop >
|
||||||
</#switch>
|
</#switch>
|
||||||
|
|
||||||
|
|||||||
26
RPtoRFX_CarrierAppointmentAssociationPhysicalReceipt.ftl
Normal file
26
RPtoRFX_CarrierAppointmentAssociationPhysicalReceipt.ftl
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"id" : {"refid" : "${eventRP.refid?json_string}"},
|
||||||
|
"route" : "rest/public/v1/physical_depots/{physical_depot_code}/carrier_appointments/{appointment_reference}/physical_receipt_associations",
|
||||||
|
"method" : "POST",
|
||||||
|
"uri_substitutions": {
|
||||||
|
"physical_depot_code": "${RPtoRFXprefixDepot(eventRP.actor)}",
|
||||||
|
"appointment_reference":"${eventRP.refid?json_string}"
|
||||||
|
},
|
||||||
|
"payload" :
|
||||||
|
{
|
||||||
|
<#if appointment.Commissions??>
|
||||||
|
"physical_receipt_list": [
|
||||||
|
<#list appointment.Commissions as commission>
|
||||||
|
{
|
||||||
|
"receipt_activity": "${eventRP.executionflowCustomFields.activity_code?json_string}",
|
||||||
|
"originator_code": "${eventRP.executionflowCustomFields.originator_code?json_string}",
|
||||||
|
"physical_receipt_reference": "${eventRP.executionflowCustomFields.reference?json_string}",
|
||||||
|
"receipt_year": "${eventRP.executionflowCustomFields.order_year?json_string}",
|
||||||
|
"receipt_number": "${eventRP.executionflowCustomFields.order_number?json_string}"
|
||||||
|
}
|
||||||
|
<#sep>,</#sep>
|
||||||
|
</#list>
|
||||||
|
],
|
||||||
|
</#if>
|
||||||
|
}
|
||||||
|
}
|
||||||
27
RPtoRFX_CarrierAppointmentSlotUpdated.ftl
Normal file
27
RPtoRFX_CarrierAppointmentSlotUpdated.ftl
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{
|
||||||
|
"id" : {"refid" : "${eventRP.refid?json_string}"},
|
||||||
|
"route" : "rest/public/v1/physical_depots/{physical_depot_code}/carrier_appointments/{appointment_reference}",
|
||||||
|
"method" : "PUT",
|
||||||
|
"uri_substitutions": {
|
||||||
|
"physical_depot_code": "${RPtoRFXprefixDepot(eventRP.actor)}",
|
||||||
|
"appointment_reference":"${eventRP.refid?json_string}"
|
||||||
|
},
|
||||||
|
"payload" :
|
||||||
|
{
|
||||||
|
|
||||||
|
<#if appointment.Commissions??>
|
||||||
|
"physical_receipt_list": [
|
||||||
|
<#list appointment.Commissions as commission>
|
||||||
|
{
|
||||||
|
"receipt_activity": "${eventRP.executionflowCustomFields.activity_code?json_string}",
|
||||||
|
"originator_code": "${eventRP.executionflowCustomFields.originator_code?json_string}",
|
||||||
|
"physical_receipt_reference": "${eventRP.executionflowCustomFields.reference?json_string}",
|
||||||
|
"receipt_year": "${eventRP.executionflowCustomFields.order_year?json_string}",
|
||||||
|
"receipt_number": "${eventRP.executionflowCustomFields.order_number?json_string}"
|
||||||
|
}
|
||||||
|
<#sep>,</#sep>
|
||||||
|
</#list>
|
||||||
|
]
|
||||||
|
</#if>
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user