Selaa lähdekoodia

[Backend] Distribution > user : correctif point sale favorite

feature/souke
Guillaume Bourgeois 1 vuosi sitten
vanhempi
commit
401d49256b
1 muutettua tiedostoa jossa 7 lisäystä ja 3 poistoa
  1. +7
    -3
      backend/controllers/DistributionController.php

+ 7
- 3
backend/controllers/DistributionController.php Näytä tiedosto

@@ -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 [

Loading…
Peruuta
Tallenna