Explorar el Código

Merge branch 'dev'

prodstable
Guillaume hace 4 años
padre
commit
8f4c57715a
Se han modificado 2 ficheros con 4 adiciones y 1 borrados
  1. +2
    -0
      backend/controllers/DocumentController.php
  2. +2
    -1
      common/models/Order.php

+ 2
- 0
backend/controllers/DocumentController.php Ver fichero

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

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

if ($model) {

+ 2
- 1
common/models/Order.php Ver fichero

@@ -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()

Cargando…
Cancelar
Guardar