cart.coupon

Введенный код купона.
Liquid
        
          

{% if cart.enable_coupon? %}
  <form action="{{ cart_url }}" method="post" >
    <input type="text" name="cart[coupon]" value="{{ cart.coupon }}" placeholder="Введите купон">
    <button type="submit">
      Применить купон
    </button>
    {% if cart.invalid_coupon? %}
      <div class="discounts-notice notice notice-error">
        {{ cart.coupon_error }}
      </div>
    {% endif %}
    {% if cart.discounts.size > 0 %}
    {% for discount in cart.discounts %}
      <div class="discount">
      <div class="discount-title">
        {{ discount.description }}
      </div>
          <div class="discount-prices prices">
            <span class="prices-current">
              - {{ discount.amount | money }}
            </span>
          </div>
        </div>
      {% endfor %}
    {% endif %}
  </form>
{% endif %}

cart.coupon_error

Сообщение ошибки ввода купона.
Liquid
        
          

{% if cart.enable_coupon? %}
  <form action="{{ cart_url }}" method="post" >
    <input type="text" name="cart[coupon]" value="{{ cart.coupon }}" placeholder="Введите купон">
    <button type="submit">
      Применить купон
    </button>
    {% if cart.invalid_coupon? %}
      <div class="discounts-notice notice notice-error">
        {{ cart.coupon_error }}
      </div>
    {% endif %}
    {% if cart.discounts.size > 0 %}
    {% for discount in cart.discounts %}
      <div class="discount">
      <div class="discount-title">
        {{ discount.description }}
      </div>
          <div class="discount-prices prices">
            <span class="prices-current">
              - {{ discount.amount | money }}
            </span>
          </div>
        </div>
      {% endfor %}
    {% endif %}
  </form>
{% endif %}

cart.discounts

Массив скидок.
Liquid
        
          

{% if cart.discounts.size > 0 %}
  {% for discount in cart.discounts %}
  <div class="discount">
  <div class="discount-title">
    {{ discount.description }}
  </div>
      <div class="discount-prices prices">
        <span class="prices-current">
          - {{ discount.amount | money }}
        </span>
      </div>
    </div>
  {% endfor %}
{% endif %}

cart.enable_coupon?

Флаг, обозначающий, включено использование купонов или нет, - если купоны запрещены тарифом - возвращает true.
Liquid
        
          

{% if cart.enable_coupon? %}
  <form action="{{ cart_url }}" method="post" >
    <input type="text" name="cart[coupon]" value="{{ cart.coupon }}" placeholder="Введите купон">
    <button type="submit">
      Применить купон
    </button>
    {% if cart.invalid_coupon? %}
      <div class="discounts-notice notice notice-error">
        {{ cart.coupon_error }}
      </div>
    {% endif %}
    {% if cart.discounts.size > 0 %}
    {% for discount in cart.discounts %}
      <div class="discount">
      <div class="discount-title">
        {{ discount.description }}
      </div>
          <div class="discount-prices prices">
            <span class="prices-current">
              - {{ discount.amount | money }}
            </span>
          </div>
        </div>
      {% endfor %}
    {% endif %}
  </form>
{% endif %}

cart.invalid_coupon?

Флаг, обозначающий, что введенн неверный купон, если купон не задан возвращает false.
Liquid
        
          

{% if cart.enable_coupon? %}
  <form action="{{ cart_url }}" method="post" >
    <input type="text" name="cart[coupon]" value="{{ cart.coupon }}" placeholder="Введите купон">
    <button type="submit">
      Применить купон
    </button>
    {% if cart.invalid_coupon? %}
      <div class="discounts-notice notice notice-error">
        {{ cart.coupon_error }}
      </div>
    {% endif %}
    {% if cart.discounts.size > 0 %}
    {% for discount in cart.discounts %}
      <div class="discount">
      <div class="discount-title">
        {{ discount.description }}
      </div>
          <div class="discount-prices prices">
            <span class="prices-current">
              - {{ discount.amount | money }}
            </span>
          </div>
        </div>
      {% endfor %}
    {% endif %}
  </form>
{% endif %}

cart.items

Массив товаров (товарных позиций) в корзине.
Liquid
        
          

{% for item in cart.items %}
  <div class="item">
    <div class="item-title">
      {{ item.title }}
    </div>
    <div class="item-title">
      {{ item.quantity | money }} &times; {{ item.sale_price }} = {{ item.total_price | money }}
    </div>
  </div>
{% endfor %}

cart.items_count

Число позиций в корзине.
Liquid
        
          

Товаров в корзине: {{ cart.items_count }}

cart.items_price

Сумма с учетом скидки без учета доставки
Liquid
        
          

Итого: {{ cart.items_price | money }}

cart.items_weight

Суммарный вес всех позиций в корзине.
Liquid
        
          

{% if cart.items_weight %}
  Сумарный вес товаров в корзине: {{ cart.items_weight }}
{% endif %}

cart.total_price

Сумма с учетом скидки и с учетом доставки
Liquid
        
          

Суммарная стоимость заказа с учетом доставки: {{ cart.total_price | money }}

Новости и статьи
Обновления платформы
Документация по API insales
API для написания интеграций
Разработка приложений
Пошаговая документация
Партнерская программа
Станьте партнером InSales
Продолжая пользоваться сайтом, вы
соглашаетесь с использованием cookie