// Removing red error message when orders total is diferent form the total paid if there are multiple orders with the same reference

This commit is contained in:
mDeflotte
2011-12-19 17:26:17 +00:00
parent 572885e737
commit 8437274987
3 changed files with 18 additions and 1 deletions
+1 -1
View File
@@ -205,7 +205,7 @@
<hr />
{/if}
<p class="error" style="{if $order->total_paid_tax_incl == $total_paid}display: none;{/if}">
<p class="error" style="{if $orders_total_paid_tax_incl == $total_paid}display: none;{/if}">
{l s='Warning:'} {displayPrice price=$total_paid currency=$currency->id}
{l s='paid instead of'} <span class="total_paid">{displayPrice price=$order->total_paid_tax_incl currency=$currency->id}</span>
</p>