{% extends "layouts/base.html" %} {% block title %} basket data connection {% endblock %} {% block stylesheets %}{% endblock stylesheets %} {% block content %}
Baskets
Sessions of Baskets Data Source
Baskets : The basket data source is the sub-data source for the sessions. This data source is merging with Sessions data source and storing into he ElasticSerach If any session has a basket, the Order ID of the session of basket information must be included at basket data source. Basket Data Source is optional. Product Analytics Dashboard and A/B Test for Products are calculated related to basket datasource. If here is action in the Session data source related to basket creation, make sure this action has True value while there is a created basket.
{% if values['data_source_con_check'] == 'Connected' %} {% if values['s_c_p_connection_check'] == 'False_False_False' %} There isn`t any connection detected for Baskets. {% endif %} {% if values['s_c_p_connection_check'] == 'False_False_True' or values['s_c_p_connection_check'] == 'True_True_True' or values['s_c_p_connection_check'] == 'False_True_True' or values['s_c_p_connection_check'] == 'True_False_True' %} Baskets 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'] == 'False_False_True' or values['s_c_p_connection_check'] == 'True_True_True' or values['s_c_p_connection_check'] == 'False_True_True' or values['s_c_p_connection_check'] == 'True_False_True' %} Baskets Data Source is detected {% endif %} {% endif %}
Basket Data Source
- Each session ID (Order ID) must be unique. Sessions must cover both non-purchased and purchase transactions.
- session IDs must be matched with Session IDs on Sessions Data Source.
- Products are assigned as product IDs or product names.
- Price will be the Amount * Price of the product.
{% if values['es_connection'] != '....' %}
{% if values['es_connection']['url'] == 'None' %} {{ 'http://'+ values['es_connection']['host'] + ':' +values['es_connection']['port'] }} {% endif %}
order ID product price category
{% endif %} {% if values['es_connection'] == '....' %} Please add ElasticSearch Connection {% endif %}
{% endblock content %} {% block javascripts %}{% endblock javascripts %}