# Line Item Quantity Totals

### Template without line breaks

This version of the template can be cut 'n' pasted into the app's template editor and has had line breaks removed to ensure the CSV is properly formed:

```groovy
"Variant Title","Variant Quantity"
{% assign variant_list = '' %}{% for order in orders %}{% for line in order.line_items %}{% assign variant_list = variant_list | append: line.variant_id | append: '::' %}{% endfor %}{% endfor %}{% assign variant_list = variant_list | split: '::' | uniq  %}{% assign csv = '' %}{% for v in variant_list %}{% assign v_count = 0 %}{% assign v_int = v | plus: 0 %}{% for order in orders %}{% for line in order.line_items %}{% assign variant_id_int = line.variant_id | plus: 0 %}{% if v_int  == variant_id_int %}{% assign variant_title = line.product.title | append: ' - ' | append: line.variant.title %}{% comment %} Increment the variant count {% endcomment %}{% assign v_count = v_count | plus: line.quantity %}{% endif %}{% endfor %}{% endfor %}
{% assign csv = csv | append: '"' | append: variant_title | append: '","' | append: v_count | append: '"' %}{% endfor %}
{{ csv }}
```

### Template with line breaks

For those who want to use the template as a foundation and build their own CSV, this version with line breaks is much easier to read and work with:

```groovy
"Variant Title","Variant Quantity"
{% assign variant_list = '' %}
{% for order in orders %}
    {% for line in order.line_items %}
        {% assign variant_list = variant_list | append: line.variant_id | append: '::' %}
    {% endfor %}
{% endfor %}

{% assign variant_list = variant_list | split: '::' | uniq  %}
{% assign csv = '' %}
{% for v in variant_list %}
    {% assign v_count = 0 %}
    {% assign v_int = v | plus: 0 %}
    {% for order in orders %}
        {% for line in order.line_items %}
            {% assign variant_id_int = line.variant_id | plus: 0 %}
            {% if v_int  == variant_id_int %}
            {% assign variant_title = line.product.title | append: ' - ' | append: line.variant.title %}
            {% comment %} Increment the variant count {% endcomment %}
            {% assign v_count = v_count | plus: line.quantity %}
        {% endif %}
    {% endfor %}
{% endfor %}
{% assign csv = csv | append: '"' | append: variant_title | append: '","' | append: v_count | append: '"
' %}
{% endfor %}
{{ csv }}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://smart-notifications.gitbook.io/docs/templates/attachment-templates/line-item-quantity-totals.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
