Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents
stylenone

Introduction

By configuring the delivery promise in the Store app, you can display the time remaining or the time passed in relation to a certain milestone.

...

The store app has a default configuration, but this can be changed from the Configuration > Store App > Pages > {Page name} > Delivery promise backoffice page.

...

Configuration structure

  • milestone (string - mandatory) - Name of the milestone to be warned about. Must be identical to the one configured in the delivery promise operations.

  • warning - (object- optional) - Indicates the period of time, in seconds, before the milestone, during which the remaining time will be showed as a warning, in orange. Before, the milestone is shown with no warning, and after it is shown in alert, in red.

    • from (int) - Number of seconds remaining before the end of the milestone. Transition from orange to red display.

    • to (int) - Number of seconds remaining before the end of the milestone. Transition from grey to orange display.

  • sort - If set to true, orders will be sorted from most urgent to least urgent.

Default configurations

Page

Default configuguration

Pack

Expand
titleUnfold
Code Block
languagejson
{
  "sort": true,
  "milestone": "carrier_pickup",
  "warning": {
    "from": 600,
    "to": 1800
  }
}

Pack scan

Expand
titleUnfold
Code Block
languagejson
{
  "sort": true,
  "milestone": "carrier_pickup",
  "warning": {
    "from": 600,
    "to": 1800
  }
}

Bag

Expand
titleUnfold
Code Block
languagejson
{
  "sort": true,
  "milestone": "eta_end",
  "warning": {
    "from": 600,
    "to": 1800
  }
}

Bag scan

Expand
titleUnfold
Code Block
languagejson
{
  "sort": true,
  "milestone": "eta_end",
  "warning": {
    "from": 600,
    "to": 1800
  }
}

Reserve

Expand
titleUnfold
Code Block
languagejson
{
  "sort": true,
  "milestone": "eta_end",
  "warning": {
    "from": 600,
    "to": 1800
  }
}

Exemple

Let's take the case where the carrier pick-up is scheduled for 17:00 according to the route schedule set in the Delivery Promise configuration.

...