[-] BO : #PSCFV-3112 - Fix bug with payment by cheque and multishipping

This commit is contained in:
mDeflotte
2012-07-09 16:30:12 +00:00
parent 1ebe0d4834
commit fffc7b9f8f
5 changed files with 94 additions and 25 deletions
@@ -82,12 +82,12 @@
--
{else}
{displayPrice price=$document->total_paid_tax_incl currency=$currency->id} 
{if $document->getGlobalRestPaid()}
{if $document->getTotalPaid()}
<span style="color:red;font-weight:bold;">
{if $document->getGlobalRestPaid() >= 0}
({displayPrice price=$document->getGlobalRestPaid() currency=$currency->id} {l s='not paid'})
{else}
({displayPrice price=-$document->getGlobalRestPaid() currency=$currency->id} {l s='overpaid'})
{if $document->getRestPaid() > 0}
({displayPrice price=$document->getRestPaid() currency=$currency->id} {l s='not paid'})
{else if $document->getRestPaid() < 0}
({displayPrice price=-$document->getRestPaid() currency=$currency->id} {l s='overpaid'})
{/if}
</span>
{/if}