Pārlūkot izejas kodu

[Backend] Distribution > user : correctif point sale favorite

feature/souke
Guillaume Bourgeois pirms 1 gada
vecāks
revīzija
401d49256b
1 mainītis faili ar 7 papildinājumiem un 3 dzēšanām
  1. +7
    -3
      backend/controllers/DistributionController.php

+ 7
- 3
backend/controllers/DistributionController.php Parādīt failu

@@ -457,11 +457,15 @@ class DistributionController extends BackendController
{
\Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
$userManager = $this->getUserManager();
$user = $userManager->findOneUserById($idUser);
$favoritePointSale = $userManager->getUserFavoritePointSale($user);
$idFavoritePointSale = 0;
if ($favoritePointSale) {
$idFavoritePointSale = $favoritePointSale->id;

if($user) {
$favoritePointSale = $userManager->getUserFavoritePointSale($user);
if ($favoritePointSale) {
$idFavoritePointSale = $favoritePointSale->id;
}
}

return [

Notiek ielāde…
Atcelt
Saglabāt