{% extends "layouts/base.html" %} {% block title %} delivery data connection {% endblock %} {% block stylesheets %}{% endblock stylesheets %} {% block content %}
Deliveries
Sessions of Delivery Data Source
Delivery : The delivery data source is the sub-data source for the sessions. This data source is merging with Sessions data source and storing into the ElasticSearch. If any session has a deliver process, the Order ID of the session of delivery information must be included at delivery data source and purchase value must be True. Delivery Data Source is optional.
{% if values['data_source_con_check'] == 'Connected' %} {% if values['s_c_p_connection_check']['deliveries'] == 'False' %} There isn`t any connection detected for Deliveries. {% endif %} {% if values['s_c_p_connection_check']['deliveries'] == 'True' %} Deliveries Data Source is successfully created. {% endif %} {% endif %} {% if values['data_source_con_check'] != 'Connected' and values['data_source_con_check'] != '....' %} Connection is failed! . {% endif %} {% if values['data_source_con_check'] == '....' %} {% if values['s_c_p_connection_check']['deliveries'] == 'True' %} Deliveries Data Source is detected {% endif %} {% endif %}
Delivery Data Source
- Each session ID (Order ID) must be unique. Sessions must cover only purchase transactions.
- session IDs must be matched with Session IDs on Sessions Data Source.
- Delivery Date and Session ID columns are required but prepare date, return date latitude longitude are optional.
- Latitude and Longitude are the customer of the location coordinates and they are optional.
{% if values['es_connection'] != '....' %}
{% if values['es_connection']['url'] == 'None' %} {{ 'http://'+ values['es_connection']['host'] + ':' +values['es_connection']['port'] }} {% endif %}
order ID delivery date prepare date return date latitude longitude
{% endif %} {% if values['es_connection'] == '....' %} Please add ElasticSearch Connection {% endif %}
{% endblock content %} {% block javascripts %}{% endblock javascripts %}