Procházet zdrojové kódy

Correctif mineur

packProduct
Fabien Normand před 2 roky
rodič
revize
0599af201d
2 změnil soubory, kde provedl 9 přidání a 1 odebrání
  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 Zobrazit soubor

@@ -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 Zobrazit soubor

@@ -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 %}

Načítá se…
Zrušit
Uložit