Skip to content

Commit

Permalink
受注登録でお届け先に氏名が表示されない EC-CUBE#4980
Browse files Browse the repository at this point in the history
  • Loading branch information
carkn committed Nov 15, 2021
1 parent 0cf8444 commit db59172
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Eccube/Resource/template/admin/Order/edit.twig
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ file that was distributed with this source code.
{% for shipping in Order.Shippings %}
<div class="col">
<span class="mr-5">{{ 'admin.order.delivery'|trans }}({{ loop.index }})</span>
{% set shipping_name = shipping.full_name ~ ' ' ~ '(' ~ shipping.full_name_kana ~ ')' ~ ' ' ~ (shipping.company_name is not null ? shipping.company_name : '') %}
{% set shipping_name = shipping.full_name ~ '(' ~ shipping.full_name_kana ~ ')' ~ (shipping.company_name is not null ? ' ' ~ shipping.company_name : '') %}
{% set shipping_addr = 'admin.common.postal_symbol'|trans ~ shipping.postal_code ~ ' ' ~ shipping.pref ~ shipping.addr01 ~ shipping.addr02 %}
{% set shipping_date = shipping.shipping_date is not null ? shipping.shipping_date|date_day : '' %}
{{ shipping_name }} {{ shipping_addr }} {{ shipping.phone_number }} {{ shipping_date }}
Expand Down

0 comments on commit db59172

Please sign in to comment.