REMOTE_DELIVERY_OPTION_PROVIDER

Type: object Default:

{
  "klass": "omnishop.address.remote_delivery_options.provider.ExtensionDeliveryOptionProvider",
  "conf": {
    "base_url": "",
    "username": "",
    "password": ""
  }
}

Description: Configuration for remote delivery option provider service.

  • Defines the provider class and configuration for fetching delivery options from an external service

  • When configured, enables RemoteDeliveryOptionSelectionPage to fetch delivery options remotely

  • Must be used together with CHECKOUT_DELIVERY_OPTION_SELECTION_PAGE setting set to RemoteDeliveryOptionSelectionPage

  • klass: Python class path for the provider implementation

  • conf.base_url: Base URL for the remote delivery option service

  • conf.username: Username for authentication (if required)

  • conf.password: Password for authentication (if required)

Used in: RemoteDeliveryOptionSelectionPage to fetch available delivery options from external service

Last updated

Was this helpful?