File tree Expand file tree Collapse file tree
views/Admin/GiftCard/Grid/Field Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -62,6 +62,7 @@ setono_sylius_gift_card:
6262 gift_cards_adjustment_total : Gavekortets total
6363 has_no_gift_card : Har ikke noget gavekort
6464 initial_amount : Oprindeligt beløb
65+ in_cart : I kurven
6566 list_orders : Ordreliste
6667 manage_gift_cards : Administrer gavekort
6768 manage_gift_card_configurations : Administrer gavekortskonfigurationer
Original file line number Diff line number Diff line change @@ -67,6 +67,7 @@ setono_sylius_gift_card:
6767 gift_cards_adjustment_total : Gift cards total
6868 has_no_gift_card : Has no gift card
6969 initial_amount : Initial amount
70+ in_cart : In cart
7071 list_orders : List orders
7172 load_default_css : Load default CSS
7273 manage_gift_cards : Manage gift cards
Original file line number Diff line number Diff line change @@ -62,6 +62,7 @@ setono_sylius_gift_card:
6262 gift_cards_adjustment_total : Montant des chèques-cadeaux
6363 has_no_gift_card : Ne contient pas de chèque-cadeau
6464 initial_amount : Montant initial
65+ in_cart : In cart
6566 list_orders : Lister les commandes
6667 manage_gift_cards : Gérer les chèques-cadeaux
6768 manage_gift_card_configurations : Gérer les configurations de chèques-cadeaux
Original file line number Diff line number Diff line change 22
33{% if data is not null %}
44 {% set order = data .orderItem .order %}
5-
6- <a href =" {{ path(' sylius_admin_order_show' , {' id' : order .id }) }}" >#{{ order .number }}</a >
5+ {% if order .number is null %}
6+ {{ ' setono_sylius_gift_card.ui.in_cart' | trans }}
7+ {% else %}
8+ <a href =" {{ path(' sylius_admin_order_show' , {' id' : order .id }) }}" >#{{ order .number }}</a >
9+ {% endif %}
710{% else %}
811 {{ ' setono_sylius_gift_card.ui.manually_created' | trans }}
912{% endif %}
You can’t perform that action at this time.
0 commit comments