{% extends "base.html" %} {% load i18n %} {% block breadcrumb_list %} {% endblock %} {% block content %}

{% blocktrans with lgt=products|length %}{{lgt}} Products in Shopify:{% endblocktrans %}

{% for p in products %}
{{p.title}}

Vendor:{{p.vendor}} | Type:{{p.product_type}}
{{p.body_html}}
Variants (Shopify -> InvenTree):

    {% for var in p.variants.all %}
      {{var.title}}(SKU: {{var.sku}} Price: {{var.price}}) {% if var.part %} -> {{var.part}} {% endif %}
    {% endfor %}
{% endfor %}

{% blocktrans with lgt=levels|length %}{{lgt}} Inventory-Levels:{% endblocktrans %}

This shows the Shopify inventoy items on the left and linked stock items on the right. Click on the admin icon to link an InvenTree stock item with a Shopify inventory item.
Once items are linked, the Shopify inventory item levels will automatically synced to InvenTree via webhooks. Changes to the InvenTree stock item will be pushed to Shopify.

{% endblock %}