Procházet zdrojové kódy

[producer] Correction bug récupération des points de vente

dev
Guillaume Bourgeois před 4 roky
rodič
revize
9c9f6d0b31
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      common/models/User.php

+ 1
- 1
common/models/User.php Zobrazit soubor

@@ -621,7 +621,7 @@ class User extends ActiveRecordCommon implements IdentityInterface
$pointSale = PointSale::findOne(['id' => $arrayUserPointSale[0]->id_point_sale]);
} else {
$lastOrder = Order::find()->innerJoinWith('pointSale', true)->where([
'id_user' => $this->id,
'order.id_user' => $this->id,
'point_sale.id_producer' => GlobalParam::getCurrentProducerId()
])
->orderBy('order.id DESC')

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