You've already forked reflex-wms-connector
Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c1023741bb | |||
| db40be98f4 | |||
| 6b7592559b | |||
| 9db774f2b1 | |||
| 8cb5f4d0b5 | |||
| 75f791bf62 | |||
| aab63ed3ee |
@@ -12,7 +12,7 @@
|
|||||||
{
|
{
|
||||||
"LVID": "${lv.logistical_variant_code?json_string}",
|
"LVID": "${lv.logistical_variant_code?json_string}",
|
||||||
"Name" : "${lv.lv_type_code?json_string}",
|
"Name" : "${lv.lv_type_code?json_string}",
|
||||||
<#if lv.id_list??>
|
<#if lv.id_list?? && (lv.id_list?size == lv.id_list?filter(l ->l??)?size)>
|
||||||
"Codes": [
|
"Codes": [
|
||||||
<#list lv.id_list as id>
|
<#list lv.id_list as id>
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -37,7 +37,7 @@
|
|||||||
"LVID": "${logistical_variant.logistical_variant_code?json_string}",
|
"LVID": "${logistical_variant.logistical_variant_code?json_string}",
|
||||||
"Name" : "${logistical_variant.lv_type_code?json_string}",
|
"Name" : "${logistical_variant.lv_type_code?json_string}",
|
||||||
|
|
||||||
<#if logistical_variant.id_list??>
|
<#if logistical_variant.id_list?? && (logistical_variant.id_list?size == logistical_variant.id_list?filter(l ->l??)?size)>
|
||||||
"Codes": [
|
"Codes": [
|
||||||
<#list logistical_variant.id_list as id>
|
<#list logistical_variant.id_list as id>
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
<#else>
|
<#else>
|
||||||
<#if receipt.line_list??>
|
<#if receipt.line_list??>
|
||||||
<#list receipt.line_list as receipt_line >
|
<#list receipt.line_list as receipt_line >
|
||||||
<#if receipt_line.origin_order_line_reference!="">
|
<#if receipt_line.origin_order_line_reference?? && receipt_line.origin_order_line_reference!="">
|
||||||
<#if !refIDHmap_local[receipt_line.origin_order_line_reference]?? >
|
<#if !refIDHmap_local[receipt_line.origin_order_line_reference]?? >
|
||||||
<#if refIDHmap_local?size != 0 >
|
<#if refIDHmap_local?size != 0 >
|
||||||
,
|
,
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
<#else>
|
<#else>
|
||||||
<#if receipt.line_list??>
|
<#if receipt.line_list??>
|
||||||
<#list receipt.line_list as receipt_line >
|
<#list receipt.line_list as receipt_line >
|
||||||
<#if receipt_line.origin_order_line_reference!="">
|
<#if receipt_line.origin_order_line_reference?? && receipt_line.origin_order_line_reference!="">
|
||||||
<#if !refIDHmap_local[receipt_line.origin_order_line_reference]?? >
|
<#if !refIDHmap_local[receipt_line.origin_order_line_reference]?? >
|
||||||
<#if refIDHmap_local?size != 0 >
|
<#if refIDHmap_local?size != 0 >
|
||||||
,
|
,
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
<#else>
|
<#else>
|
||||||
<#if receipt.line_list??>
|
<#if receipt.line_list??>
|
||||||
<#list receipt.line_list as receipt_line >
|
<#list receipt.line_list as receipt_line >
|
||||||
<#if receipt_line.origin_order_line_reference!="">
|
<#if receipt_line.origin_order_line_reference?? && receipt_line.origin_order_line_reference!="">
|
||||||
<#if !refIDHmap_local[receipt_line.origin_order_line_reference]?? >
|
<#if !refIDHmap_local[receipt_line.origin_order_line_reference]?? >
|
||||||
<#if refIDHmap_local?size != 0 >
|
<#if refIDHmap_local?size != 0 >
|
||||||
,
|
,
|
||||||
|
|||||||
@@ -17,6 +17,7 @@
|
|||||||
|
|
||||||
<#switch eventRP.event>
|
<#switch eventRP.event>
|
||||||
<#case "Created">
|
<#case "Created">
|
||||||
|
<#case "Renotified">
|
||||||
<#-- *********************************************** Action = CREATE or UPDATE ******************** -->
|
<#-- *********************************************** Action = CREATE or UPDATE ******************** -->
|
||||||
<#assign executionflow = eventRP.data />
|
<#assign executionflow = eventRP.data />
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user