app/template/default/Block/product_list_price.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. <div class="item_price">
  9.     <p class="ec-productRole__priceRegularPrice"><span>{{ '通常価格'|trans }}:</span>{{ Product.getPrice01IncTaxMin|price }}<span>{{ '(税込)'|trans }}</span></p>
  10.     <p class="price02-default">
  11.             {% if Product.hasProductClass %}
  12.                 {% if Product.getPrice02Min == Product.getPrice02Max %}
  13.                     <em>{{ Product.getPrice02IncTaxMin|price }}</em>
  14.                 {% else %}
  15.                     <em>{{ Product.getPrice02IncTaxMin|price }} ~ {{ Product.getPrice02IncTaxMax|price }}</em>
  16.                 {% endif %}
  17.             {% else %}
  18.                 <span>{{ '標準卸価格'|trans }}:</span><em>{{ Product.getPrice02IncTaxMin|price }}</em><span>{{ '(税込)'|trans }}</span>
  19.             {% endif %}
  20.     </p>
  21. </div>