error code: 1015 1.25-18.74999971 22.5-22.5 37.50000029L69.49999971 834.49999971c-11.25 29.99999971-3.75000029 60.00000029 11.25 82.50000029 18.74999971 22.5 45 37.50000029 75.00000058 37.50000029 11.25 0 18.74999971 0 29.99999971-3.75000029l228.75000029-82.50000029c15.00000029-3.75000029 26.25000029-11.25 37.49999942-22.5l56.25-56.25 138.75000029 138.75000029c18.74999971 18.74999971 41.24999971 26.25000029 67.5 26.25000029s48.75000029-11.25 67.5-26.25000029l146.25-146.25c37.50000029-37.50000029 37.50000029-97.49999971 0-131.24999971L789.49999971 512z m-71.24999942-371.25c3.75000029 0 11.25 3.75000029 14.99999942 3.75000029l146.25 146.25c7.49999971 7.49999971 7.49999971 18.74999971 0 26.24999942l-52.49999971 52.50000058-172.50000029-172.50000029 52.50000058-52.49999971s3.75000029-3.75000029 11.25-3.75000029zM238.24999971 410.75l67.5-67.5c11.25-11.25 11.25-29.99999971 0-41.24999971s-29.99999971-11.25-41.24999971 0L197 369.50000029 148.24999971 320.75c-7.49999971-7.49999971-7.49999971-18.74999971 0-26.25000029l146.25-146.25c3.75000029-3.75000029 7.49999971-3.75000029 15.00000029-3.74999942s11.25 3.75000029 15.00000029 3.74999942L459.50000029 287 287 459.50000029 238.24999971 410.75z m165.00000058 386.25000029s-3.75000029 3.75000029-7.50000058 3.74999942l-228.74999942 82.50000029c-7.49999971 3.75000029-15.00000029 0-18.75000058-7.49999971-3.75000029-3.75000029-3.75000029-7.49999971-3.74999942-15.00000029l82.49999942-228.75000029c0-3.75000029 3.75000029-3.75000029 3.75000029-7.49999971l82.50000029-82.50000029 225-225 74.99999971-74.99999971 172.50000029 172.50000029-75.00000058 74.99999971-225 225-82.49999942 82.50000029z m472.5-67.5l-146.25 146.25c-7.49999971 7.49999971-18.74999971 7.49999971-26.25000029 0l-48.75000029-48.75000029 67.5-67.5c11.25-11.25 11.25-29.99999971 0-41.24999971s-29.99999971-11.25-41.24999971 0l-67.5 67.5-48.75000029-48.75000029 172.50000029-172.50000029 138.75000029 138.75000029c7.49999971 7.49999971 7.49999971 18.74999971 0 26.25000029z" p-id="4312">
{% endif %}
{{option.productTitle}}
{% if storeConfig.sku_spu_set == "4" %}
{% elsif storeConfig.sku_spu_set == "2" %}
{{lang.account.orders_detail.spu}}: {{option.spu | default:"-" }}
{% elsif storeConfig.sku_spu_set == "3" %}
{{lang.account.orders_detail.sku}}: {{option.sku | default:"-" }}
{% elsif storeConfig.sku_spu_set == "1" %}
{{lang.account.orders_detail.spu}}: {{option.spu | default:"-" }}, {{lang.account.orders_detail.sku}}: {{option.sku | default:"-" }}
{% else %}
{% endif %}
{% if option.sku_value %}
{{option.sku_value | replace : "
", ";" }}
{% endif %}
{% for item in option.custom_attr %}
{{ item.name }}
:
{% if item.type == "file" %}
{{ lang.account.orders.property_detail }}
{%- unless item.price == '0' -%}
(
{%- if item.price > 0 -%}
+
{%- else -%}
-
{%- endif -%}
{{ item.price | money }}
)
{%- endunless -%}
{%- elsif item.type == "image_group" -%}
{%- for el in item.value -%}
{{ el.value }}
{%- unless el.price == '0' -%}
(
{%- if el.price > 0 -%}
+
{%- else -%}
-
{%- endif -%}
{{ el.price | money }}
)
{%- endunless -%}
{%- unless forloop.last -%}
,
{%- endunless -%}
{%- endfor -%}
{% elsif item.type == "public_image" %}
{%- if item.price_type == '1' -%}
{%- for el in item.value -%}
{{el.value}}
{%- if el.price != 0 -%}(
{%- if el.price > 0 -%}+{%- else -%}-
{%- endif -%}
{{el.price | money }}
)
{%- endif -%}
{%- unless forloop.last -%},
{%- endunless -%}
{%- endfor -%}
{%- else -%}
{%- for el in item.value -%}
{{el.value}}
{%- if forloop.last -%}
{%- if item.price != 0 -%}(
{%- if item.price > 0 -%}+{%- else -%}-
{%- endif -%}
{{ item.price | money }}
)
{%- endif -%}
{%- endif -%}
{%- unless forloop.last -%},
{%- endunless -%}
{%- endfor -%}
{%- endif -%}
{% elsif item.type == "image_gallery" %}
{{ item.value }}
{%- unless item.price == '0' -%}
(
{%- if item.price > 0 -%}
+
{%- else -%}
-
{%- endif -%}
{{ item.price | money }}
)
{%- endunless -%}
{%- elsif item.type == "checkbox" or item.type == "block_text" or item.type == "image" -%}
{%- for el in item.value -%}
{{ el.value }}
{%- unless el.price == '0' -%}
(
{%- if item.price > 0 -%}
+
{%- else -%}
-
{%- endif -%}
{{ el.price | money }}
)
{%- endunless -%}
{%- unless forloop.last -%}
,
{%- endunless -%}
{%- endfor -%}
{% else %}
{{ item.value }}
{%- unless item.price == '0' -%}
(
{%- if item.price > 0 -%}
+
{%- else -%}
-
{%- endif -%}
{{ item.price | money }}
)
{%- endunless -%}
{% endif %}
{% endfor %}