[Liquid]在庫チェック
function_get_variant_status.liquid
{%- comment -%}在庫チェック{%- endcomment -%} {%- assign is_in_stock = false -%} {%- if 0 < variant.inventory_quantity -%} {%- assign is_in_stock = true -%} {%- endif -%} {%- comment -%}在庫あり カートに入れる{%- endcomment -%} {%- if is_in_stock -%} {%- assign get_variant_status = 1 -%} {%- comment -%}在庫なし 「在庫切れの場合でも販売を続ける」がチェックされている カートに入れる{%- endcomment -%} {%- elsif is_in_stock == false and variant.inventory_policy == 'continue' -%} {%- assign get_variant_status = 2 -%} {%- comment -%}在庫なし 再入荷待ち{%- endcomment -%} {%- elsif is_in_stock == false and variant.incoming -%} {%- assign get_variant_status = 3 -%} {%- comment -%}在庫なし 完売しました{%- endcomment -%} {%- elsif is_in_stock == false -%} {%- assign get_variant_status = 4 -%} {%- comment -%}不明{%- endcomment -%} {%- else -%} {%- assign get_variant_status = 99 -%} {%- endif -%}