Browse Source

[Espace producteur] Commande : ordre des points de vente #822

refactoring
Guillaume Bourgeois 1 year ago
parent
commit
74ac70b938
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      producer/controllers/OrderController.php

+ 1
- 1
producer/controllers/OrderController.php View File

@@ -958,7 +958,7 @@ class OrderController extends ProducerBaseController
'restricted_access = 0 OR (restricted_access = 1 AND (SELECT COUNT(*) FROM user_point_sale WHERE point_sale.id = user_point_sale.id_point_sale AND user_point_sale.id_user = :id_user) > 0)'
)
->params([':id_user' => User::getCurrentId()])
->orderBy('default DESC, code ASC, restricted_access ASC, is_bread_box ASC, name ASC')
->orderBy('code ASC, restricted_access ASC, is_bread_box ASC, `default` DESC, name ASC')
->all();

$creditFunctioningProducer = Producer::getConfig('credit_functioning');

Loading…
Cancel
Save