Ver código fonte

Merge branch 'dev'

prodstable
Guillaume 4 anos atrás
pai
commit
249a23c471
1 arquivos alterados com 5 adições e 1 exclusões
  1. +5
    -1
      backend/controllers/DistributionController.php

+ 5
- 1
backend/controllers/DistributionController.php Ver arquivo

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

Carregando…
Cancelar
Salvar