Procházet zdrojové kódy

Merge branch 'dev'

prodstable
Guillaume před 4 roky
rodič
revize
8f4c57715a
2 změnil soubory, kde provedl 4 přidání a 1 odebrání
  1. +2
    -0
      backend/controllers/DocumentController.php
  2. +2
    -1
      common/models/Order.php

+ 2
- 0
backend/controllers/DocumentController.php Zobrazit soubor

@@ -556,6 +556,8 @@ class DocumentController extends BackendController

$model = $class::searchOne([
'id' => $id
], [
'orderby' => 'teshtygjhtyt'
]);

if ($model) {

+ 2
- 1
common/models/Order.php Zobrazit soubor

@@ -137,7 +137,8 @@ class Order extends ActiveRecordCommon
public function getProductOrder()
{
return $this->hasMany(ProductOrder::className(), ['id_order' => 'id'])
->with('product');
->orderBy(['product.order' => SORT_DESC])
->joinWith('product');
}

public function getDistribution()

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