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

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@16294 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
mDeflotte
2012-07-09 16:30:12 +00:00
parent 649cb9af43
commit e8b686d928
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}