Fluent Commerce Logo
Docs
Sign In

fc.oms.mystique.inventory.search.inventory.position.stock.statuses

Setting

Changed on:

17 Jan 2025

Setting AreaUI component
Supported context levels:ACCOUNT, RETAILER

Overview

The

`fc.oms.mystique.inventory.search.inventory.position.stock.statuses`
is a configuration that defines the available statuses for the Stock Status Filter on the Inventory Search page. This allows users to filter inventory data based on predefined status options.

Values

Data TypeValues
JSON
1[
2  "CREATED",
3  "INACTIVE",
4  "ACTIVE",
5  "AT_RISK",
6  "OUT_OF_STOCK"
7]

Language: plain_text

Name: Sample Filter Values

Description:

Example configuration of possible filter values

Detailed technical description

The statuses specified in the setting are tailored to the reference Inventory Catalog workflow and serve as an example. These values should be updated to align with the specific requirements and workflows, ensuring the filter reflects relevant statuses in their operational context.

Configuration example

1POST {{fluentApiHost}}/graphql
2
3mutation CreateSetting {
4   createSetting(input: {
5		name: "fc.oms.mystique.inventory.search.inventory.position.stock.statuses", 
6		valueType: "JSON", 
7		lobValue:$lobValue , 
8		context: "RETAILER", 
9		contextId:$retailerId}) {
10    id
11    name
12  }
13}
14		
15GraphQL variables:
16{
17	"retailerId": {{retailer_id}},
18    "lobValue" : [
19  "CREATED",
20  "INACTIVE",
21  "ACTIVE",
22  "AT_RISK",
23  "OUT_OF_STOCK"
24]
25}
26

Language: graphqlschema