app/template/default/Block/stock.twig line 1

Open in your IDE?
  1. {#
  2. This file is part of EC-CUBE
  3. Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  4. http://www.ec-cube.co.jp/
  5. For the full copyright and license information, please view the LICENSE
  6. file that was distributed with this source code.
  7. #}
  8. {#% set stock_count = repository('Eccube\\Entity\\Product').findProductsStockCount(id) %#}
  9. <p class = "stock-count">在庫:
  10.     {% if Product.getStockMax > 12 %}
  11.         ○
  12.     {% elseif Product.getStockMax <= 0 %}
  13.         ×
  14.     {% else %}
  15.         {{Product.getStockMax}}
  16.     {% endif %}
  17. </p>