ソースを参照

Correctif mineur

packProduct
Fabien Normand 2年前
コミット
0599af201d
2個のファイルの変更9行の追加1行の削除
  1. +4
    -0
      Builder/User/UserMerchantBuilder.php
  2. +5
    -1
      Resources/views/admin/order/field/delivery_type.html.twig

+ 4
- 0
Builder/User/UserMerchantBuilder.php ファイルの表示

@@ -35,6 +35,10 @@ class UserMerchantBuilder

$this->entityManager->create($userMerchant);
$this->entityManager->flush();
}elseif(!$userMerchant->getActive()){
$userMerchant->setActive(true);
$this->entityManager->update($userMerchant);
$this->entityManager->flush();
}

return $userMerchant;

+ 5
- 1
Resources/views/admin/order/field/delivery_type.html.twig ファイルの表示

@@ -1 +1,5 @@
{{ field.value|sov_trans_admin_choice('deliveryType', 'OrderShop') }}
{% if field.value is not null %}
{{ field.value|sov_trans_admin_choice('deliveryType', 'OrderShop') }}
{% else %}
Pas de livraison
{% endif %}

読み込み中…
キャンセル
保存