Ver código fonte

CreditUtils : correctif arrondi

feature/souke
Guillaume Bourgeois 1 ano atrás
pai
commit
813dd623ba
1 arquivos alterados com 2 adições e 2 exclusões
  1. +2
    -2
      common/logic/User/CreditHistory/Service/CreditUtils.php

+ 2
- 2
common/logic/User/CreditHistory/Service/CreditUtils.php Ver arquivo

@@ -67,7 +67,7 @@ class CreditUtils extends AbstractService implements UtilsInterface

public function payOrder(Order $order, User $userAction, bool $checkCreditLimit): void
{
$amountRemaining = $this->orderSolver->getOrderAmountWithTax($order, Order::AMOUNT_REMAINING);
$amountRemaining = $this->orderSolver->getOrderAmountWithTax($order, Order::AMOUNT_REMAINING, true);

if($checkCreditLimit) {
$creditLimit = $this->producerRepository->getConfig('credit_limit');
@@ -93,7 +93,7 @@ class CreditUtils extends AbstractService implements UtilsInterface

public function refundOrder(Order $order, User $userAction): void
{
$amountPaid = $this->orderSolver->getOrderAmount($order, Order::AMOUNT_PAID);
$amountPaid = $this->orderSolver->getOrderAmount($order, Order::AMOUNT_PAID, true);

if ($amountPaid >= 0.01 && $order->id_user) {
$this->creditHistoryBuilder->createCreditHistory(

Carregando…
Cancelar
Salvar