将产品 line_items 存储在与供应商关联的数组中

Storing product line_items in an associative array with vendors

在生成“订单确认”电子邮件时,我想要一个根据供应商按“数组”排序的产品列表。

但我不知道如何设置与供应商关联的产品线项目。

这是我正在尝试的;

{% assign vendor_count = 0 %}
{% capture vendor_check %}
    {% for line in line_items %}
        {{ line.product.vendor }}{% if forloop.last != true %},{% endif %}
    {% endfor %}
{% endcapture %}

{% assign line_vendor = vendor_check | split: ',' | uniq %}

{%- assign vendor_items = line_items | where: "vendor", vendor -%}

{% for vendor in line_vendor %}
      {% assign vendor_count = vendor_count | plus: 1 %}
      <div><strong>Delivery {{ vendor_count }} - {{ vendor }}</strong></div>
      {% for line in vendor_items %}
          {{ line.title }}<br>      
      {% endfor %}  
{% endfor %}

当前输出:

交货 1 - 供应商#1
产品 1
产品 2
产品 3
产品 4

交货 2 - 供应商#2
产品 1
产品 2
产品 3
产品 4

期望的输出:

交货 1 - 供应商#1
产品 1
产品 2

交货 2 - 供应商#2
产品 3
产品 4

我做错了什么?

缩进流动代码可能会通过插入意外的空格来弄乱捕获的变量,要么将整个捕获标记放在 1 行上,要么转义空格。

vendor_items 并不是真正需要的,只需从 line_items 中创建一组独特的供​​应商,然后再次遍历您的 line_items 并显示匹配的产品。

您可以尝试这样的方法并根据您的需要进行调整:

{% capture vendor_check %}{% for line in line_items %}{{ line.product.vendor }}{% if forloop.last != true %},{% endif %}{% endfor %}{% endcapture %}

{% assign line_vendor = vendor_check | split: "," | uniq %}

{% for vendor in line_vendor %}
      {% assign vendor_count = vendor_count | plus: 1 %}
      <div><strong>Delivery {{ vendor_count }} - {{ vendor }}</strong></div>

      {% for line in line_items %}
          {% if line.product.vendor == vendor %}{{ line.title }}{% endif %}<br>
      {% endfor %}  
{% endfor %}