Quellcode durchsuchen

[backend] Abonnements : ordre produits

refactoring
Guillaume Bourgeois vor 5 Jahren
Ursprung
Commit
ac3585532f
1 geänderte Dateien mit 7 neuen und 3 gelöschten Zeilen
  1. +7
    -3
      backend/controllers/SubscriptionController.php

+ 7
- 3
backend/controllers/SubscriptionController.php Datei anzeigen

@@ -117,7 +117,9 @@ class SubscriptionController extends BackendController
}
// produits
$productsArray = Product::searchAll() ;
$productsArray = Product::searchAll([], [
'orderby' => 'product.order ASC'
]) ;
if ($model->load(Yii::$app->request->post()) && $model->validate()
&& $model->save())
@@ -191,7 +193,9 @@ class SubscriptionController extends BackendController
}

// produits
$productsArray = Product::searchAll() ;
$productsArray = Product::searchAll([], [
'orderby' => 'product.order ASC'
]) ;

if ($model->load(Yii::$app->request->post()) && $model->validate()) {
if (!strlen($model->date_end)) {
@@ -270,7 +274,7 @@ class SubscriptionController extends BackendController
}]) ;
}
$productsArray = $productsQuery->asArray()->all() ;
$productsArray = $productsQuery->asArray()->orderBy('order ASC')->all() ;
foreach($productsArray as &$theProduct) {
$theProduct['unit_save'] = $theProduct['unit'] ;

Laden…
Abbrechen
Speichern