Quellcode durchsuchen

Les commandes annulées configurées avec paiement automatique ne doivent pas être débitées.

dev
Guillaume Bourgeois vor 6 Jahren
Ursprung
Commit
6d65d7e796
1 geänderte Dateien mit 6 neuen und 1 gelöschten Zeilen
  1. +6
    -1
      backend/controllers/CronController.php

+ 6
- 1
backend/controllers/CronController.php Datei anzeigen

@@ -240,7 +240,10 @@ class CronController extends BackendController
*/
$arrayOrders = Order::searchAll([
'distribution.date' => $date
'distribution.date' => $date,
'distribution.id_producer' => $producer['id']
], [
'conditions' => 'date_delete IS NULL'
]) ;

foreach($arrayOrders as $order) {
@@ -265,6 +268,8 @@ class CronController extends BackendController
$arrayOrders = Order::searchAll([
'distribution.date' => $date,
'distribution.id_producer' => $producer['id']
], [
'conditions' => 'date_delete IS NULL'
]) ;
$user = User::searchOne([

Laden…
Abbrechen
Speichern