Fluent Commerce Logo
Docs
Sign In

fc.order.sourcing.proceeding.time

Setting

Changed on:

16 Aug 2023

Setting AreaUI component, Workflow, Orders
Supported context levels:RETAILER AGENT

Overview

This setting determines the time when we start the pick and pack process for an order. It is measured in hours and set at retailer and/or agent levels. The setting also determines when a fulfillment will appear in the store by changing the status from 

`SCHEDULED`
 to 
`AWAITING_WAVE`
.

Values

Data TypeValues
INTEGER

Sample Value:

  • 24

Configuration example

1POST {{fluentApiHost}}/graphql
2
3mutation CreateSetting {
4   createSetting(input: {
5		name: "fc.order.sourcing.proceeding.time", 
6		valueType: "INTEGER", 
7		value:  24, 
8		context: "RETAILER", 
9		contextId: 1}) {
10    id
11    name
12  }
13}

Language: json

Update example

1POST {{fluentApiHost}}/graphql
2
3mutation updateSetting {
4  updateSetting(input: {
5		id: 5001464,
6		name: "fc.order.sourcing.proceeding.time", 
7		valueType: "INTEGER", 
8		value:  24, 
9		context: "RETAILER", 
10		contextId: 1}) {
11    id
12    name
13  }
14}
15

Language: json