Browse Source

Merge branch 'dev'

master
Guillaume 4 years ago
parent
commit
249a23c471
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      backend/controllers/DistributionController.php

+ 5
- 1
backend/controllers/DistributionController.php View File

@@ -933,6 +933,8 @@ class DistributionController extends BackendController
*/
public function actionAjaxProcessSynchroTiller($date)
{
\Yii::$app->response->format = \yii\web\Response::FORMAT_JSON;
$return = [] ;
$producerTiller = Producer::getConfig('tiller');

if ($producerTiller) {
@@ -978,7 +980,7 @@ class DistributionController extends BackendController
$typePaymentTiller = 'CASH';
}

$tiller->postOrder([
$return[] = $tiller->postOrder([
'externalId' => $order->id,
'type' => 1,
'status' => "CLOSED",
@@ -996,6 +998,8 @@ class DistributionController extends BackendController
}
}
}

return $return ;
}

public function actionAjaxGenerateDeliveryNote($idOrders)

Loading…
Cancel
Save