|
|
@ -274,11 +274,7 @@ export function byPacking(label, packageInfo,locationCode, fromInventoryStatuses |
|
|
|
value: locationCode |
|
|
|
}) |
|
|
|
if (fromInventoryStatuses) { |
|
|
|
var status = "" |
|
|
|
fromInventoryStatuses.forEach(res => { |
|
|
|
status = res + "," |
|
|
|
}) |
|
|
|
|
|
|
|
var status = fromInventoryStatuses.join(','); |
|
|
|
filters.push({ |
|
|
|
column: "inventoryStatus", |
|
|
|
action: "in", |
|
|
@ -343,9 +339,11 @@ export function byBatch(label, locationCode, fromInventoryStatuses, callback) { |
|
|
|
}) |
|
|
|
|
|
|
|
if (fromInventoryStatuses) { |
|
|
|
var status = "" |
|
|
|
fromInventoryStatuses.forEach(res => { |
|
|
|
status = res + "," |
|
|
|
var status = fromInventoryStatuses.join(','); |
|
|
|
filters.push({ |
|
|
|
column: "inventoryStatus", |
|
|
|
action: "in", |
|
|
|
value: status |
|
|
|
}) |
|
|
|
|
|
|
|
filters.push({ |
|
|
@ -420,9 +418,11 @@ export function byQuantity(label, locationCode, fromInventoryStatuses, callback) |
|
|
|
}) |
|
|
|
|
|
|
|
if (fromInventoryStatuses) { |
|
|
|
var status = "" |
|
|
|
fromInventoryStatuses.forEach(res => { |
|
|
|
status = res + "," |
|
|
|
var status = fromInventoryStatuses.join(','); |
|
|
|
filters.push({ |
|
|
|
column: "inventoryStatus", |
|
|
|
action: "in", |
|
|
|
value: status |
|
|
|
}) |
|
|
|
|
|
|
|
filters.push({ |
|
|
@ -479,9 +479,11 @@ export function byUniqueId(label, locationCode, fromInventoryStatuses, callback) |
|
|
|
}) |
|
|
|
|
|
|
|
if (fromInventoryStatuses) { |
|
|
|
var status = "" |
|
|
|
fromInventoryStatuses.forEach(res => { |
|
|
|
status = res + "," |
|
|
|
var status = fromInventoryStatuses.join(','); |
|
|
|
filters.push({ |
|
|
|
column: "inventoryStatus", |
|
|
|
action: "in", |
|
|
|
value: status |
|
|
|
}) |
|
|
|
|
|
|
|
filters.push({ |
|
|
|