Explorar el Código

Paiement par crédit : activation automatique de la synchronisation avec Tiller #1271

master
Guillaume Bourgeois hace 1 año
padre
commit
33412470ce
Se han modificado 2 ficheros con 2 adiciones y 1 borrados
  1. +1
    -1
      common/logic/Order/Order/Service/OrderBuilder.php
  2. +1
    -0
      producer/controllers/OrderController.php

+ 1
- 1
common/logic/Order/Order/Service/OrderBuilder.php Ver fichero

@@ -461,7 +461,7 @@ class OrderBuilder extends AbstractBuilder
if (!is_null($synchroTiller)) {
$order->tiller_synchronization = $synchroTiller;
} else {
$amountPaid = $this->orderSolver->getOrderAmount($order, Order::AMOUNT_PAID);
$amountPaid = $this->orderSolver->getOrderAmountPaidByCredit($order);

if ($amountPaid >= 0.01) {
$order->tiller_synchronization = 1;

+ 1
- 0
producer/controllers/OrderController.php Ver fichero

@@ -506,6 +506,7 @@ class OrderController extends ProducerBaseController
}
}

$order = $orderManager->findOneOrderById($order->id);
$orderManager->initOrder($order);
$orderManager->updateOrderTillerSynchronization($order);
}

Cargando…
Cancelar
Guardar