commit
db9e8d788d
@ -66,12 +66,6 @@ class ClientIdSubscriber implements EventSubscriberInterface
|
||||
if (null === $account) {
|
||||
throw new AccessDeniedHttpException('ClientId not found');
|
||||
}
|
||||
if (!$account->isActive()) {
|
||||
throw new AccessDeniedHttpException('Account is not active');
|
||||
}
|
||||
if ($account->isFreeze()) {
|
||||
throw new AccessDeniedHttpException('Account is freezed');
|
||||
}
|
||||
|
||||
$this->moduleManager->setAccount($account);
|
||||
}
|
||||
|
@ -106,6 +106,17 @@ class Configuration
|
||||
*/
|
||||
public $selfShipmentAvailable = false;
|
||||
|
||||
/**
|
||||
* Возможность работы с заказом, содержащим несколько позиций с одинаковым торговым предложением
|
||||
*
|
||||
* @var bool
|
||||
*
|
||||
* @Serializer\Groups({"set", "get"})
|
||||
* @Serializer\SerializedName("duplicateOrderProductSupported")
|
||||
* @Serializer\Type("boolean")
|
||||
*/
|
||||
public $duplicateOrderProductSupported = true;
|
||||
|
||||
/**
|
||||
* Разрешить отдельно передавать трек номер
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user