Jump to content
  • 0

Wartość rabatu na fakturze


mr.dipi

Question

Witam,

 

Na fakturze wyświetlana jest tylko cena produktu przed rabatem i po rabacie, wypadałoby żeby wyświetlało jeszcze samą wartość rabatu.

 

Zrobiłem takie cuś, ale niestety coś nie działa bo nie zwraca żadnej wartości.

 

Podejrzewam że odwołuje się do złych wartości... albo nie istniejących... przyznam że pożyczyłem to rozwiązanie z innego modułu bo akurat z PHP to u mnie słabo i trochę zmodyfikowałem, le na tą chwile zwraca puste pola 

     <td class="product center">
          {if isset($order_detail.unit_price_tax_excl_before_specific_price)}
              
{if isset($product.reduction_amount)}
              -{displayPrice currency=$order->id_currency price=$product.reduction_amount}
                           
 {elseif (isset($product.reduction_percent) && $product.reduction_percent > 0)}
                                -{$product.reduction_percent|floatval}%
                
                {/if}
                {/if}
            </td>

Macie może jakieś rozwiązanie?

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Dobra - znalazłem :D

 

Dla przyszłych pokoleń:

<td> {if ($order_detail.unit_price_tax_excl_before_specific_price)-($order_detail.unit_price_tax_excl_including_ecotax|string_format:"%.2f") >0}
              -{displayPrice currency=$order->id_currency price=($order_detail.unit_price_tax_excl_before_specific_price)-($order_detail.unit_price_tax_excl_including_ecotax|string_format:"%.2f")}
                {else}
                --
                {/if}
</td>
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...