Преглед на файлове

Merge branch 'develop'

develop
Guillaume преди 3 години
родител
ревизия
876716d2b2
променени са 3 файла, в които са добавени 5 реда и са изтрити 5 реда
  1. +2
    -2
      ShopBundle/Resources/views/backend/default/block/macros.html.twig
  2. +1
    -1
      ShopBundle/Resources/views/backend/user/show.html.twig
  3. +2
    -2
      ShopBundle/Services/Order/OrderUtilsReductionTrait.php

+ 2
- 2
ShopBundle/Resources/views/backend/default/block/macros.html.twig Целия файл

@@ -331,7 +331,7 @@



{% macro list_reduction_credits(reductionCredits) %}
{% macro list_reduction_credits(reductionCredits, user) %}
<table class="table table-condensed">
<thead>
<tr>
@@ -344,7 +344,7 @@
</thead>
<tbody>
{% for reductionCredit in reductionCredits %}
{% set isUsed = orderUtils.isReductionCreditUsed(reductionCredit) %}
{% set isUsed = orderUtils.isReductionCreditUsed(reductionCredit, user) %}
<tr>
<td>{{ reductionCredit.title }}</td>
<td>

+ 1
- 1
ShopBundle/Resources/views/backend/user/show.html.twig Целия файл

@@ -53,7 +53,7 @@

{% if entity.reductionCredits|length %}
{{ macros.card_start('ReductionCredit.list', 'warning card-outline', false) }}
{{ macros.list_reduction_credits(entity.reductionCredits) }}
{{ macros.list_reduction_credits(entity.reductionCredits, entity) }}
{{ macros.card_end() }}
{% endif %}


+ 2
- 2
ShopBundle/Services/Order/OrderUtilsReductionTrait.php Целия файл

@@ -200,8 +200,8 @@ trait OrderUtilsReductionTrait
}
}

public function isReductionCreditUsed($reductionCredit){
if($this->orderShopRepo->countValidOrderWithReductionCredit($reductionCredit)) {
public function isReductionCreditUsed($reductionCredit, $user = false){
if($this->orderShopRepo->countValidOrderWithReductionCredit($reductionCredit, $user)) {
return true;
}else{
return false;

Loading…
Отказ
Запис