Browse Source

Merge branch 'develop'

master
Guillaume Bourgeois 1 year ago
parent
commit
5ad4a694bf
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      common/logic/User/CreditHistory/Service/CreditUtils.php

+ 2
- 2
common/logic/User/CreditHistory/Service/CreditUtils.php View File

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

Loading…
Cancel
Save